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.

87 lines
2.5 KiB

4 years ago
  1. // Scaffolding
  2. @body-bg: #fff;
  3. @text-color: @black-50;
  4. @grid-columns: 12;
  5. @grid-gutter-width: 15px;
  6. @grid-float-breakpoint: 768px;
  7. @headerHeight: 50px;
  8. // Grayscale
  9. @gray-darker: lighten(#000, 13.5%); // #222
  10. @gray-dark: lighten(#000, 20%); // #333
  11. @gray: lighten(#000, 33.5%); // #555
  12. @gray-light: lighten(#000, 46.7%); // #777
  13. @gray-lighter: lighten(#000, 93.5%); // #eee
  14. // Semantic colours
  15. @brand-primary: darken(#428bca, 6.5%); // #337ab7
  16. @brand-success: #5cb85c;
  17. @brand-info: #5bc0de;
  18. @brand-warning: #f0ad4e;
  19. @brand-danger: #d9534f;
  20. // Link colours
  21. @link-color: @brand-primary;
  22. @link-hover-color: darken(@link-color, 15%);
  23. //Typography
  24. @font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
  25. @font-family-serif: Georgia, "Times New Roman", Times, serif;
  26. @font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
  27. @font-family-base: @font-family-sans-serif;
  28. @font-size-base: 14px;
  29. @font-size-large: ceil((@font-size-base * 1.25)); // ~18px
  30. @font-size-small: ceil((@font-size-base * 0.85)); // ~12px
  31. @font-size-h1: floor((@font-size-base * 2.6)); // ~36px
  32. @font-size-h2: floor((@font-size-base * 2.15)); // ~30px
  33. @font-size-h3: ceil((@font-size-base * 1.7)); // ~24px
  34. @font-size-h4: ceil((@font-size-base * 1.25)); // ~18px
  35. @font-size-h5: @font-size-base;
  36. @font-size-h6: ceil((@font-size-base * 0.85)); // ~12px
  37. @line-height-base: 1.428571429; // 20/14
  38. @line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px
  39. @headings-font-family: inherit;
  40. @headings-font-weight: 500;
  41. @headings-line-height: 1.1;
  42. @headings-color: inherit;
  43. // Icons
  44. @icon-font-path: "../fonts/";
  45. @icon-font-name: "glyphicons-halflings-regular";
  46. // Components
  47. @padding-base-vertical: 6px;
  48. @padding-base-horizontal: 12px;
  49. @padding-large-vertical: 10px;
  50. @padding-large-horizontal: 16px;
  51. @padding-small-vertical: 5px;
  52. @padding-small-horizontal: 10px;
  53. @padding-xs-vertical: 1px;
  54. @padding-xs-horizontal: 5px;
  55. @line-height-large: 1.33;
  56. @line-height-small: 1.5;
  57. @border-radius-base: 4px;
  58. @border-radius-large: 6px;
  59. @border-radius-small: 3px;
  60. @component-active-color: #fff;
  61. @component-active-bg: @brand-primary;
  62. @caret-width-base: 4px;
  63. @caret-width-large: 5px;