diff options
| author | root@localhost <root@localhost> | 2023-08-21 22:42:59 +0000 |
|---|---|---|
| committer | root@localhost <root@localhost> | 2023-08-21 22:45:25 +0000 |
| commit | 0a873c4c7a44d8781feffc182fe07a3404a2c780 (patch) | |
| tree | ff9c571a3ed5e2fd2ce2737e3ddccfbdf4da18d5 /static/css/custom.css | |
| parent | 4e97913dfc41aa38371edb5ae7c961f47ee94b2d (diff) | |
custom css, and style updates
Diffstat (limited to 'static/css/custom.css')
| -rw-r--r-- | static/css/custom.css | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 0000000..46726b1 --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,36 @@ +@font-face { + font-family: "Zilla"; + src: url('../fonts/zilla/ZillaSlab-Regular.ttf') format('truetype'); + font-style: normal; + font-weight: normal; +} +@font-face { + font-family: "Zilla"; + src: url('../fonts/zilla/ZillaSlab-Italic.ttf') format('truetype'); + font-style: italic; + font-weight: normal; +} +@font-face { + font-family: "Zilla"; + src: url('../fonts/zilla/ZillaSlab-Bold.ttf') format('truetype'); + font-style: normal; + font-weight: bold; +} + +.page { + grid-template-columns: minmax(0, 1fr) 15rem; /* Default: minmax(0, 1fr) 15rem */ +} +blockquote { + background: var(--inner-bg); + border-left: 4px solid var(--hover); + margin: 1.5em 10px; + padding: 0.5em 10px; + border-radius: 4px; +} + +blockquote > p { + font-style: normal; + color: var(--off-fg); + font-weight: normal; + font-family: "Zilla", serif; +} |
