diff options
| author | Paul Buetow <paul@buetow.org> | 2023-03-26 15:52:02 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-03-26 15:52:02 +0300 |
| commit | 727dbbf93a64b9293f22121ebc79704cb7954ebc (patch) | |
| tree | 4c7dcb0001ed1f9198429ae9c538471cad07df2d /style.css | |
| parent | b4601ea0bfe4534cfe12d73adc67b217c648022c (diff) | |
Update content for html
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 25 |
1 files changed, 23 insertions, 2 deletions
@@ -1,5 +1,25 @@ +@font-face { + font-family: 'text'; + src: url("./text.ttf") format("truetype"); +} + +@font-face { + font-family: 'code'; + src: url("./code.ttf") format("truetype"); +} + +@font-face { + font-family: 'handnotes'; + src: url("./handnotes.ttf") format("truetype"); +} + +@font-face { + font-family: 'typewriter'; + src: url("./typewriter.ttf") format("truetype"); +} + body { - font-family: monospace; + font-family: text; width: 99%; max-width: 1024px; padding: 0 20px; @@ -67,7 +87,7 @@ img { } pre { - font-family: monospace; + font-family: code; padding: 0; overflow-x: auto; scrollbar-width: none; @@ -81,6 +101,7 @@ pre { } span.inlinecode { + font-family: code; border: 1px solid #000000; padding: 1px; color: grey; |
