diff options
| author | JackJ30 <jackqjamison@gmail.com> | 2025-05-12 14:52:39 -0400 |
|---|---|---|
| committer | JackJ30 <jackqjamison@gmail.com> | 2025-05-12 14:52:39 -0400 |
| commit | 417cbec1bd52c239f28c19b7affcdec693e803fd (patch) | |
| tree | 43bb831b91a36740edd9f5164c19577866df5ebf /zola-static/sass | |
| parent | 1c831883e0ad3d6edb753248aa3e8be52e8f2e0a (diff) | |
some styling
Diffstat (limited to 'zola-static/sass')
| -rw-r--r-- | zola-static/sass/.gitpreserve | 0 | ||||
| -rw-r--r-- | zola-static/sass/base.scss | 28 |
2 files changed, 28 insertions, 0 deletions
diff --git a/zola-static/sass/.gitpreserve b/zola-static/sass/.gitpreserve deleted file mode 100644 index e69de29..0000000 --- a/zola-static/sass/.gitpreserve +++ /dev/null diff --git a/zola-static/sass/base.scss b/zola-static/sass/base.scss new file mode 100644 index 0000000..ba5e106 --- /dev/null +++ b/zola-static/sass/base.scss @@ -0,0 +1,28 @@ +* { + font-family: monospace; +} + +body { + background-color: #252422; + margin: 0; + padding: 0; +} + +section { + height: 100%; + margin: auto 23%; + padding: 1rem; + + background-color: #252422; + color: #F3E9DC; + font-size: 125%; +} + +a { + color: #8B95C9; +} + +pre { + padding : 0.5rem; + border-radius: 0.3rem; +} |
