deprived-main-website/static/stylesheets/global.css

23 lines
429 B
CSS
Raw Normal View History

2024-02-19 17:32:49 +01:00
/* --- FONTS --- */
@font-face {
font-family: "CozetteVector";
src:
local("CozetteVector"),
url("/fonts/CozetteVector.ttf") format("truetype");
}
2024-02-25 22:22:15 +01:00
html {
background: var(--background1);
}
2024-02-15 02:08:09 +01:00
body {
2024-02-23 19:29:49 +01:00
font-family: var(--main-font);
color: var(--text1); /* Default to primary text color. */
2024-02-15 02:08:09 +01:00
background-color: var(--background);
}
2024-02-23 19:29:49 +01:00
a, a:link a:visited {
color: var(--text1);
text-decoration: none;
}