main.scss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @import 'libs/vars';
  2. @import 'libs/functions';
  3. @import 'libs/mixins';
  4. @import 'libs/skel';
  5. @import 'font-awesome.min.css';
  6. /*
  7. Hyperspace by HTML5 UP
  8. html5up.net | @ajlkn
  9. Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  10. */
  11. @include skel-breakpoints((
  12. xlarge: '(max-width: 1680px)',
  13. large: '(max-width: 1280px)',
  14. medium: '(max-width: 980px)',
  15. small: '(max-width: 736px)',
  16. xsmall: '(max-width: 480px)',
  17. xxsmall: '(max-width: 360px)'
  18. ));
  19. @include skel-layout((
  20. reset: 'full',
  21. boxModel: 'border',
  22. grid: ( gutters: 1.5em )
  23. ));
  24. // Base.
  25. @import 'base/page';
  26. @import 'base/typography';
  27. // Component.
  28. @import 'components/box';
  29. @import 'components/button';
  30. @import 'components/features';
  31. @import 'components/form';
  32. @import 'components/icon';
  33. @import 'components/image';
  34. @import 'components/list';
  35. @import 'components/section';
  36. @import 'components/split';
  37. @import 'components/spotlights';
  38. @import 'components/table';
  39. @import 'components/wrapper';
  40. // Layout.
  41. @import 'layout/header';
  42. @import 'layout/wrapper';
  43. @import 'layout/footer';
  44. @import 'layout/sidebar';
  45. @import 'layout/intro';