-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
259 lines (218 loc) · 3.79 KB
/
styles.css
File metadata and controls
259 lines (218 loc) · 3.79 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
min-height: 100vh;
font-family: "Space Grotesk", sans-serif;
color: var(--text);
background:
radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 20%, transparent), transparent 30%),
radial-gradient(circle at top right, color-mix(in srgb, var(--accent-alt) 18%, transparent), transparent 24%),
linear-gradient(180deg, var(--bg), var(--bg-alt));
}
a {
color: inherit;
text-decoration: none;
}
.page-shell {
width: min(1180px, calc(100% - 32px));
margin: 0 auto;
padding: 24px 0 72px;
}
.topbar,
.hero-grid,
.grid {
display: grid;
gap: 24px;
}
.topbar {
grid-template-columns: 1fr auto;
align-items: center;
margin-bottom: 56px;
}
.brand,
.eyebrow,
code,
pre {
font-family: "IBM Plex Mono", monospace;
}
.brand,
.eyebrow {
letter-spacing: 0.12em;
text-transform: uppercase;
font-size: 0.78rem;
}
.brand {
color: var(--accent);
}
.links {
display: flex;
flex-wrap: wrap;
gap: 16px;
color: var(--muted);
}
.links a:hover,
.button:hover {
opacity: 0.88;
}
.hero {
padding: 18px 0 36px;
}
.hero-grid {
grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
align-items: end;
}
h1,
h2,
h3,
p {
margin: 0;
}
h1 {
max-width: 10ch;
font-size: clamp(3rem, 8vw, 6.25rem);
line-height: 0.95;
margin-bottom: 20px;
}
.lede {
max-width: 62ch;
font-size: 1.1rem;
line-height: 1.7;
color: var(--muted);
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 14px;
margin-top: 28px;
}
.button {
border-radius: 999px;
padding: 14px 20px;
border: 1px solid var(--border);
transition: opacity 160ms ease, transform 160ms ease;
}
.button.primary {
background: linear-gradient(135deg, var(--accent), var(--accent-alt));
color: #081018;
font-weight: 700;
border: none;
}
.button.secondary {
background: rgba(255, 255, 255, 0.02);
}
.button:hover {
transform: translateY(-1px);
}
.card {
position: relative;
overflow: hidden;
padding: 24px;
border: 1px solid var(--border);
border-radius: 24px;
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
var(--panel);
backdrop-filter: blur(12px);
}
.status-panel {
display: grid;
gap: 16px;
}
.status-row {
display: flex;
justify-content: space-between;
gap: 16px;
padding-bottom: 12px;
border-bottom: 1px solid var(--border);
color: var(--muted);
}
.status-row:last-child {
border-bottom: none;
padding-bottom: 0;
}
.status-row strong {
max-width: 58%;
text-align: right;
color: var(--text);
}
.section-head {
margin: 68px 0 20px;
}
.section-head h2,
.narrative h2,
.stack-panel h2,
.command-panel h2,
.capability h3 {
margin-top: 10px;
}
.grid {
grid-template-columns: repeat(12, minmax(0, 1fr));
}
.two-up > * {
grid-column: span 6;
}
.capabilities > * {
grid-column: span 6;
}
.narrative,
.stack-panel,
.command-panel,
.capability {
min-height: 100%;
}
.narrative p:last-child,
.capability p {
margin-top: 14px;
line-height: 1.7;
color: var(--muted);
}
.stack-list {
list-style: none;
padding: 0;
margin: 18px 0 0;
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.stack-list li {
padding: 10px 14px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.04);
border: 1px solid var(--border);
}
pre {
margin: 18px 0 0;
padding: 18px;
overflow-x: auto;
border-radius: 18px;
background: rgba(0, 0, 0, 0.2);
border: 1px solid var(--border);
color: var(--text);
line-height: 1.7;
}
.lower {
margin-top: 24px;
}
@media (max-width: 920px) {
.hero-grid,
.topbar,
.two-up > *,
.capabilities > * {
grid-template-columns: 1fr;
grid-column: 1 / -1;
}
.topbar {
gap: 12px;
}
.links {
gap: 12px;
}
h1 {
max-width: none;
}
}