Add other dir contents and add rest to gitignore
This commit is contained in:
parent
2b8fdf669d
commit
1bfcf5ac27
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,4 @@
|
||||
*.swp
|
||||
|
||||
eng240-twine
|
||||
feels
|
||||
|
BIN
inconsolata.ttf
Normal file
BIN
inconsolata.ttf
Normal file
Binary file not shown.
53
style.css
Normal file
53
style.css
Normal 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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user