aboutsummaryrefslogtreecommitdiff
path: root/zola-static/sass
diff options
context:
space:
mode:
Diffstat (limited to 'zola-static/sass')
-rw-r--r--zola-static/sass/.gitpreserve0
-rw-r--r--zola-static/sass/base.scss28
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;
+}