this repo has no description
1.content {
2 font-family: "Andada Pro";
3 font-size: var(--font-size);
4 font-weight: var(--normal-weight);
5 font-style: normal;
6 font-feature-settings:
7 "liga" 1,
8 "calt" 1;
9
10 line-height: 1.6;
11}
12
13::selection {
14 background-color: var(--selection-background);
15 color: var(--selection-foreground);
16}
17
18::-moz-selection {
19 background-color: var(--selection-background);
20 color: var(--selection-foreground);
21}
22
23a {
24 color: var(--palette12);
25
26 &:hover,
27 &:visited {
28 color: var(--palette4);
29 }
30}