-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.css
77 lines (77 loc) · 1.38 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
75
76
77
container {
padding-top: 30px;
width: 100%;
height: 800px;
margin-top: 50px;
background-color: #121213;
}
.row {
width: 1040px;
margin: auto;
display: grid;
grid-template-columns: repeat(4, 25%);
}
.footer-col > ul {
list-style: none;
line-height: 30px;
color: rgb(165, 164, 164);
font-size: 14px;
font-family: Inter, sans-serif;
}
.footer-col > ul > li:hover {
color: rgb(228, 226, 226);
cursor: pointer;
}
.footer-col > ul > .header:hover {
color: white;
cursor: default;
}
.header {
font-size: 17px;
font-weight: 500;
color: white;
}
#contact-option {
width: 80%;
display: flex;
color: white;
justify-content: space-around;
margin-left: 120px;
margin-top: 30px;
border-top: 1px solid rgba(128, 128, 128, 0.534);
border-bottom: 1px solid rgba(128, 128, 128, 0.534);
padding: 14px;
}
#contact-option > div {
display: flex;
gap: 6px;
}
#last {
display: flex;
justify-content: space-around;
color: rgb(165, 164, 164);
margin-top: 50px;
}
#last > div:first-child {
width: 390px;
margin-left: 20px;
display: flex;
justify-content: space-around;
}
#last > div:first-child div:hover {
color: white;
}
#last > div:nth-child(2) {
width: 100px;
gap: 16px;
display: flex;
margin-left: -40px;
}
#last > div:last-child {
margin-top: -11px;
}
#select {
background-color: #121213;
color: rgb(165, 164, 164);
border: none;
}