27 lines
503 B
SCSS
27 lines
503 B
SCSS
* {
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
margin: 0;
|
|
|
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
--navSize: 60px;
|
|
position: relative;
|
|
display: grid;
|
|
grid-template-rows: calc(100svh - var(--navSize)) var(--navSize);
|
|
width: 100svw;
|
|
height: 100svh;
|
|
background-color: #d94253;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|