-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathfooter.css
More file actions
127 lines (104 loc) · 1.89 KB
/
footer.css
File metadata and controls
127 lines (104 loc) · 1.89 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* Footer */
#footer {
padding: 3rem 0 6rem;
}
#footer {
background-color: var(--spht-color-dark);
color: var(--spht-color-light);
position: sticky;
top: calc(100vh - var(--spht-footer-height));
}
#footer-logo-column {
padding: 1.25rem 0;
font-size: 1rem;
flex: 1;
}
#footer-logo {
height: 75px;
}
#footer-columns {
display: flex;
width: 100%;
gap: 6rem;
align-items: flex-start;
}
.footer-column {
padding-left: 0;
margin-top: 1.25rem;
flex-basis: auto;
flex-grow: 0;
flex-shrink: 0;
}
.footer-item a {
color: var(--spht-color-light);
}
.footer-item a:hover {
color: var(--spht-color-link-hover);
}
.footer-item a.nav-external {
white-space: nowrap;
}
.footer-item a.nav-external::after {
font: var(--fa-font-solid);
content: "\f35d";
font-size: 0.75em;
margin-left: 0.3em;
display: inline-block;
}
.footer-actions {
margin: 1.25rem 0;
flex: 1;
display: flex;
flex-direction: column;
align-items: flex-end;
}
.footer-actions > p {
padding-top: 0;
}
.footer-actions p {
margin: 0;
}
@media only screen and (max-width: 850px) {
#footer-columns {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.footer-actions {
max-width: 50vw;
}
.community-icons {
width: 100%;
}
}
#footer .community-icons {
/* Icon size slightly enlargened for footer */
font-size: 2.3em;
max-width: 25rem;
margin-bottom: 1.5rem;
}
#footer .community-icons a {
display: inline-block;
}
#footer .community-icons a:not(:last-child) {
margin-right: 0.75rem;
}
#footer svg.icon {
fill: var(--spht-color-light);
margin-right: 0.5rem;
}
#footer svg.icon:hover {
fill: var(--spht-color-link-hover);
}
/* For information ⓘ, when icon is missing */
#footer .icon {
font-weight: 900;
}
#footer nav {
background: var(--spht-color-dark);
}
.copyright {
font-size: 0.75rem;
text-align: left;
}