-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
33 lines (30 loc) · 879 Bytes
/
Copy pathstyle.css
File metadata and controls
33 lines (30 loc) · 879 Bytes
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
/* ── Reset & Root ──────────────────────────────────────────── */
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
--white: #ffffff;
--off-white: #f5f5f7;
--g50: #f2f2f2;
--g100: #e8e8e8;
--g200: #d1d1d1;
--g400: #a0a0a0;
--g600: #6e6e6e;
--g800: #3a3a3a;
--black: #1a1a1a;
--amber: #f5a623;
--sidebar: 260px;
--font-ui: 'Geist', system-ui, sans-serif;
--font-ser: 'Instrument Serif', Georgia, serif;
--ease: cubic-bezier(0.4, 0, 0.2, 1);
}
html, body {
height: 100%;
font-family: var(--font-ui);
background: var(--off-white);
color: var(--black);
-webkit-font-smoothing: antialiased;
}
/* ── Layout ──── */