18 lines
253 B
CSS
18 lines
253 B
CSS
@import url("../assets/source-sans-3/source-sans-3.css");
|
|
|
|
:root {
|
|
--black: 0, 0, 0;
|
|
--white: 255, 255, 255;
|
|
font-family: "Source Sans 3";
|
|
}
|
|
|
|
html * {
|
|
background-color: rgb(var(--black));
|
|
color: rgb(var(--white));
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
|
|
}
|
|
|