26 lines
395 B
CSS
26 lines
395 B
CSS
@font-face {
|
|
font-family: 'JetBrains-Mono';
|
|
src: url('/assets/jetbrains-mono-font/fonts/webfonts/JetBrainsMono-Regular.woff2') format('woff2');
|
|
}
|
|
|
|
:root {
|
|
font-family: 'JetBrains-Mono', sans-serif;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
|
|
height: 100dvh;
|
|
width: 100dvw;
|
|
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
padding: 32px;
|
|
}
|