-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
436 lines (371 loc) · 8.77 KB
/
style.css
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
/* dictionary of colours that get used throughout the code */
:root {
--primary-bg: #1E1E1E;
--secondary-bg: #313131;
--text-primary: #ffffff;
--text-secondary: rgba(255, 255, 255, 0.7);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--primary-bg);
color: var(--text-primary);
font-family: "Kumbh Sans", sans-serif;
min-height: 100vh; /* make the body at least the height of the viewport */
overflow-x: hidden;
}
.header {
display: flex;
align-items: flex-start;
justify-content: space-between;
padding: 2.1rem 2rem;
position: sticky;
top: 0;
background-color: var(--primary-bg);
z-index: 100;
}
h1 {
font-family: "Krona One", sans-serif;
font-weight: 400;
color: var(--text-primary);
text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
user-select: none;
transition: text-shadow 0.2s ease-in-out; /* smooth text shadow transition */
}
h1:hover {
text-shadow: 0 0 10px var(--text-primary); /* make text glow on hover */
}
.search-bar {
display: flex;
align-items: center;
background-color: var(--secondary-bg);
border-radius: 25px;
padding: 0.5rem;
max-width: 500px;
width: 100%;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.search-wrapper {
display: flex;
align-items: center;
margin-left: auto;
padding: 0 1rem;
}
.search-input {
background: none;
border: none;
color: var(--text-primary);
padding: 0.5rem;
width: 150px;
font-family: inherit;
}
.search-input:focus { /* remove the annoying rectangle textbook outline when the search is focused */
outline: none;
}
.tab {
background: none;
border: none;
color: var(--text-primary);
padding: 0.5rem 1rem;
cursor: pointer;
font-family: inherit;
border-radius: 20px;
transition: background-color 0.2s;
}
.tab.active, .tab:hover {
text-shadow: 0 0 10px var(--text-primary);
}
.user-section {
display: flex;
align-items: center;
gap: 1.5rem;
}
.notification {
position: relative;
cursor: pointer; /* show hand click cursor to indicate it is clickable */
}
.notification-icon {
width: 24px;
height: 24px;
}
.notification-dot { /* red dot, doesn't have any functionality right now */
position: absolute;
top: -2px;
right: -2px;
width: 8px;
height: 8px;
background-color: #ff4444;
border-radius: 50%;
}
.user { /* user icon and name */
display: flex;
align-items: center;
gap: 0.5rem;
cursor: pointer;
}
.user-icon { /* user icon */
width: 40px;
height: 40px;
background-color: #000;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.user-info { /* user name and role */
margin-right: 0.5rem;
}
.user-name { /* user name */
font-weight: 500;
}
.user-role { /* user role */
font-size: 0.8rem;
color: var(--text-secondary);
}
.featured { /* featured movies section */
padding: 2rem;
}
.featured-movies { /* featured movies grid */
display: flex;
gap: 2rem;
margin-bottom: 2rem;
}
.movie-card { /* movie card */
position: relative;
border-radius: 2rem;
overflow: hidden;
flex: 1;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.movie-card.wide { /* wide movie card variant (for top -> second element on homepage) */
flex: 2;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.movie-image { /* movie image */
width: 100%;
height: 300px;
object-fit: cover;
filter: brightness(0.7);
transition: filter 0.3s;
}
.movie-image:hover { /* remove the brightness filter on hover */
filter: brightness(1);
}
.movie-info { /* movie info */
display: flex;
flex-direction: column; /* make the text show on top of the studio info */
justify-content: space-between; /* push the text to the top */
position: absolute;
bottom: 2rem;
left: 2rem;
right: 2rem;
}
.movie-info h2 { /* movie title */
font-weight: 300;
width: 70%;
font-size: 2rem;
margin-bottom: 6rem;
}
.movie-meta { /* movie meta info */
display: flex;
align-items: center;
gap: 1rem;
margin-top: 0.5rem;
}
.studio-logo { /* studio logo */
width: 24px;
height: 24px;
}
.rating { /* movie rating */
margin-left: auto;
display: flex;
align-items: center;
gap: 0.5rem;
}
.rating span { /* rating text */
font-size: 1.2rem;
}
.star-icon { /* star icon */
width: 22px;
height: 22px;
}
.categories {
display: flex;
gap: 1rem; /* space between the buttons */
padding: 0rem 2rem;
overflow-x: auto; /* horizontal scrollbar */
scrollbar-width: none; /* hide scrollbar */
}
.categories::-webkit-scrollbar {
display: none; /* hide scrollbar */
}
.category-btn {
flex: 1; /* make the buttons grow to fill space */
display: flex;
align-items: center;
justify-content: center; /* horizontally align the text */
gap: 0.5rem;
background-color: var(--secondary-bg);
border: none;
color: var(--text-primary);
padding: 1.2rem 1.5rem;
border-radius: 0.5rem;
cursor: pointer; /* show hand cursor to indicate it is clickable */
transition: background-color 0.2s;
white-space: nowrap;
font-family: 'Poppins', sans-serif;
font-weight: 400;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* drop shadow */
font-size: 1rem;
}
.category-btn img {
width: 20px;
height: 20px;
}
.category-btn.active, .category-btn:hover {
border: 1.5px solid rgba(255, 255, 255, 0.31); /* stroke when hovered or selected */
}
.trending-section {
margin-top: 0;
padding: 2rem;
}
.trending-section h2 {
margin-bottom: 1.5rem;
font-size: 1.7rem;
font-family: Poppins, sans-serif;
font-weight: 400;
}
.trending-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* make grid responsive */
gap: 1.5rem;
}
.trending-card {
position: relative;
border-radius: 0.5rem;
overflow: hidden;
transition: transform 0.2s;
cursor: pointer; /* show hand click cursor to indicate it is clickable */
}
.trending-card:hover {
transform: scale(1.05);
}
.trending-card img {
width: 100%;
height: 300px;
object-fit: cover;
filter: brightness(0.7); /* apply brightness filter when hovered */
}
.trending-card img:hover {
filter: brightness(1); /* hide the brightness filter effect on hover */
}
.movie-details { /* movie details */
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 1rem;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.8)); /* gradient background */
}
.movie-details h3 { /* target h3 */
margin-bottom: 0.5rem;
}
@media (max-width: 768px) { /* responsive design for smaller screens (?) */
.header {
flex-direction: column;
gap: 1rem;
padding: 1rem;
}
.search-bar {
order: 2;
}
.user-section {
order: 1;
width: 100%;
justify-content: flex-end; /* align user section to the right */
}
.featured-movies {
flex-direction: column; /* stack the cards vertically */
}
.movie-card.wide {
flex: 1; /* make the wide card take full width */
}
.trending-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* make grid responsive */
}
}
.search-icon {
width: 24px;
height: 24px;
}
.dropdown-icon {
width: 24px;
height: 24px;
}
/* modals and account stuff */
.account-button {
background: rgba(74, 144, 226, 0.5);
font-family: 'Poppins';
font-weight: bold;
color: white;
padding: 0.5rem 2rem;
border: none;
border-radius: 20px;
cursor: pointer;
margin-left: auto;
}
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
background-color: #242424;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 90%;
max-width: 400px;
border-radius: 20px;
font-family: 'Kumbh Sans', sans-serif;
overflow: hidden;
}
.close-button {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.modal-content input {
width: 100%;
background: rgba(255, 255, 255, 0.1);
border: none;
padding: 1rem;
margin-bottom: 1rem;
color: var(--text-primary);
border-radius: 5px;
font-family: 'Kumbh Sans', sans-serif;
}
.modal-content button {
background: rgba(74, 144, 226, 0.5);
font-family: 'Poppins';
font-weight: bold;
color: white;
padding: 0.5rem 2rem;
border: none;
border-radius: 20px;
cursor: pointer;
float: right;
margin-top: 1rem;
width: auto;
}