diff --git a/.gitignore b/.gitignore index 1377554..71c40f3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ *.swp + +eng240-twine +feels diff --git a/inconsolata.ttf b/inconsolata.ttf new file mode 100644 index 0000000..95ad718 Binary files /dev/null and b/inconsolata.ttf differ diff --git a/style.css b/style.css new file mode 100644 index 0000000..e5c0940 --- /dev/null +++ b/style.css @@ -0,0 +1,53 @@ +/* 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; +}