mirror of
https://codeberg.org/youngchief/website.git
synced 2023-12-14 07:22:56 +01:00
27 lines
314 B
CSS
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%
|
|
}
|