14 lines
252 B
CSS
14 lines
252 B
CSS
@import "/static/css/colors.css";
|
|
@import "/static/css/form.css";
|
|
@import "/static/css/table.css";
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
body {
|
|
font-family: "Roboto", sans-serif;
|
|
background-color: var(--background-color);
|
|
}
|