19 lines
360 B
CSS
19 lines
360 B
CSS
@import "/static/css/colors.css";
|
|
@import "/static/css/form.css";
|
|
@import "/static/css/table.css";
|
|
|
|
@font-face {
|
|
font-family: 'GeistMono';
|
|
src: url('/static/fonts/GeistMono-Medium.ttf') format('truetype');
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
color: var(--text-color);
|
|
font-family: GeistMono;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--background-color);
|
|
}
|