asi-calculator/styles/globals.css

48 lines
743 B
CSS
Raw Permalink Normal View History

2024-03-31 15:24:07 +02:00
@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;
}
2024-04-06 23:50:12 +02:00
@media (prefers-color-scheme: dark) {
html {
color-scheme: dark;
}
}
2024-03-31 15:24:07 +02:00
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;
2024-04-02 23:40:44 +02:00
padding: 2rem 1.5rem;
2024-03-31 15:24:07 +02:00
}
a {
color: inherit;
text-decoration: none;
}
ul {
list-style: none;
padding: 0;
}
2024-04-06 23:50:12 +02:00
::selection {
background: rgb(var(--foreground-rgb-highlight));
color: rgb(var(--background-rgb));
2024-03-31 15:24:07 +02:00
}