| 1 |
/** |
| 2 |
* GAPS for Grid, Buttons, Instagram, Pricing Table. |
| 3 |
*/ |
| 4 |
$grid-gaps: ( |
| 5 |
no: 0%, |
| 6 |
sm: 15px, |
| 7 |
md: 30px, |
| 8 |
lg: 45px |
| 9 |
) !default; |
| 10 |
|
| 11 |
// Breakpoints. |
| 12 |
$media-xs: 576px !default; |
| 13 |
$media-sm: 768px !default; |
| 14 |
$media-md: 992px !default; |
| 15 |
$media-lg: 1200px !default; |
| 16 |
|
| 17 |
/** |
| 18 |
* Bootstrap. |
| 19 |
*/ |
| 20 |
@import "./bootstrap/functions"; |
| 21 |
@import "./bootstrap/variables"; |
| 22 |
@import "./bootstrap/grid"; |
| 23 |
@import "./bootstrap/breakpoints"; |
| 24 |
|
| 25 |
/** |
| 26 |
* WordPress. |
| 27 |
*/ |
| 28 |
/* stylelint-disable-next-line scss/at-import-partial-extension */ |
| 29 |
@import "./wordpress/base-styles/colors.native"; |
| 30 |
@import "./wordpress/base-styles/variables"; |
| 31 |
@import "./wordpress/base-styles/breakpoints"; |
| 32 |
@import "./wordpress/base-styles/mixins"; |
| 33 |
|
| 34 |
// Main Colors. |
| 35 |
$color-brand: #2e1645 !default; |
| 36 |
$color-dark-gray: #32373c !default; |
| 37 |
$color-light-gray: #f3f4f5 !default; |
| 38 |
$color-light-gray-darken: #d7dbde !default; |
| 39 |
|
| 40 |
// Additional Colors. |
| 41 |
$color-primary: #0366d6 !default; |
| 42 |
$color-success: #4ab866 !default; |
| 43 |
$color-danger: #d94f4f !default; |
| 44 |
$color-warning: #f0b849 !default; |
| 45 |
$color-info: #2ebef5 !default; |
| 46 |
|