-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy path_footer.css
More file actions
59 lines (49 loc) · 1.15 KB
/
_footer.css
File metadata and controls
59 lines (49 loc) · 1.15 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
footer {
border-top: var(--border--footer);
display: flex;
font-size: var(--font-size--small);
gap: var(--space--medium) var(--space--x-large);
padding: var(--space--large) 0;
flex-direction: column;
.logo {
font-family: var(--font-family--body);
svg {
height: var(--font-size--300);
margin-right: var(--space--x-small);
width: auto;
}
}
.copyright {
font-size: var(--font-size--caption);
margin-top: var(--space--medium);
}
nav {
display: flex;
justify-content: space-between;
gap: var(--space--large);
flex: 1;
ul {
--color--link: var(--color--footer-link);
--color--link-hover: var(--color--footer-link-hover);
margin: var(--space--x-small) 0 0;
padding: 0;
li {
list-style-type: none;
margin-top: var(--space--xx-small);
a {
text-decoration: none;
}
}
}
}
}
@media screen and (min-width: 600px) {
footer {
flex-direction: row-reverse;
padding: var(--space--large)
Max(var(--space--base), (100% - var(--container--large)) / 2);
nav {
justify-content: flex-end;
}
}
}