-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (104 loc) · 1.79 KB
/
Copy pathstyles.css
File metadata and controls
127 lines (104 loc) · 1.79 KB
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
background-color: black;
color:white;
}
.navbar {
position: sticky;
top: 0;
z-index: 999;
display: flex;
justify-content: space-between;
align-items: center;
padding: 14px 32px;
background: rgba(0, 0, 0, 0.55);
backdrop-filter: blur(6px);
}
.navbar h1 {
color: red;
}
.nav-links a {
color: rgb(211, 253, 5);
text-decoration: none;
margin-left: 20px;
}
.nav-links a:hover {
color: rgb(19, 15, 222);
}
.hero-section {
position: relative;
height: 80vh;
color: white;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.hero-content {
position: relative;
z-index: 2;
max-width: 600px;
padding: 120px 60px;
}
.movie-row {
display: flex;
gap: 12px;
overflow-x: auto;
padding: 10px 0;
}
.movie-card {
width: 150px;
height: 225px;
border-radius: 8px;
cursor: pointer;
transition: transform 0.2s;
}
.movie-card:hover {
transform: scale(1.05);
}
.movie-row {
scrollbar-width: none;
}
.movie-row::-webkit-scrollbar {
display: none;
}
.movie-card:focus {
outline: 3px solid rgba(255,255,255,0.12);
transform: scale(1.08);
}
@media (max-width: 768px) {
.movie-section {
padding: 20px 16px;
}
.movie-card {
width: 120px;
height: 180px;
}
.section-title {
font-size: 1.1rem;
}
.hero-section {
height: 65vh;
}
.hero-content {
padding: 80px 20px;
max-width: 100%;
}
.navbar {
padding: 12px 16px;
flex-direction: column;
align-items: flex-start;
}
}
.footer {
padding: 30px 20px;
text-align: center;
color: #aaa;
font-size: 0.9rem;
border-top: 1px solid rgba(255,255,255,0.08);
margin-top: 40px;
}