commit 9ecf2ee5fa4553b1162161e1e617fcefe9151e28 Author: Luna Date: Thu Nov 13 13:28:15 2025 -0300 starting stuff diff --git a/assets/base.css b/assets/base.css new file mode 100644 index 0000000..daffb6a --- /dev/null +++ b/assets/base.css @@ -0,0 +1,10 @@ +@import url(fonts.css); + +html { + background-color: var(--c-bg) +} + +p { + font-family: "nya"; + color: var(--c-fg) +} \ No newline at end of file diff --git a/assets/colors.css b/assets/colors.css new file mode 100644 index 0000000..9fb1b4a --- /dev/null +++ b/assets/colors.css @@ -0,0 +1,5 @@ +:root { + --c-bg: #000000; + --c-fg: #ffffff; + --c-highlight: #00ffff; +} \ No newline at end of file diff --git a/assets/fonts.css b/assets/fonts.css new file mode 100644 index 0000000..8bdf75e --- /dev/null +++ b/assets/fonts.css @@ -0,0 +1,25 @@ +@font-face { + font-family: "nya"; + src: url(MapleMonoNormal-Regular.ttf.woff2); + font-weight: normal; +} + +@font-face { + font-family: "nya"; + src: url(MapleMonoNormal-Bold.ttf.woff2); + font-weight: bold; +} + +@font-face { + font-family: "nya"; + src: url(MapleMonoNormal-Italic.ttf.woff2); + font-weight: normal; + font-style: italic; +} + +@font-face { + font-family: "nya"; + src: url(MapleMonoNormal-BoldItalic.ttf.woff2); + font-weight: bold; + font-style: italic; +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..9ef68de --- /dev/null +++ b/index.html @@ -0,0 +1,11 @@ + + + + Linuxposting Tilde + + + + +

just testing some stuff rn

+ + \ No newline at end of file