54 lines
966 B
CSS
54 lines
966 B
CSS
/* 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;
|
|
}
|