-
Notifications
You must be signed in to change notification settings - Fork 5
/
footer.css
50 lines (49 loc) · 817 Bytes
/
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
color: #d9d9d9;
}
footer{
position: fixed;
bottom: 0px;
width: 100%;
background: #111;
}
main-content{
display: flex;
}
.main-content .box{
flex-basis: 50%;
padding: 10px 20px;
}
.box h2{
font-size: 18px;
font-weight: 600;
text-transform: uppercase;
}
.box .content{
margin: 20px 0 0 0;
}
.left .content .social{
margin: 20px 0 0 0;
}
.left .content .social a{
padding: 0 2px;
}
.left .content .social a span{
width: 40px;
height: 40px;
background: #1a1a1a;
text-align: center;
line-height: 40px;
border-radius: 5px;
font-size: 18px;
transition: 0.3s;
}
.left .content .social a span:hover{
background: #f12020;
}
.left .content p{
text-align: justify;
}