-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.css
74 lines (71 loc) · 1.18 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
body{
margin: 0%;
}
#landingPagefooter{
max-width: 980px;
margin:10px auto;
}
footer{
background-color: #4a4a4a;
width:100%;
position: sticky;
left:0;
bottom: 0;
}
#mainFoot{
width: 100%;
margin: auto;
display: flex;
flex-direction: row;
justify-content: space-evenly;
}
#mainFoot>div>img{
padding:10px;
padding-top: 40px;
}
.footerTopic{
color:white;
text-align: left;
font-weight: bold;
padding-top: 20px;
/* border:2px white solid; */
}
.footerTopic p{
font-size: 16px;
}
.footerTopic ul{
list-style-type: none;
font-weight:lighter;
margin: 0;
padding: 0;
}
.footerTopic ul li{
padding-bottom: 10px;
}
.footerTopic ul li a{
text-decoration: none;
padding-bottom: 10px;
color:white;
}
.footerTopic i{
padding: 10px 10px 10px 0px;
}
#bottomline{
color: white;
text-align: center;
}
@media only screen and (max-width:850px){
#mainFoot{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
#mainFoot div:first-child{
grid-column: 2/-1;
}
#mainFoot div{
padding-left: 15px;
}
#landingPagefooter{
width: 100%;
}
}