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
11 font-size-adjust: ex-height 0.5;
12 -webkit-text-size-adjust: 100%;
13}
14
15header {
16 height: var(--header-height);
17 width: 100%;
18 background-color: var(--palette10);
19}
20
21content {
22 margin: auto;
23 max-width: var(--content-max-width);
24 height: var(--content-height);
25
26 display: flex;
27 flex-direction: column;
28 align-content: space-between;
29 justify-content: space-between;
30}
31
32@media only screen and (max-width: 320px) {
33 content {
34 padding: 0 1em;
35 font-size: larger;
36 }
37}
38
39@media only screen and (max-width: 800px) and (min-width: 321px) {
40 content {
41 padding: 0 2em;
42 }
43}