18 lines
330 B
CSS
18 lines
330 B
CSS
:root {
|
|
font-family: "Open Sans";
|
|
background-color: #0f1011;
|
|
color: white;
|
|
width: 69vw; /* nice */
|
|
margin: auto;
|
|
}
|
|
a {
|
|
color: #bb99ff;
|
|
text-decoration: none;
|
|
text-shadow: 0 0 5px;
|
|
}
|
|
@font-face {
|
|
font-family: "Open Sans";
|
|
src: url(assets/OpenSans-Regular.ttf);
|
|
}
|
|
/* TODO: make it not bad */
|