-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
61 lines (54 loc) · 1.26 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
footer {
height: 100%;
display: flex;
flex-direction: row;
align-items: flex-start;
max-width: 100vw;
gap: 20px;
justify-content: space-around;
}
#contact-Us {
display: flex;
flex-direction: column;
padding-bottom: 12px;
gap: 10px;
padding-left: 30px;
max-width: 300px;
}
#made-By {
display: flex;
flex-direction: column;
align-items: center;
max-width: 550px;
height: 100%;
}
footer div {
height: 100%;
text-align: center;
}
footer a {
color: rgb(233, 230, 229);
font-size: 30px;
}
#redes-sociais {
display: flex;
flex-direction: column;
max-width: 150px;
}
#links-a {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
height: 40px;
}
#links-a a:hover {
transition: all 1s;
color: #c40000;
transition: all 1s;
-webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
}