-
Notifications
You must be signed in to change notification settings - Fork 227
Expand file tree
/
Copy pathfooter.css
More file actions
116 lines (96 loc) · 1.87 KB
/
footer.css
File metadata and controls
116 lines (96 loc) · 1.87 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
#footerTop {
height: var(--footer-top-height);
background-color: var(--sys-color-surface-container);
color: var(--sys-color-on-surface);
padding: 0 2em;
display: flex;
align-items: center;
justify-content: space-between;
max-width: var(--header-footer-max-width, unset);
margin: var(--header-footer-margin, unset);
}
#footerTop > * {
flex: 0;
}
#footerLitLogoWrapper {
/* Push the logo up a bit to visually align with the other logos */
padding-bottom: 1em;
}
#footerLitLogo {
height: 4em;
}
#footerOpenJSLogo {
width: 10rem;
height: 6rem;
}
#footerSocialLinks {
display: flex;
justify-content: flex-end;
}
#footerSocialLinks > a {
padding: 0.5em;
width: 1.67em;
height: 1.67em;
color: var(--sys-color-on-background-dim);
}
#footerSocialLinks > a:hover {
color: var(--sys-color-on-background-emphasized);
}
#footerSocialLinks > a > lazy-svg::part(svg) {
width: 100%;
height: 100%;
}
#footerBottom {
/* height: var(--footer-bottom-height); */
font-size: .825rem;
padding: 2rem 4rem;
align-items: center;
justify-content: center;
line-height: 1.7em;
}
#footerBottom p {
font-size: inherit;
margin-top: 0;
}
#footerBottom a {
/* color: var(--sys-color-primary); */
font-weight: 600;
}
#footerBottom a:hover {
text-decoration: underline;
}
#footerCopyright {
display: flex;
gap: 1rem;
justify-content: space-between;
align-items: center;
}
#footerCopyright > * {
margin: 0;
}
@media (max-width: 864px) {
#footerTop {
flex-direction: column;
justify-content: space-around;
}
#footerNameAndLogo {
flex-direction: column;
align-items: center;
flex: unset;
}
#footerFlame {
order: -1;
height: 6.5em;
width: 5.2em;
margin-bottom: 2em;
}
#footerSocialLinks {
flex: unset;
}
#footerSocialLinks > a {
margin: 0 0.5em;
}
#footerBottom {
font-size: 0.8em;
}
}