-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.css
97 lines (81 loc) · 1.42 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
footer {
position: absolute;
background-color: #023E8A;
width: 100%;
height: 15%;
bottom: 0px;
}
.container{
max-width: 80%;
margin: auto;
}
div.row{
display: flex;
}
div.footer-col{
margin-left: auto;
width: 20%;
padding: 0 15px;
}
div.footer-col ul{
list-style: none;
padding: 0px;
}
div.footer-col h4{
font-size: 18px;
color: #ffffff;
text-transform: capitalize;
margin-bottom: 8%;
font-weight: 500;
position: relative;
text-align: left;
}
div.footer-col h4::before{
content: '';
position: absolute;
left: 0;
bottom: -10px;
background-color: #ffffff;
height: 2px;
box-sizing: border-box;
width: 50px;
}
div.footer-col ul li:not(:last-child){
margin-bottom: 10px;
}
div.footer-col ul li a{
font-size: 16px;
text-transform: capitalize;
color: #ffffff;
text-decoration: none;
font-weight: 300;
color: #bbbbbb;
display: block;
transform: all 0.3s ease;
}
div.footer-col ul li a:hover{
color: #ffffff;
padding-left: 8px;
}
@media (max-width: 1000px) {
footer {
height: 9%;
}
div.footer-col h4{
font-size: 15px;
}
div.footer-col ul li a{
font-size: 15px;
}
}
@media(max-width: 700px){
footer {
height: 13%;
}
div.footer-col h4{
font-size: 12px;
}
div.footer-col ul li a{
font-size: 12px;
}
}