Quellcode durchsuchen

Use Verily

master
Dylan Baker vor 3 Jahren
Ursprung
Commit
2038cd6d7c
2 geänderte Dateien mit 8 neuen und 1 gelöschten Zeilen
  1. BIN
      static/VerilySerifMono.otf
  2. 8
    1
      static/style.css

BIN
static/VerilySerifMono.otf Datei anzeigen


+ 8
- 1
static/style.css Datei anzeigen

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

Laden…
Abbrechen
Speichern