website/src/style.css
2021-12-21 09:58:45 -08:00

27 lines
314 B
CSS

* {
font-family: sans-serif;
background-color: black;
color: white;
text-align: center;
}
ul {
display: table;
margin: 0 auto;
padding: 0;
text-align: left;
list-style-position: inside;
}
a {
text-decoration: none;
}
a:hover {
text-decoration:underline;
}
body {
width: 100%;
height: 100%
}