-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
59 lines (58 loc) · 1020 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
#footerCover {
width: 100%;
height: 500px;
background-color: #313a45;
}
#footer {
width: 80%;
height: 60%;
margin: 10% auto;
background-color: #313a45;
}
#footerGrid {
display: grid;
width: 70%;
height: 90%;
grid-template-areas: "a b c d";
grid-template-columns: 24% 24% 24% 24%;
grid-template-rows: 100%;
gap: 2%;
margin: 80px 0px 0px;
}
#footer>div,.icon {
float: left;
}
#footerGrid>div {
display: flex;
flex-flow: column wrap;
}
.boldWhite{
font-weight: 120;
font-size: 20px;
}
#footerGrid>div>:nth-child(1) {
color: white;
}
.railsware {
margin: 80px 100px;
}
.grayFont {
color: hsla(0,0%,100%,.53);
font-size: 15px;
line-height: 30px;
}
.blueLine{
width: 100%;
border-color: #0080b6;
}
.grayLine{
width: 100%;
border-color: hsla(0,0%,100%,.53);
}
.aboutMailtrap{
color: hsla(0,0%,100%,.53);
float: left;
width: 57%;
font-size: 14px;
margin: 12px 0px;
}