-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.css
More file actions
108 lines (92 loc) · 2.01 KB
/
footer.css
File metadata and controls
108 lines (92 loc) · 2.01 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
footer {
text-align: center;
padding: 2rem 1rem;
font-size: 0.8rem;
color: var(--text-muted);
background: var(--bg-alt);
border-top: 1px solid var(--border);
}
footer strong { color: var(--accent-2); }
footer a {
color: var(--accent-2);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
.footer-disclaimer {
margin-top: 0.5rem;
font-size: 0.7rem;
max-width: 640px;
margin-left: auto;
margin-right: auto;
line-height: 1.5;
color: var(--text-muted);
}
.footer-meta-irony {
margin-top: 0.75rem;
font-style: italic;
opacity: 0.75;
}
.footer-meta-irony strong {
color: var(--accent);
font-style: normal;
}
.footer-share-row {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 0.5rem;
margin-top: 1.25rem;
padding-top: 1rem;
border-top: 1px solid var(--border);
}
.footer-share-label {
font-size: 0.75rem;
font-weight: 700;
color: var(--text-dim);
letter-spacing: 0.05em;
text-transform: uppercase;
margin-right: 0.25rem;
}
.footer-share-btn {
background: var(--surface-2);
border: 1px solid var(--border);
border-radius: 2rem;
padding: 0.35rem 0.8rem;
font-family: inherit;
font-size: 0.75rem;
color: var(--text-dim);
cursor: pointer;
transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.footer-share-btn:hover {
background: var(--surface-3);
color: var(--text);
border-color: var(--accent);
}
.section-label {
font-size: 0.7rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 0.35rem;
}
/* ---- Utilities ---- */
.glow-text { text-shadow: 0 0 10px var(--accent-glow); }
.sr-only {
position: absolute;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border-width: 0;
}
/* ---- Responsive ---- */
@media (max-width: 600px) {
.milestones-grid { grid-template-columns: 1fr; }
.score-summary { flex-direction: column; }
th, td { padding: 0.5rem 0.6rem; }
}