You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
773 B

  1. // --------------------------------------
  2. // FONTS
  3. // --------------------------------------
  4. $core-font-standard: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  5. $core-font-monospace: Consolas, "Liberation Mono", Menlo, Courier, monospace;
  6. // --------------------------------------
  7. // LAYOUT
  8. // --------------------------------------
  9. $tablet: 769px !default;
  10. $desktop: 980px !default;
  11. $widescreen: 1180px !default;
  12. // --------------------------------------
  13. // COLORS
  14. // --------------------------------------
  15. $color-text: mc('grey', '800');
  16. $color-link: mc('blue', '500');
  17. $color-link-hover: mc('blue', '700');
  18. $color-link-active: mc('purple', '500');
  19. $color-bg: #F4F5F9;