diff options
Diffstat (limited to 'style.css')
| -rw-r--r-- | style.css | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/style.css b/style.css new file mode 100644 index 0000000..fb4f743 --- /dev/null +++ b/style.css @@ -0,0 +1,53 @@ +@font-face { + font-family: 'terminus'; + src: url('/fonts/terminus.ttf'); +} + +@font-face { + font-family: 'fixedsys'; + src: url('/fonts/FSEX300.ttf'); +} + +@font-face { + font-family: 'monospace'; + font-weight: 500; + src: url('/fonts/LiberationMono-Regular.ttf'); +} + +a:link { + color: #61AFEF; +} + +a:visited { + color: #C678DD; +} + +body { + background-color: #282C34; + color: #abb2bf; + + font-family: monospace, system-ui; + font-weight: 500; + + max-width: 1000px; + margin-left: auto; + margin-right: auto; +} + +.header * { + display: inline-block; + vertical-align: middle; +} + +.title { + font-size: 36px; + vertical-align: middle; + font-family: fixedsys; + display: inline-block; +} + +* { + vertical-align: middle; + max-width: 100%; +} + |
