-
Notifications
You must be signed in to change notification settings - Fork 1
/
_footer.scss
115 lines (95 loc) · 2.17 KB
/
_footer.scss
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
section#footer{
background-color:#00356b;
padding:50px 0;
color: white;
ul.menu-footer{
list-style-type: none;
padding: 0;
margin:0;
li{
float:left;
margin-right: 25px;
text-align: center;
a{
color: white;
}
a:hover{
color: #ffc709;
}
}
}
div.copy-text{
font-size: 12px;
}
a{
color:white;
}
ul.redes_sociais_header{
padding:0;
height: 22px;
text-align: left;
list-style:none;
margin-bottom:0;
}
ul.redes_sociais_header li{
margin-right: 5px;
}
ul.redes_sociais_header li:hover{
opacity: 0.6;
filter: alpha(opacity=60); /* For IE8 and earlier */
}
ul.redes_sociais_header a{
display: inline-block;
width:22px;
height:20px;
}
ul.redes_sociais_header .youtube{
background-image: url("images/redes-top.png");
background-position: 5px,center;
background-repeat:no-repeat;
width:22px;
height:20px;
display:inline-block;
}
ul.redes_sociais_header .instagram{
background-image: url("images/redes-top.png");
background-position: -28px,center;
background-repeat:no-repeat;
width:22px;
height:20px;
display:inline-block;
}
ul.redes_sociais_header .twitter{
background-image: url("images/redes-top.png");
background-position: -60px,center;
background-repeat:no-repeat;
width:22px;
height:20px;
display:inline-block;
}
ul.redes_sociais_header .facebook{
background-image: url("images/redes-top.png");
background-position: -88px,center;
background-repeat:no-repeat;
width:22px;
height:20px;
display:inline-block;
}
ul.redes_sociais_header .linkedin{
background-image: url("images/redes-top.png");
background-position: -116px,center;
background-repeat:no-repeat;
width:22px;
height:20px;
display:inline-block;
}
}
@media (max-width: 991px) {
section#footer{
ul.menu-footer{
display: none;
}
}
}
@media (min-width: 992px) {
}