this repo has no description
1@import url(colors.css);
2
3html {
4 font-family: system-ui, sans-serif;
5 color-scheme: light dark;
6 background: var(--bg_color);
7 color: var(--fg_color);
8}
9
10body {
11 margin: 2rem auto 0;
12 text-align: center;
13}
14
15h1 { margin-block: 0.5rem 0rem; }
16p { margin-block: 0.5rem; }
17
18img {
19 max-width: 100%;
20 max-height: 100%;
21 vertical-algin: middle;
22}
23
24footer {
25 font-size: 0.75rem;
26 margin-top: 1rem;
27
28 p { margin: 0.25rem; }
29}
30
31.me {
32 ul {
33 margin-block: 0.1rem;
34 padding: 0;
35
36 li {
37 text-style: none;
38 display: inline;
39
40 &:after { content: " \2022"; }
41 &:last-child:after { content: none; }
42 }
43
44 }
45
46 .logo { width: 10rem; }
47 .info { font-size: 0.8rem; }
48}
49
50.contact h1 { margin-top: 2rem; }
51
52@media (prefers-color-scheme: dark) {
53 p { font-weight: 500; }
54}