blob: fd05eb8daefff8695b817adae0a5d29b071a8f23 (
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
|
// Font family
@import url('https://fonts.googleapis.com/css?family=Noticia+Text&display=swap+Display:400,700');
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: 'Noticia Text','Georgia',sans-serif;
}
h1, h2, h3, h4 {
font-family: 'Operator A', 'Operator B';
font-weight: 400;
}
code[class*="language-"], nav, .blog-list {
font-family: "Operator Mono A", "Operator Mono B";
font-style: normal;
font-weight: 400;
font-size: 1.025rem;
}
code {
font-family: "Operator Mono A", "Operator Mono B";
}
tags {
font-family: "Operator Mono A", "Operator Mono B";
}
|