33 lines
512 B
CSS
33 lines
512 B
CSS
@import "@css/catppuccin.css";
|
|
|
|
:root {
|
|
--background: url("/background.png");
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
* {
|
|
font-family: BlinkMacSystemFont, Inter, sans-serif;
|
|
}
|
|
body {
|
|
background: var(--background);
|
|
font-size: 0.95rem;
|
|
color: var(--text);
|
|
padding: 30px;
|
|
overflow: hidden;
|
|
}
|
|
a {
|
|
color: #89b4fa;
|
|
}
|
|
@media (pointer: coarse) {
|
|
body {
|
|
overflow: scroll;
|
|
}
|
|
}
|
|
.emoji {
|
|
font-family: "Inter", "Noto Emoji Variable";
|
|
}
|
|
h1,h2,h3,h4,h5,h6,p,ul {
|
|
margin: 0;
|
|
}
|
|
h4,h5,h6 {
|
|
color: var(--overlay0)
|
|
}
|