Drupal 8 Site using Vue
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.

122 lines
2.5 KiB

  1. //=======================================================
  2. // Variables
  3. //=======================================================
  4. //===================
  5. // Koality Grid variables
  6. // https://github.com/fabean/flexbox-grid
  7. //===================
  8. $row-width: 1400px;
  9. $inner-row-width: 1200px;
  10. $gutter-width: 15px;
  11. $flex-grid-count: 12;
  12. $flex-grow-default: 0;
  13. $flex-shrink-default: 1;
  14. $default: 0;
  15. $sm: 576px;
  16. $md: 768px;
  17. $lg: 992px;
  18. $xl: 1200px;
  19. $jumbo: 2000px;
  20. $breakpoints: (
  21. default: $default,
  22. sm: $sm,
  23. md: $md,
  24. lg: $lg,
  25. xl: $xl,
  26. jumbo: $jumbo
  27. );
  28. //===================
  29. // Extra Breakpoints
  30. //===================
  31. $sm-only: 0 $sm;
  32. $md-only: $md $lg;
  33. $lg-only: $lg $jumbo;
  34. $md-down: 0 $md;
  35. $xl-down: 0 $xl;
  36. $lg-down: 0 $lg;
  37. $jumbo-down: 0 $jumbo;
  38. $md-portrait: screen 0 $md (orientation landscape);
  39. $lg-portrait: screen (min-width $lg) (orientation landscape);
  40. $tablet-only: screen (min-width $md) (max-width $lg);
  41. //===================
  42. // Colors
  43. //===================
  44. $color-white: #FFF;
  45. $color-black: #000;
  46. //===================
  47. // Buttons
  48. //===================
  49. $button-padding: 8px 20px;
  50. $button-border-radius: 5px;
  51. $button-color: $color-black;
  52. //===================
  53. // Typography - Massive Typo Variables
  54. // https://github.com/fabean/massive-typo
  55. //===================
  56. $body-font-family: sans-serif;
  57. $body-font-size: 16px;
  58. $body-font-color: #0a0a0a;
  59. $body-line-height: 24px;
  60. $body-font-size-small: 0.85rem;
  61. $bold-font-weight: 700;
  62. // Headers
  63. $header-font-breakpoint: $md;
  64. $header-font-family: serif;
  65. $h1-size-small: 24px;
  66. $h1-size-medium: 48px;
  67. $h2-size-small: 20px;
  68. $h2-size-medium: 40px;
  69. $h3-size-small: 19px;
  70. $h3-size-medium: 31px;
  71. $h4-size-small: 18px;
  72. $h4-size-medium: 25px;
  73. $h5-size-small: 17px;
  74. $h5-size-medium: 20px;
  75. $h6-size-small: 16px;
  76. $h6-size-medium: $h6-size-small;
  77. // Code
  78. $code-font-family: monospace;
  79. $code-font-size: 0.9rem;
  80. $code-font-color: #0a0a0a;
  81. $code-background-color: #e6e6e6;
  82. $code-padding: 2px 4px;
  83. $code-border-radius: 4px;
  84. $code-border: 1px solid #cacaca;
  85. // Links
  86. $link-font-color: #337ab7;
  87. $link-font-hover-color: #23527c;
  88. $link-show-underline: false;
  89. $link-show-underline-hover: true;
  90. // Highlight <mark>
  91. $font-highlight-background: #fcf8e3;
  92. $font-highlight-padding: 0.2rem;
  93. // Blockquote
  94. $blockquote-margin: 32px 0;
  95. $blockquote-padding: 8px 16px;
  96. $blockquote-font-size: $body-font-size;
  97. $blockquote-border: 1px solid #DDDDDD;
  98. $blockquote-font-color: #6f6f6f;
  99. $blockquote-cite-font-size: 12px;
  100. $blockquote-cite-font-color: #555555;
  101. //===================
  102. // Cards
  103. //===================
  104. $card-shadow: 0 2px 4px rgba(0, 0, 0, 0.33);