_variables.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Colors
  2. $black: #000;
  3. $red: #A71E2E;
  4. $green: #00D400;
  5. $purple: #522158;
  6. $very-dark-grey: #111;
  7. $dark-grey: #444;
  8. $grey: #808080;
  9. $light-grey: #ccc;
  10. $very-light-grey: #fbfbfb;
  11. $white: #fff;
  12. $base-color: $purple;
  13. $base-font-color: $very-dark-grey;
  14. $body-bgcolor: $very-light-grey;
  15. // Fonts
  16. $font-weight-light: 300;
  17. $font-weight-normal: 400;
  18. $font-weight-heavy: 600;
  19. $font-weight-header: 700;
  20. $default-font-weight: $font-weight-normal;
  21. $default-font-size: 16px;
  22. $default-line-height: 1.25;
  23. $button-font-size: 14px;
  24. $default-font-family: Oxygen, Tahoma, Verdana, Helvetica, Arial, sans-serif;
  25. $wide-font-family: Montserrat, sans-serif;
  26. $mono-font-family: Inconsolata, Consolas, "Deja Vu Sans Mono", "Bitstream Vera Sans Mono", "Droid Sans Mono", "Andale Mono", Anonymous, "Monaco", monospaced;
  27. // Borders
  28. $default-border-color: $base-color;
  29. $default-border-width: 2px;
  30. $default-border-style: solid;
  31. $default-border: $default-border-width $default-border-style $default-border-color;
  32. $default-border-radius: 2px;
  33. // Spacing
  34. $default-gutter: 20px;
  35. $sidebar-width: 220px;
  36. // Media
  37. // $tablet-breakpoint: 768px;
  38. // $mobile-breakpoint: 480px;
  39. $tablet-breakpoint: 900px;
  40. $mobile-breakpoint: 700px;
  41. // Effects
  42. $default-opacity: 0.85;