blob: 17946ec33d0895b0a7ea1ff1fceee23e77fd5d0c (
plain)
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
|
/* footer.css */
footer {
background: var(--bg2);
border-top: 1px solid var(--border);
margin-top: var(--gap-xl);
padding: 2rem 0 1rem;
font-size: 0.85rem;
}
.footer-container {
max-width: var(--container-max);
margin: 0 auto;
padding: 0 1.5rem;
text-align: center;
color: var(--text-dim);
}
.footer-container a {
color: var(--accent);
}
.footer-container a:hover {
color: var(--accent2);
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 1rem;
}
.footer-nav {
list-style: none;
display: flex;
gap: 2rem;
margin: 0;
}
.footer-nav a {
font-family: var(--font-mono);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.footer-copyright {
color: var(--muted);
font-family: var(--font-mono);
font-size: 0.75rem;
}
@media (max-width: 600px) {
.footer-content {
flex-direction: column;
}
.footer-nav {
flex-direction: column;
gap: 0.5rem;
}
}
|