mirror of
https://github.com/kremalicious/asi-calculator.git
synced 2024-12-22 17:33:18 +01:00
45 lines
660 B
CSS
45 lines
660 B
CSS
|
@import './_variables.css';
|
||
|
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
html,
|
||
|
body {
|
||
|
max-width: 100vw;
|
||
|
overflow-x: hidden;
|
||
|
font-family: var(--font-hanken-grotesk);
|
||
|
text-rendering: optimizeLegibility;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
color: rgb(var(--foreground-rgb));
|
||
|
background: var(--background-gradient) rgb(var(--background-rgb));
|
||
|
line-height: 1.5;
|
||
|
min-height: 100vh;
|
||
|
height: 100%;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: inherit;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style: none;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
@media (prefers-color-scheme: dark) {
|
||
|
html {
|
||
|
color-scheme: dark;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@import './_animations.css';
|