-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.css
More file actions
104 lines (89 loc) · 1.66 KB
/
index.css
File metadata and controls
104 lines (89 loc) · 1.66 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
:root {
color-scheme: dark;
--bg: #07111f;
--bg-glow: rgba(86, 180, 255, 0.18);
--panel: rgba(10, 20, 35, 0.82);
--panel-border: rgba(163, 194, 255, 0.18);
--text: #eef4ff;
--muted: #9fb3d1;
--link: #8bd3ff;
--link-hover: #d5f3ff;
}
* {
box-sizing: border-box;
}
html {
min-height: 100%;
background:
radial-gradient(circle at top, var(--bg-glow), transparent 38%),
linear-gradient(180deg, #0b1730 0%, var(--bg) 58%, #040913 100%);
}
body {
margin: 0;
min-height: 100vh;
padding: 32px 20px;
color: var(--text);
font: 16px/1.6 "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}
main {
width: fit-content;
max-width: 100%;
margin: 0 auto;
padding: 28px 24px;
border: 1px solid var(--panel-border);
border-radius: 22px;
background: var(--panel);
backdrop-filter: blur(12px);
box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}
h1,
h2,
p,
ol {
margin: 0;
}
h1 {
font-size: clamp(1rem, 4.8vw, 3rem);
line-height: 0.95;
letter-spacing: -0.04em;
white-space: nowrap;
}
p {
margin-top: 12px;
max-width: 58ch;
color: var(--muted);
}
section {
margin-top: 28px;
padding-top: 20px;
border-top: 1px solid rgba(163, 194, 255, 0.14);
}
footer {
margin-top: 32px;
padding-top: 22px;
border-top: 1px solid rgba(163, 194, 255, 0.14);
}
h2 {
margin-bottom: 10px;
font-size: 0.86rem;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--muted);
}
ol {
padding-left: 20px;
}
.distribution-list {
margin-top: 14px;
}
li + li {
margin-top: 8px;
}
a {
color: var(--link);
text-decoration-thickness: 0.08em;
text-underline-offset: 0.16em;
}
a:hover {
color: var(--link-hover);
}