-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
300 lines (264 loc) · 6.05 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
/* Importa as fontes do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@600&family=Poppins:wght@300;400;700&display=swap');
/* Remove margens e espaçamentos padrão e define fonte e comportamento de rolagem suave */
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
/* Estilo do corpo da página */
body {
background-color: #121212;
color: white;
line-height: 1.6;
overflow-x: hidden;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Estilo do cabeçalho fixo na parte superior da página */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.9);
padding: 15px 30px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
border-bottom: 1px solid #333;
height: 80px;
}
/* Container do logo e nome, com transição e comportamento ao passar o cursor */
header .logo-container {
display: flex;
align-items: center;
gap: 5px;
transition: filter 0.3s;
cursor: pointer;
}
/* Estilo da imagem do logo */
header .logo-container img {
width: 100px;
}
/* Estilo do título no logo */
header .logo-container h1 {
font-size: 24px;
font-weight: 600;
margin-bottom: 0;
color: #e0e0e0;
}
/* Navegação centralizada no cabeçalho */
header nav {
flex-grow: 1;
display: flex;
justify-content: center;
}
/* Links de navegação com animação ao passar o mouse */
header nav a {
color: #e0e0e0;
text-decoration: none;
margin: 0 20px;
font-size: 16px;
font-weight: 500;
transition: color 0.3s, border-bottom 0.3s;
padding-bottom: 8px;
}
/* Estilo para link ativo */
header nav a.active {
color: #e50914;
border-bottom: 2px solid #e50914;
}
/* Alteração da cor ao passar o mouse sobre o link */
header nav a:hover {
color: #fff;
}
/* Botões de autenticação (login/cadastro) */
header .auth-buttons {
display: flex;
gap: 15px;
}
/* Estilo dos botões de login/cadastro */
header .auth-buttons .btn {
font-size: 14px;
padding: 10px 20px;
border-radius: 30px;
border: none;
cursor: pointer;
}
/* Botão branco */
header .auth-buttons .btn-white {
background-color: #fff;
color: #000;
}
/* Botão vermelho */
header .auth-buttons .btn-red {
background-color: #e50914;
color: #fff;
}
/* Estilo principal da seção central */
.main {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 70px 20px 20px;
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("assets/images/bg.jpg");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
/* Centralização da hero section */
.hero {
text-align: center;
}
/* Estilo do título principal na hero */
.hero h1 {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 44px;
line-height: 1.2;
margin-bottom: 15px;
color: #f5f5f5;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}
/* Estilo dos parágrafos na hero */
.hero p {
font-size: 18px;
margin-bottom: 15px;
color: #e0e0e0;
line-height: 1.4;
}
/* Estilo dos botões na hero */
.hero-buttons {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
margin-top: 20px;
}
/* Estilo básico dos botões */
.btn {
padding: 10px 25px;
font-weight: 500;
color: white;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 30px;
border: 2px solid white;
cursor: pointer;
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
font-size: 14px;
display: inline-flex;
align-items: center;
justify-content: center;
}
/* Estilo do botão vermelho */
.btn-red {
background-color: #e50914;
color: white;
padding: 12px 30px;
font-size: 16px;
border-radius: 30px;
font-weight: 600;
border: none;
}
/* Animação ao passar o mouse no botão vermelho */
.btn-red:hover {
background-color: #b20710;
transform: scale(1.05);
}
/* Estilo dos inputs na seção principal */
.main input {
padding: 10px 18px;
color: white;
font-size: 16px;
border-radius: 30px;
background-color: rgba(255, 255, 255, 0.2);
border: 2px solid rgba(255, 255, 255, 0.2);
transition: border-color 0.3s ease;
max-width: 300px;
outline: none;
}
/* Placeholder dos inputs */
.main input::placeholder {
color: rgba(255, 255, 255, 0.7);
}
/* Alteração da borda ao focar no input */
.main input:focus {
border-color: white;
}
/* Estilo da grade de filmes */
.movie-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 30px;
margin-top: 20px;
}
/* Estilo dos cartões de filmes */
.movie-card {
position: relative;
width: 220px;
color: #e0e0e0;
overflow: hidden;
border-radius: 8px;
transition: transform 0.3s;
cursor: pointer;
}
/* Estilo das imagens dos filmes */
.movie-card img {
width: 100%;
height: 320px;
object-fit: cover;
border-radius: 8px;
transition: opacity 0.3s;
}
/* Animação ao passar o mouse sobre a imagem */
.movie-card:hover img {
opacity: 0.7;
}
/* Informações do filme */
.movie-card .info {
text-align: center;
padding: 10px;
}
/* Título do filme */
.movie-card h3 {
font-size: 18px;
margin: 10px 0;
}
/* Avaliação do filme */
.movie-card p {
font-size: 16px;
}
/* Mensagem de resultados não encontrados */
#no-results-message {
font-size: 18px;
font-weight: 600;
margin-top: 20px;
}
/* Estilo do rodapé */
footer {
background-color: rgba(0, 0, 0, 0.9);
color: #e0e0e0;
text-align: center;
padding: 10px;
position: relative;
width: 100%;
margin-top: auto;
}
/* Estilo dos parágrafos no rodapé */
footer p {
margin: 0;
}
/* Estilo dos links no rodapé */
footer a {
color: #e0e0e0;
text-decoration: none;
transition: color 0.3s;
}