ruins
Version:
> [!IMPORTANT] > This is in beta. Not everything is ironed out and some modules might misbehave
66 lines (54 loc) • 1.09 kB
CSS
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
html,
body {
height: 100%;
}
body {
margin: 0;
padding: 0;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
--pyro-border-radius: 0;
--pyro-accent-color: #8558ff;
--pyro-scrollbox-bar-color: var(--pyro-text-color);
--pyro-scrollbox-background: var(--pyro-surface-color);
--nev-fill: var(--pyro-text-color);
--nev-bg: var(--pyro-background-color);
}
#app {
display: flex;
justify-content: center;
flex-direction: column;
width: 95%;
margin: 0 auto;
}
* {
box-sizing: border-box;
}
@media (prefers-color-scheme: dark) {
:root {
background-color: #161616;
color: #f0f0f0;
}
}
a {
color: inherit;
text-decoration: none;
}
pyro-box.flex {
display: flex;
justify-content: center;
align-items: center;
}
.accent {
color: var(--pyro-accent-color);
}
h2 {
font-size: 1.25em;
margin: 0.5em 0;
}
pyro-tab,
pyro-tab-group {
background-color: var(--pyro-surface-color);
}