forked from akshay-anil22/nasa-pace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
68 lines (58 loc) · 880 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
body{
margin:0;
overflow-x:hidden;
}
.footer{
background:#000;
padding:30px 0px;
font-family: 'Play', sans-serif;
text-align:center;
}
.footer .row{
width:100%;
margin:1% 0%;
padding:0.6% 0%;
color:gray;
font-size:0.8em;
}
.footer .row a{
text-decoration:none;
color:gray;
transition:0.5s;
}
.footer .row a:hover{
color:#fff;
}
.footer .row ul{
width:100%;
}
.footer .row ul li{
display:flex;
gap:20px;
margin:0px 30px;
}
.footer .row a {
font-size:2em;
margin:0% 1%;
padding: 7px;
}
@media (max-width:720px)
{
.footer{
text-align:left;
padding:5%;
}
.footer .row ul li{
display:flex;
flex-direction: row;
gap: 10px;
margin:10px 0px;
text-align:left;
}
.footer .row a i{
display:flex;
flex-direction: row;
gap: 30px;
margin:0% 3%;
}
}