mapco.scss 650 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @use "fonts";
  2. @use "mixins";
  3. @use "variables";
  4. @use "forms";
  5. @use "tables";
  6. @use "components";
  7. @use "divers";
  8. @use "sidebar";
  9. @use "layout";
  10. @use "list-view";
  11. @use "global-view";
  12. @use "reader-view";
  13. @use "configuration";
  14. @use "logs";
  15. @use "stats";
  16. @use "mobile";
  17. @charset "UTF-8";
  18. /*=== GENERAL */
  19. /*============*/
  20. html, body {
  21. background: variables.$grey-light;
  22. color: variables.$main-font-color;
  23. font-family: "lato", "Helvetica", "Arial", sans-serif;
  24. font-size: 0.875rem;
  25. }
  26. body.formLogin,
  27. body.register {
  28. background: variables.$sid-bg;
  29. }
  30. /*=== Links */
  31. a, button.as-link {
  32. outline: none;
  33. color: variables.$main-first;
  34. }