variables.scss 674 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //color
  2. $color-blue: #1f7394;
  3. $color-white: #ffffff;
  4. $color-black: #000000;
  5. $color-error: #c60000;
  6. $color-grey-light: #eeeeee;
  7. $color-mint: #5acec2;
  8. $color-grey-2: #f5f5f5;
  9. $color-grey-3: #aabbcc;
  10. //font-weight
  11. $light: 300;
  12. $normal: 400;
  13. $semi-bold: 600;
  14. $bold: 700;
  15. //font-family
  16. $typo-1: 'Josefin Sans', sans-serif;
  17. //mediaquery
  18. //max-width
  19. $medium: 1279px;
  20. $medium-sm: 991px;
  21. $small: 767px;
  22. $xsmall: 575px;
  23. //min-width
  24. $min-medium: 1280px;
  25. $min-medium-sm: 992px;
  26. $min-small: 768px;
  27. $min-xsmall: 576px;
  28. //max-height
  29. $height-630: 630px;
  30. //mixins
  31. @mixin bg-settings {
  32. background: {
  33. repeat: no-repeat;
  34. position: center;
  35. size: cover;
  36. }
  37. }