2025-01-02 16:23:43 -08:00
|
|
|
@import "/static/css/colors.css";
|
|
|
|
@import "/static/css/form.css";
|
|
|
|
@import "/static/css/table.css";
|
|
|
|
|
2025-01-02 20:23:37 -08:00
|
|
|
@font-face {
|
|
|
|
font-family: 'GeistMono';
|
|
|
|
src: url('/static/fonts/GeistMono-Medium.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
2025-01-02 16:23:43 -08:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: var(--text-color);
|
2025-01-02 20:23:37 -08:00
|
|
|
font-family: GeistMono;
|
2025-01-02 16:23:43 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: var(--background-color);
|
|
|
|
}
|