serve a static website from your pds
1*,
2*::before,
3*::after {
4 box-sizing: border-box;
5}
6
7* {
8 margin: 0;
9 padding: 0;
10}
11
12html {
13 scrollbar-gutter: stable;
14}
15
16body {
17 line-height: 1.5;
18}
19
20:where(img, picture, video, canvas, svg) {
21 display: block;
22 max-inline-size: 100%;
23}
24
25:where(input, button, textarea, select) {
26 font: inherit;
27 letter-spacing: inherit;
28 word-spacing: inherit;
29 color: currentColor;
30}
31
32:where(p, h1, h2, h3, h4, h5, h6) {
33 overflow-wrap: break-word;
34}
35
36:where(ol, ul) {
37 list-style: none;
38}
39
40:not([class]) {
41 &:where(h1, h2, h3, h4, h5, h6) {
42 margin-block: 0.75em;
43 line-height: 1.25;
44 text-wrap: balance;
45 letter-spacing: -0.05ch;
46 }
47
48 &:where(p, ol, ul) {
49 margin-block: 1em;
50 }
51
52 &:where(ol, ul) {
53 padding-inline-start: 1.5em;
54 list-style: revert;
55 }
56
57 &:where(li) {
58 margin-block: 0.5em;
59 }
60}