18 lines
362 B
CSS
18 lines
362 B
CSS
@font-face {
|
|
font-family: "Shantell Sans";
|
|
src: url("/assets/shantell_sans.woff2"); /* this font is just good */
|
|
}
|
|
|
|
body {
|
|
font-family: "Shantell Sans", sans;
|
|
background-color: rgb(0, 10, 19);
|
|
color: rgb(204, 222, 255);
|
|
}
|
|
|
|
a:link {
|
|
color: rgb(255, 254, 204); /* TODO: learn variables/constants */
|
|
}
|
|
|
|
a:visited {
|
|
color: rgb(239, 204, 255);
|
|
} |