diff options
author | Brian Picciano <mediocregopher@gmail.com> | 2022-05-21 10:30:43 -0600 |
---|---|---|
committer | Brian Picciano <mediocregopher@gmail.com> | 2022-05-21 10:36:50 -0600 |
commit | 5a58890228cbc2b69069a6e2c71c4e3bc3d3fc07 (patch) | |
tree | 7570f23f6bf647085367baedbedfd13c1b6667b0 /srv/src/http/static/main.css | |
parent | 79452e7472245e561ebedd937002b51eb57e9dba (diff) |
Fix code block formatting and clean up extraneous files
Diffstat (limited to 'srv/src/http/static/main.css')
-rw-r--r-- | srv/src/http/static/main.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/srv/src/http/static/main.css b/srv/src/http/static/main.css index 726e946..ee8ddca 100644 --- a/srv/src/http/static/main.css +++ b/srv/src/http/static/main.css @@ -7,6 +7,11 @@ html { src: url("overpass-regular.woff") format('woff'); } +@font-face { + font-family: "SourceCodePro"; + src: url(SourceCodePro-VariableFont_wght.ttf); +} + h1, h2, h3, h4, h5, h6, .button-primary, .button { font-family: "Overpass", Helvetica; } @@ -19,6 +24,11 @@ form { margin-bottom: 0; } +code { + font-family: "SourceCodePro", monospace; + background: #f0f0f0; +} + .light { color: #666; } |