a post-component library for building user-interfaces on the web.
1*,
2*::before,
3*::after {
4 box-sizing: border-box;
5}
6
7:root {
8 font-family: system-ui, sans-serif;
9 color-scheme: dark light;
10}
11
12* {
13 margin: 0;
14}
15
16html {
17 height: 100%;
18}
19
20body {
21 line-height: 1.5;
22 -webkit-font-smoothing: antialiased;
23 min-height: 100%; /* maybe dvh? */
24}
25
26h1,
27h2,
28h3,
29h4,
30h5,
31h6 {
32 text-wrap: balance;
33 overflow-wrap: break-word;
34}
35p {
36 text-wrap: pretty;
37 overflow-wrap: break-word;
38}
39
40input,
41button,
42textarea,
43select {
44 font: inherit;
45}
46
47a {
48 color: inherit;
49}
50
51summary {
52 user-select: none;
53}