-
Notifications
You must be signed in to change notification settings - Fork 0
/
rodape.css
63 lines (63 loc) · 1.06 KB
/
rodape.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
footer {
bottom: 0px;
width: 100%;
}
.logotipo {
width: 100%;
text-align: center;
font-size: 0.7em;
}
.logotipo img {
width: 20%;
vertical-align: middle;
}
.redes {
width: 100%;
text-align: center;
}
.redes img {
width: 18%;
}
.redes ul li {
text-transform: uppercase;
list-style-type: none;
display: inline;
}
@media only screen and (min-width: 450px)
and (max-width: 769px){
footer {
clear: both;
width: 100%;
}
.logotipo {
width: 50%;
float: left;
text-align: left;
}
.redes {
width: 50%;
float: right;
}
}
@media only screen and (min-width: 769px) {
footer {
width: 100%;
clear: both;
margin-bottom: 3%;
}
.logotipo {
font-size: 1em;
width: 45%;
float: left;
text-align: center;
}
.logotipo img, .redes img {
width: 10%;
}
.redes {
width: 45%;
float: right;
margin-right: 1%;
text-align: center;
}
}