Add other dir contents and add rest to gitignore

This commit is contained in:
shoe 2025-03-22 03:57:35 +00:00
parent 2b8fdf669d
commit 1bfcf5ac27
3 changed files with 56 additions and 0 deletions

3
.gitignore vendored
View File

@ -1 +1,4 @@
*.swp
eng240-twine
feels

BIN
inconsolata.ttf Normal file

Binary file not shown.

53
style.css Normal file
View File

@ -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 <pre> 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;
}