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
| /* color palette from <https://github.com/vuejs/theme> */
| :root {
| --vt-c-white: #ffffff;
| --vt-c-white-soft: #f8f8f8;
| --vt-c-white-mute: #f2f2f2;
|
| --vt-c-black: #181818;
| --vt-c-black-soft: #222222;
| --vt-c-black-mute: #282828;
|
| --vt-v-blue: #13234b;
|
| }
|
| /* semantic color variables for this project */
| :root {
| --color-background: var(--vt-v-blue);
| --color-text: var(--vt-c-white);
| --section-gap: 160px;
| }
|
| *,
| *::before,
| *::after {
| box-sizing: border-box;
| margin: 0;
| font-weight: normal;
| }
|
| body {
| min-height: 100vh;
| color: var(--color-text);
| background: var(--color-background);
| line-height: 1.6;
| font-family:
| Inter,
| -apple-system,
| BlinkMacSystemFont,
| 'Segoe UI',
| Roboto,
| Oxygen,
| Ubuntu,
| Cantarell,
| 'Fira Sans',
| 'Droid Sans',
| 'Helvetica Neue',
| sans-serif;
| font-size: 15px;
| text-rendering: optimizeLegibility;
| -webkit-font-smoothing: antialiased;
| -moz-osx-font-smoothing: grayscale;
| }
|
|