this repo has no description
1html,
2body {
3 height: 100%;
4 margin: 0;
5 padding: 0;
6
7 background-color: var(--bg);
8 color: var(--fg);
9 scrollbar-color: var(--palette10) var(--bg-m3);
10 /* scrollbar-gutter: stable; */
11
12 font-size-adjust: ex-height 0.5;
13 -webkit-text-size-adjust: 100%;
14}
15
16header {
17 height: var(--header-height);
18 width: 100%;
19 background-color: var(--palette10);
20}
21
22content {
23 margin: auto;
24 max-width: var(--content-max-width);
25 height: var(--content-height);
26
27 display: flex;
28 flex-direction: column;
29 align-content: space-between;
30 justify-content: space-between;
31}
32
33@media only screen and (max-width: 320px) {
34 content {
35 padding: 0 1em;
36 font-size: larger;
37 }
38}
39
40@media only screen and (max-width: 800px) and (min-width: 321px) {
41 content {
42 padding: 0 2em;
43 }
44}