-
Notifications
You must be signed in to change notification settings - Fork 0
/
1footer.css
77 lines (76 loc) · 1.27 KB
/
1footer.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
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
*
{margin:0;
padding:0;
box-sizing:border-box;
}
footer
{
position:stick;
bottom:0;
left:0;
right:0;
background-color:#190424;
height:auto;
width:100vw;
font-family: 'Raleway', sans-serif;
padding-top:30px;
color:#FFFFFF ;
}
.footer-content
{
display:flex;
align-items:center;
justify-content:center;
flex-direction:column;
text-align:center;
}
/* .footer-content h3
{
font-size: 1.8rem;
font-weight:400;
text-transform:uppercase;
line-weight:2rem;
}
.footer-content p{
max-width:500px;
margin:10px auto;
line-weight:28px;
font-size:14px;
} */
.socials{
list-style:none;
display:flex;
align-items:center;
justify-content:centr;
margin:1rem 0 1.2rem 0;
}
.socials li{
margin: 0 5px;
}
.socials a {
text-decoration:none;
color:#FFFFFF ;
}
.socials a span{
font-size:1.3rem;
transition: color .4s ease;
}
.socials a:hover span{
color:#FFF85D;
}
.footer-bottom{
background-color:#1144B8 ;
width:100vw;
padding:10px 0;
text-align:center;
}
.footer-bottom p{
font-size:18px;
word spacing:2px;
text-transform:captalize;
}
.footer-bottom span{
text-transfom:uppercase;
font-weight:600;
}