diff --git a/inconsolata.ttf b/inconsolata.ttf
deleted file mode 100644
index 95ad718..0000000
Binary files a/inconsolata.ttf and /dev/null differ
diff --git a/index.html b/index.html
index a6a3c57..42fa479 100644
--- a/index.html
+++ b/index.html
@@ -2,48 +2,25 @@
-
-
this page wildly under construction
-
aka i am gonna be repeatedly redoing like everything
+
a demo of my random walker javascript
-
-
hi, i'm shoe.
-
i hope you like this place!
-
+
code started out from Jack McKew's blogpost, but very few parts of that original is left
-
-
about shoe
-
- - they/them
- - i like sysadmin
- - TODO: I really need this section to not read like garbo
-
-
+
walker controls
+
+
+
+
+
+
hide text
+
click to hide all page contents:
-
-
controls
-
mess with the random walkers
-
-
-
-
-
-
if you want, you can the page to just watch the random walk
-
-
-
-
inspiration
-
gotta cite your sources >w<
-
- - ~nebula's homepage is beautiful and convinced me to make a lot of empty space, including the right-aligned elements
- - Jack McKew's blogpost about random walkers in js was my starting point, even though mine looks nothing like theirs
-
-
diff --git a/style.css b/style.css
deleted file mode 100644
index e5c0940..0000000
--- a/style.css
+++ /dev/null
@@ -1,53 +0,0 @@
-/* load font from local file because fuck yeah */
-@font-face {
- font-family: inconsolata;
- src: url("inconsolata.ttf");
-}
-
-body {
- background-color: #22241f;
- color: #d7fcc2;
- font-family: inconsolata;
-}
-
-/* make
match overall font and size */
-pre {
- font-family: inherit;
- font-size: inherit;
-}
-
-/* change ul bullet points to dashes for ~style~
- * derived from https://www.w3schools.com/cssref/pr_list-style-type.php */
-ul {
- list-style-type: none;
- padding-left: 16px;
-}
-ul > li::before {
- content: "-";
- padding-right: 8px;
-}
-
-/* style the page banner/signature thing to be big and bold */
-#banner {
- font-size: large;
- font-weight: bolder;
-}
-
-/* recolor links to still be blue and purple,
- * but be visible against the dark bg */
-a {
- color: #64adf1;
-}
-a:visited {
- color: #a76ff5;
-}
-a:active {
- color: #ff0000;
-}
-
-/* style tilde.town ring appropriately */
-#tilde_ring {
- background-color: black;
- text-align: center;
- padding: 0.5em;
-}