Browse Source

Use Verily

master
Dylan Baker 3 years ago
parent
commit
2038cd6d7c
2 changed files with 8 additions and 1 deletions
  1. BIN
      static/VerilySerifMono.otf
  2. 8
    1
      static/style.css

BIN
static/VerilySerifMono.otf View File


+ 8
- 1
static/style.css View File

1
+@font-face {
2
+  font-family: VerilySerifMono;
3
+  src: url('VerilySerifMono.otf') format('opentype');
4
+}
5
+
1
 :root {
6
 :root {
2
   --background: #bfccbe;
7
   --background: #bfccbe;
3
   --foreground: #000000;
8
   --foreground: #000000;
17
 body {
22
 body {
18
   background: #aab5a9;
23
   background: #aab5a9;
19
   color: #000;
24
   color: #000;
20
-  font-family: monospace;
25
+  font-family: VerilySerifMono, monospace;
21
   font-size: 14px;
26
   font-size: 14px;
22
 }
27
 }
23
 
28
 
34
   background: var(--white);
39
   background: var(--white);
35
   border: 1px solid var(--dark-accent);
40
   border: 1px solid var(--dark-accent);
36
   border-radius: 0;
41
   border-radius: 0;
42
+  font-family: inherit;
43
+  font-size: inherit;
37
   padding: 0.15em 0.3em;
44
   padding: 0.15em 0.3em;
38
   text-decoration: none;
45
   text-decoration: none;
39
 }
46
 }

Loading…
Cancel
Save