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-03-18 09:04:44 +01:00
|
|
|
margin: 0;
|
2024-02-15 02:08:09 +01:00
|
|
|
}
|
2024-02-23 19:29:49 +01:00
|
|
|
|
|
|
|
a, a:link a:visited {
|
|
|
|
color: var(--text1);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2024-03-09 18:29:30 +01:00
|
|
|
|
|
|
|
code {
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 0.9rem;
|
|
|
|
line-height: 1.3;
|
|
|
|
letter-spacing: .32px;
|
|
|
|
border-radius: .25rem;
|
|
|
|
padding: 0 .5rem;
|
|
|
|
background-color: #333333;
|
|
|
|
}
|