summaryrefslogtreecommitdiff
path: root/assets/scss
diff options
context:
space:
mode:
authorforever2k38 <forever2k38@noreply.codeberg.org>2026-09-05 01:34:40 +0200
committerforever2k38 <forever2k38@noreply.codeberg.org>2026-09-05 01:34:40 +0200
commitaa2528adf2e9e7d1d1e8baed2d6fda511a0502d9 (patch)
tree1824ef5dc9ccdda8c0e60e9eedfc39c7aecb286c /assets/scss
initial commit
Diffstat (limited to 'assets/scss')
-rw-r--r--assets/scss/fonts.scss10
-rw-r--r--assets/scss/main.scss41
2 files changed, 51 insertions, 0 deletions
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;
+}