diff options
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/img/favicon.png | bin | 0 -> 294596 bytes | |||
| -rw-r--r-- | assets/scss/fonts.scss | 10 | ||||
| -rw-r--r-- | assets/scss/main.scss | 41 |
3 files changed, 51 insertions, 0 deletions
diff --git a/assets/img/favicon.png b/assets/img/favicon.png Binary files differnew file mode 100644 index 0000000..c3864f8 --- /dev/null +++ b/assets/img/favicon.png diff --git a/assets/scss/fonts.scss b/assets/scss/fonts.scss new file mode 100644 index 0000000..4598947 --- /dev/null +++ b/assets/scss/fonts.scss @@ -0,0 +1,10 @@ +@font-face { + font-family: "Go Mono"; + src: url("/fonts/Go-Mono.ttf"); +} + +* { + font-family: "Go Mono"; +} + + diff --git a/assets/scss/main.scss b/assets/scss/main.scss new file mode 100644 index 0000000..ae917c9 --- /dev/null +++ b/assets/scss/main.scss @@ -0,0 +1,41 @@ +@use 'fonts.scss'; + +* { + color: #f0f0f0; +} + +html { + background: #0e0614; +} + +header { + text-align: center; +} + +header h1 { + font-style: italic; +} + +nav a { + padding: 0 0.1rem; +} + +footer { + text-align: center; +} + +h1 a { + text-decoration: none; +} + +code { + overflow-wrap: anywhere; +} + +.content { + max-width: 50rem; + + text-wrap: pretty; + + margin: auto; +} |
