-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontato.css
361 lines (315 loc) · 6.59 KB
/
contato.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #000;
font-family: sans-serif;
color: #fff;
letter-spacing: 1.5px;
}
.nav-container .brand {
color: #A6A6A6;
font-size: 2.7rem;
display: flex;
align-items: center;
text-decoration: none;
}
.nav-container-navbar {
display: flex;
align-items: center;
height: 100%;
list-style-type: none;
text-decoration: none;
}
@media screen and (max-width: 768px) {
.nav-container .brand {
font-size: 1.5rem;
}
}
/* Estilos para o contêiner */
.container {
display: flex;
align-items: center;
justify-content: space-between; /* Adicionado para alinhar os itens nas extremidades */
}
/* Estilos para o formulário */
form {
width: 50%; /* Defina a largura do formulário conforme necessário */
padding: 1em;
background: #494949;
margin: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
form h2 {
text-align: center;
margin-bottom: 0.8em;
}
/* Estilos para o campo de entrada */
input[type=text], input[type=email], input[type=tel], textarea {
width: 100%; /* Defina a largura do campo de entrada conforme necessário */
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
margin: 6px 0;
display: inline-block;
box-sizing: border-box;
}
/* Estilos para o botão */
.button {
background-color: #610101;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
/* Estilos para a imagem */
.imagem {
max-width: 100%; /* Defina a largura da imagem conforme necessário */
height: auto; /* A altura será ajustada automaticamente para manter a proporção */
padding: 1em;
}
/* Estilos para telas menores que 768px (tablet) */
@media (max-width: 768px) {
.container {
flex-direction: column; /* Mudar para empilhamento em telas menores */
align-items: center; /* Centralizar os itens */
display: flex;
}
.form {
align-items: center;
width: 100%; /* Defina a largura do formulário para 100% */
}
}
/* Reset styles */
html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
em,
small,
strong,
sub,
sup,
mark,
abbr,
address,
bdi,
dfn,
i,
time,
var,
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary,
figure,
figcaption,
img,
svg,
audio,
canvas,
iframe,
video,
label,
textarea,
datalist,
fieldset,
legend,
meter,
optgroup,
option,
progress,
button,
details,
summary,
input,
select,
textarea,
menuitem {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
list-style: none;
box-sizing: border-box;
}
/* Footer styles */
footer {
background-color: #000;
color: var(--text-color);
padding: 5rem 2rem;
margin: 0;
padding: 0;
border: 0;
vertical-align: baseline;
list-style: none;
box-sizing: border-box;
letter-spacing: 1.5px;
}
/* Footer container styles */
.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
display: flex;
justify-content: space-between;
padding: 2rem;
color: #fff;
}
.footer-container a {
color: var(--text-color);
text-decoration: none;
}
footer ul {
list-style: disc;
padding: 0;
}
/* Mobile styles for footer container */
@media only screen and (max-width: 768px) {
.footer-container {
max-width: 100%;
flex-direction: column;
}
}
/* Footer title styles */
.footer-container .footer-title {
color: #FFF;
margin-bottom: 1rem;
margin-top: 2rem;
}
/* Footer description and links container styles */
.footer-container .footer-desc-container,
.footer-container .footer-links-container {
width: 50%;
}
/* Mobile styles for footer description and links container */
@media only screen and (max-width: 768px) {
.footer-container .footer-desc-container,
.footer-container .footer-links-container {
width: 100%;
margin-bottom: 2rem;
text-align: center;
}
}
/* Footer description container styles */
.footer-container .footer-desc-container p {
width: 80%;
line-height: 1.3;
}
/* Mobile styles for footer description container */
@media only screen and (max-width: 768px) {
.footer-container .footer-desc-container p {
width: 100%;
}
}
/* Footer links container styles */
.footer-container .footer-links-container ul {
padding: 0 1rem;
}
/* Mobile styles for footer links container */
@media only screen and (max-width: 768px) {
.footer-container .footer-links-container ul {
margin-bottom: 2rem;
}
}
/* Footer list item styles */
.footer-container .footer-links-container li {
margin-bottom: .5rem;
}
/* Footer link styles */
.footer-container .footer-links-container a {
color: var(--text-color);
transition: .5s;
}
/* Hover effect styles for footer links */
.footer-container .footer-links-container a:hover {
color: #FFF;
}
/* Footer copyright container styles */
.footer-container .footer-copy-right-container {
width: 100%;
margin-top: 3rem;
}
/* Mobile styles for footer copyright container */
@media only screen and (max-width: 768px) {
.footer-container .footer-copy-right-container {
text-align: center;
}
}
/* Paragraph styles for footer copyright container */
.footer-container .footer-copy-right-container p {
margin-bottom: 1rem;
}
/* Footer sections */
.footer-desc-container,
.footer-links-container,
.footer-copy-right-container {
flex: 1;
padding: 1rem;
}
/* Footer title styles */
.footer-title {
font-size: 1.5rem;
margin-bottom: 1rem;
}
/* Footer link styles */
.footer-links-container ul {
list-style-type: none;
padding: 0;
}
.footer-links-container ul li a {
color: #fff;
text-decoration: none;
}
/* Media query for small screens */
@media only screen and (max-width: 768px) {
.footer-container {
flex-direction: column;
/* Empilha os elementos verticalmente */
padding: 1rem;
text-align: center;
width: 90%;
}
.footer-desc-container,
.footer-links-container,
.footer-copy-right-container {
padding: 0.5rem;
margin-bottom: 1rem;
}
.footer-title {
font-size: 1.2rem;
/* Reduz o tamanho da fonte para caber melhor */
}
.footer-links-container ul li a {
font-size: 1rem;
/* Ajusta o tamanho da fonte dos links */
}
.footer-copy-right-container p {
font-size: 0.9rem;
/* Ajusta o tamanho da fonte do copyright */
}
}