-
Notifications
You must be signed in to change notification settings - Fork 0
/
org-font.css
55 lines (54 loc) · 1.62 KB
/
org-font.css
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
/* NOTE! Please consider providing your own font URL as there is no guarantee
that https://bitmaster.se will provide this font forever. */
@font-face {
font-family: "Lora";
font-style: normal;
font-weight: normal;
font-display: swap;
src: url("https://bitmaster.se/fonts/Lora/Lora-Regular-Mini.woff") format("woff");
}
@font-face {
font-family: "Lora";
font-style: normal;
font-weight: bold;
font-display: swap;
src: url("https://bitmaster.se/fonts/Lora/Lora-SemiBold-Mini.woff") format("woff");
}
@font-face {
font-family: "Lora";
font-style: italic;
font-weight: normal;
font-display: swap;
src: url("https://bitmaster.se/fonts/Lora/Lora-Italic-Mini.woff") format("woff");
}
@font-face {
font-family: "Lora";
font-style: italic;
font-weight: bold;
font-display: swap;
src: url("https://bitmaster.se/fonts/Lora/Lora-SemiBoldItalic-Mini.woff") format("woff");
}
@font-face {
font-family: "Inconsolata";
font-style: normal;
font-weight: normal;
font-display: swap;
src: url("https://bitmaster.se/fonts/Inconsolata/Inconsolata-Regular-Mini.woff") format("woff");
}
@font-face {
font-family: "Inconsolata";
font-style: normal;
font-weight: bold;
font-display: swap;
src: url("https://bitmaster.se/fonts/Inconsolata/Inconsolata-SemiBold-Mini.woff") format("woff");
}
body {
font-family: Lora, serif;
}
tt, code, pre {
font-family: Inconsolata, monospace;
font-size: 100%; /* Different monospace fonts vary in size in relation to the serif font! */
}
.todo, .done, .priority, .tag {
font-family: Inconsolata, monospace;
}