blob: 23b332245975357baed50ac6c614858c6d6ed948 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
.Main {
margin-top: 60px;
color: white;
}
.MovieInfoSection {
background-color: #1f1f1fcc;
backdrop-filter: blur(10px);
}
.MovieInfo {
max-width: 60%;
margin: 0 auto;
}
.HeroSection {
display: flex;
align-items: center;
}
.HeroSection img {
border-radius: 1rem;
padding: 0.5rem;
}
.HeroTitle {
display: flex;
flex-direction: column;
margin-left: 1rem;
padding: 0.5rem;
}
.HeroTitle h2 {
font-size: 28px;
margin: 0;
}
.tagline {
margin: 0.2rem 0 0 0;
font-size: 12px;
}
.tagline span {
background-color: #12121286;
padding: 0.2rem;
border-radius: 0.5rem;
}
.MovieDescription {
font-size: 18px;
margin: 0.2rem 0 0 0;
}
.OtherInfo {
display: flex;
flex-direction: column;
align-items: center;
margin: 1rem 0 0 0;
background-color: #12121286;
padding: 1rem;
border-radius: 0.5rem;
}
.Ratings {
display: flex;
}
.divider {
margin: 0 0.5rem 0 0.5rem;
}
.Ratings span {
display: flex;
align-items: center;
justify-content: center;
}
.Ratings p {
margin: 0 0 0 0.4rem;
}
.Money {
margin: 0.5rem 0 0 0;
display: flex;
}
.Money p {
margin: 0 0 0 0.4rem;
}
.Money span {
display: flex;
align-items: center;
}
.Genre {
display: flex;
}
.Genre p {
background-color: #12121257;
margin: 0.5rem 0.2rem 0 0.2rem;
padding: 0.3rem;
border-radius: 0.5rem;
}
@media screen and (max-width: 768px) {
.MovieInfo {
max-width: 100%;
}
.VideoPlayer {
width: 98%;
margin: 1rem auto;
}
.VideoPlayer iframe {
height: 250px;
}
}
|