commit 1edac10764b88ea4257115ea52ba440c9e597123 Author: deerranged Date: Mon Oct 20 10:04:31 2025 -0400 feat: init diff --git a/README b/README new file mode 100644 index 0000000..746f10e --- /dev/null +++ b/README @@ -0,0 +1,20 @@ + ▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ + ▏ cat ~dee/README x ▕ + ▏▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▕ + ▏ >(o.o)< ▕ + ▏ ▕ + ▏ hello, i'm Dee ~ a.k.a. deerranged. ▕ + ▏ ▕ + ▏ i make stuff every now and then. i'm into a bunch of things, ▕ + ▏ but my main interests are in programming & graphic design. ▕ + ▏ ▕ + ▏ i'm rarely around town, but you may still see me sometimes, ▕ + ▏ so don't be a stranger! ▕ + ▏ ▕ + ▏ other places you can find me: ▕ + ▏ ▕ + ▏ website ▪ soon™ ▕ + ▏ fediverse ▪ @dee@mice.tel ▕ + ▏ bluesky ▪ @ralsei.tech ▕ + ▏ ▕ + ▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔ \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..c266167 --- /dev/null +++ b/index.html @@ -0,0 +1,34 @@ + + + + cat ~dee/README + + + +

+    
+  
+
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..e01af2e
--- /dev/null
+++ b/style.css
@@ -0,0 +1,46 @@
+@font-face {
+  font-family: "DM Mono";
+  font-style: normal;
+  font-display: swap;
+  font-weight: 400;
+  src:
+    url(https://cdn.jsdelivr.net/fontsource/fonts/dm-mono@latest/latin-400-normal.woff2)
+      format("woff2"),
+    url(https://cdn.jsdelivr.net/fontsource/fonts/dm-mono@latest/latin-400-normal.woff)
+      format("woff");
+  unicode-range:
+    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
+    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
+    U+2215, U+FEFF, U+FFFD;
+}
+
+:root {
+  --font: "DM Mono", monospace;
+
+  --primary: white;
+  --base: black;
+
+  --accent: #ff4180;
+}
+
+body {
+  background: var(--base);
+}
+pre {
+  color: var(--primary);
+
+  font-family: var(--font);
+  white-space: pre-wrap;
+}
+
+a {
+  color: var(--accent);
+
+  text-decoration: underline dotted;
+
+  /*transition-duration: .1s;
+				transition-property: opacity;*/
+}
+a:hover {
+  opacity: 0.6;
+}