-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.css
53 lines (42 loc) · 951 Bytes
/
footer.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
.footer {
display: flex;
flex-direction:row-reverse;
align-items: center;
padding: 100%;
background-color: var(--background-footer);
padding-top: 2.5rem;
padding-bottom: 2rem;
}
.footer__social {
display:flex;
justify-content: center;
align-items: center;
justify-content: space-around;
}
.footer__midia {
display: block;
width: 32px;
height: 32px;
margin: 3rem 2rem;
}
.footer__navegacion {
color: var(--background-blanco);
font: var(--background-blanco);
text-align: center;
line-height: 3;
}
.footer__enlace {
display: inline-block;
margin: 0 .5rem .7rem;
}
@media screen and (min-width: 1024px) {
.footer {
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
.footer__navegacion {
text-align: left;
min-width: 600px;
}
}