41 lines
No EOL
660 B
CSS
41 lines
No EOL
660 B
CSS
@import "classes.css";
|
|
|
|
:root {
|
|
background: repeat url("/assets/background.png");
|
|
-webkit-background-size: repeat;
|
|
-moz-background-size: cover;
|
|
-o-background-size: cover;
|
|
background-size: repeat;
|
|
|
|
--accent: 250, 179, 135;
|
|
--accent-light: 250, 221, 201;
|
|
--accent-dark: 149, 106, 81;
|
|
--accent-gradient: linear-gradient(45deg, rgb(var(--accent)), rgb(var(--accent-light)) 30%, white 60%);
|
|
|
|
font-family: system-ui, sans-serif;
|
|
}
|
|
|
|
a:link {
|
|
color: #89b4fa
|
|
}
|
|
|
|
a:visited {
|
|
color: #b4befe
|
|
}
|
|
|
|
a:hover {
|
|
color: #89dceb
|
|
}
|
|
|
|
hr {
|
|
width: 32%;
|
|
color: #6e738d;
|
|
}
|
|
|
|
body {
|
|
color: #cdd6f4
|
|
}
|
|
|
|
p {
|
|
color: #cdd6f4
|
|
} |