_variables.scss 787 B

1234567891011121314151617181920212223
  1. // Variables
  2. // =============================================================================
  3. // Default breakpoint map for include-media() mixin
  4. // https://include-media.com/
  5. $breakpoints: (
  6. xsmall : 26em, // 416px / phone @ portrait
  7. small : 30em, // 480px / phone @ landscape / small tablet (portrait)
  8. medium : 48em, // 768px / small tablet (landscape) / large tablet (portrait)
  9. large : 64em, // 1024px / large tablet (landscape) / small desktop
  10. xlarge : 80em, // 1280px / standard desktop
  11. xxlarge: 100em // 1600px / large desktop
  12. );
  13. $scrollbar-width: 5px;
  14. $z-index: (
  15. progress : 2147483647, // z-index limit
  16. overlay : 2147483646, // z-index limit - 1
  17. githubcorner: 40,
  18. navbar : 30,
  19. coverpage : 20,
  20. sidebar : 10
  21. );