-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
114 lines (89 loc) · 1.75 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Gabarito&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch&display=swap');
/* CSS DO FOOTER */
.footer_logo {
width: 12%;
height: 12%;
margin-right:60px;
margin-left:8%;
}
*{
font-family: 'Noto Sans', sans-serif;
margin: 0px;
padding: 0;
box-sizing: border-box;
}
footer{
background-color: var(--CorPrimaria);
padding: 50px 0;
}
.container-footer{
max-width: 100%;
padding: 0 4%;
margin:auto;
}
.container-footer2{
max-width: 100%;
padding: 0 4%;
margin:auto;
justify-content: left;
align-items:center;
}
.row-footer{
display:flex;
flex-wrap:wrap;
}
.footer-col{
width:25%;
padding: 0 15px;
}
.footer-col ul{
list-style:disc;
margin-top:10px;
}
.footer-col ul li a{
font-size:20px;
font-weight: bold;
font-family: 'Gabarito', sans-serif;
text-transform: capitalize;
color: rgb(0, 0, 0);
text-decoration:none;
font-weight: 300;
transition:all 0.3s;
padding: 0%;
}
.footer-col ul li a:hover{
color:rgb(255, 255, 255);
padding-left:10px;
}
.footer-col .medias-sociais {
margin-top:15px;
}
.footer-col .medias-sociais a{
display:inline-flex;
align-items:center;
justify-content: center;
height: 40px;
width:40px;
margin: 0 10px 10px 0;
border-radius: 50%;
color:black;
border:2px solid black;
}
#titulofooter{
color:white;
font-weight: bold;
font-family: 'Chakra Petch', sans-serif;
font-size: 35px;
}
#endereco{
color:rgb(0, 0, 0);
font-weight: bold;
font-family: 'Gabarito', sans-serif;
font-size: 20px;
}
input{
font-size: 12px;
width:210px;
height:30px;
}