| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- @use "fonts";
- @use "mixins";
- @use "variables";
- @use "forms";
- @use "tables";
- @use "components";
- @use "divers";
- @use "sidebar";
- @use "layout";
- @use "list-view";
- @use "global-view";
- @use "reader-view";
- @use "configuration";
- @use "logs";
- @use "stats";
- @use "mobile";
- @charset "UTF-8";
- /*=== GENERAL */
- /*============*/
- html, body {
- background: variables.$grey-light;
- color: variables.$main-font-color;
- font-family: "lato", "Helvetica", "Arial", sans-serif;
- font-size: 0.875rem;
- }
- body.formLogin,
- body.register {
- background: variables.$sid-bg;
- }
- /*=== Links */
- a, button.as-link {
- outline: none;
- color: variables.$main-first;
- }
|