blob: 993305e393e625237f9dac76421d8553c3d33e8a (
plain)
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
|
@font-face {
font-family: "Zilla";
src: url('../fonts/zilla/ZillaSlab-Regular.ttf') format('truetype');
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "Zilla";
src: url('../fonts/zilla/ZillaSlab-Italic.ttf') format('truetype');
font-style: italic;
font-weight: normal;
}
@font-face {
font-family: "Zilla";
src: url('../fonts/zilla/ZillaSlab-Bold.ttf') format('truetype');
font-style: normal;
font-weight: bold;
}
blockquote {
background: var(--inner-bg);
border-left: 4px solid var(--hover);
margin: 0 0 1.5rem 1.5rem;
padding: 0.5em 10px;
border-radius: 4px;
}
blockquote > p {
font-style: normal;
color: var(--off-fg);
font-weight: normal;
font-family: "Zilla", serif;
}
table {
border-collapse: collapse;
width: 100%;
}
td {
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
padding: 0.6rem;
}
|