1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
.typography {
font-size: 16px;
line-height: 24px;
color: var(--color-on-background);
h1, h2, h3, h4, h5, h6 {
font-family: "PT Serif Caption", serif;
}
& > h1, & > h2, & > h3, & > h4, & > h5, & > h6, & > p, & > ul, & > ol, & > table {
margin: 24px 0px;
}
h1 {
font-size: 32px;
margin-top: 64px;
}
h2 {
font-size: 24px;
margin-top: 48px;
color: var(--color-on-surface-variant);
}
h3 {
font-size: 16px;
margin-top: 32px;
color: var(--color-secondary);
}
p {
text-align: justify;
}
a {
color: var(--color-primary);
text-decoration: underline;
&:hover {
opacity: 80%;
}
}
pre, code {
font-family: "Roboto Mono", monospace;
}
:not(pre) code {
background-color: var(--color-surface-variant);
color: var(--color-on-surface-variant);
padding: 0px 5px;
border-radius: 3px;
}
pre {
font-size: 14px;
line-height: 20px;
padding: 16px;
overflow-x: auto;
border-radius: 8px;
}
@media (prefers-color-scheme: dark) {
pre {
border: 1px solid var(--color-outline-variant);
}
}
ul {
list-style: square;
}
ol {
list-style: decimal;
}
ul, ol {
list-style-position: outside;
margin-left: 32px;
}
li {
margin-top: 12px;
}
img {
max-width: 100%;
height: auto;
background-color: white;
text-align: center;
}
}
|