blob: 6502a5ab59859146bdc1be4b2645f9f3797c352b (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
@font-face {
font-family: "Libre Baskerville";
font-style: normal;
font-weight: 400;
src: url(/assets/fonts/LibreBaskerville-Regular.ttf);
}
@font-face {
font-family: "Libre Baskerville Italic";
font-style: normal;
font-weight: 400;
src: url(/assets/fonts/LibreBaskerville-Italic.ttf);
}
@font-face {
font-family: "Libre Baskerville Bold";
font-style: normal;
font-weight: 400;
src: url(/assets/fonts/LibreBaskerville-Bold.ttf);
}
:root {
--bulma-family-primary: "Libre Baskerville", serif;
--bulma-family-secondary: "Libre Baskerville", serif;
}
@media(prefers-color-scheme: dark) {
div.content p {
color: #D5DFE5;
font-size: 20px;
}
div.content a {
color: #4E8098;
}
}
@media(prefers-color-scheme: light) {
div.content p {
color: #2B2D42;
font-size: 20px;
}
div.content a {
color: #3772FF;
}
}
@media (width <= 100px) {
.page-container {
flex: none;
width: 100%;
margin-left: 1rem !important;
}
}
@media (width > 1000px) {
.page-container {
flex: none;
width: 50%;
margin-inline-start: 25%;
}
}
.page-title {
font-size: 32px;
font-family: "Libre Baskerville Italic", serif;
}
|