blob: 9b74f79ea7b84aa44290a515b783243f8eccdd5c (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
@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 <= 1000px) {
.page-container {
flex: none;
width: 100%;
margin-left: 1rem !important;
}
}
@media (width > 1000px) {
.page-container {
flex: none;
width: 50%;
margin-inline-start: 25%;
}
}
.bottom {
border-top: 1px solid var(--bulma-border);
font-size: 18px;
}
.mx-12 {
margin-left: 2rem;
margin-right: 2rem;
}
.my-12 {
margin-top: 2rem;
margin-bottom: 2rem;
}
.navigation {
font-size: 24px;
}
.page-title {
font-size: 32px;
font-family: "Libre Baskerville Italic", serif;
}
|