-
Notifications
You must be signed in to change notification settings - Fork 7
/
footer.css
70 lines (57 loc) · 1.12 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
footer {
bottom: 0;
width: 100%;
background-color: var(--footer-background-color);
color: var(--footer-text);
padding-top: 70px;
padding-bottom: 80px;
}
@media (min-width: 576px) {
footer > div:not(:last-child) {
padding-right: 15px;
}
}
footer p {
font-size: 18px;
letter-spacing: 1px;
font-weight: 300;
line-height: 1.67;
margin: 0 0 10px;
}
footer .logo {
height: 30px;
margin: 10px 0;
}
footer .column-header {
color: var(--footer-column-header);
font-size: 15px;
font-weight: 400;
letter-spacing: 1px;
}
footer .column-header.imp {
color: var(--primary-color);
}
footer a {
text-decoration: none;
}
footer .linkbox a, footer .socialicons a {
color: var(--footer-link);
}
footer .linkbox a {
font-size: 15px;
font-weight: bold;
line-height: 2;
}
footer .socialicons h3 {
margin-bottom: 5px;
}
footer .socialicons a {
font-size: 24px;
margin-right: 0.5em;
}
footer a.button {
color: var(--footer-background-color) !important;
}
footer .linkbox a:hover, footer .socialicons a:hover {
color: var(--primary-color);
}