69 lines
No EOL
1 KiB
CSS
69 lines
No EOL
1 KiB
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;
|
|
}
|
|
|
|
html {
|
|
font-family: system-ui, sans-serif;
|
|
background: #13151a;
|
|
background-size: 224px;
|
|
}
|
|
|
|
main {
|
|
margin: auto;
|
|
padding: 1rem;
|
|
width: 800px;
|
|
max-width: calc(100% - 2rem);
|
|
color: white;
|
|
font-size: 20px;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
audio {
|
|
width: 100%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 4rem;
|
|
font-weight: 700;
|
|
line-height: 1;
|
|
text-align: center;
|
|
margin-bottom: 1em;
|
|
}
|
|
|
|
a:link {
|
|
color: #89b4fa
|
|
}
|
|
|
|
a:visited {
|
|
color: #b4befe
|
|
}
|
|
|
|
a:hover {
|
|
color: #89dceb
|
|
}
|
|
|
|
hr {
|
|
width: 32%;
|
|
color: #6e738d;
|
|
}
|
|
|
|
body {
|
|
color: #cdd6f4
|
|
}
|
|
|
|
p {
|
|
color: #cdd6f4
|
|
} |