-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.css
More file actions
42 lines (41 loc) · 755 Bytes
/
footer.css
File metadata and controls
42 lines (41 loc) · 755 Bytes
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
.footer {
background-color: #000;
}
.footer-container {
max-width: 1200px;
padding: 120px 20px 60px 20px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 100px;
align-items: center;
}
.footer-texto {
font-size: 1.5rem;
line-height: 1.33;
color: #ccc;
}
.footer-contato li {
font-weight: bold;
font-size: 2.25rem;
line-height: 1.1;
color: #fff;
margin-bottom: 30px;
}
.footer-container li a {
color: #fff;
}
.footer-copy {
grid-column: 1 / -1;
font-size: 1.125rem;
color: #8f8f8f;
}
@media (max-width: 800px) {
.footer-container {
grid-template-columns: 1fr;
gap: 40px;
}
.footer-contato li {
font-size: 1.5rem;
}
}