variables.scss
1 @import '~bootstrap-sass/assets/stylesheets/bootstrap/variables'; 2 @import './variables/colors'; 3 @import './variables/spacing'; 4 @import './variables/electron'; 5 @import './variables/grid'; 6 @import './variables/typography'; 7 @import './variables/transitions'; 8 @import './variables/tables'; 9 @import './variables/tooltips'; 10 @import './variables/zindex'; 11 12 // Misc. 13 $border-radius-small: 2px; 14 $border-radius-base: $border-radius-small; 15 $border-radius-large: $border-radius-small; 16 $input-border-radius: 2px; 17 $input-border-radius-small: $input-border-radius; 18 $input-border-radius-large: $input-border-radius; 19 $btn-border-radius: 2px; 20 21 $input-height-base: 3rem; 22 $input-height-large: 4rem; 23 $input-height-small: 2rem; 24 25 $input-border: color(control-border); 26 $input-color: color(control-color); 27 $input-group-addon-bg: color(control-addon-bg); 28 $input-group-addon-border-color: color(control-addon-bg); 29 30 $label-color: #fff; 31 $label-link-hover-color: #fff; 32 33 $link-hover-decoration: none; 34 35 $alert-padding: 1rem; 36 $alert-border-radius: $border-radius; 37 $alert-link-font-weight: bold; 38 39 $alert-success-bg: color(brand-success); 40 $alert-success-text: color(text-color-inverted); 41 $alert-success-border: $alert-success-bg; 42 43 $alert-info-bg: color(brand-primary); 44 $alert-info-text: color(text-color-inverted); 45 $alert-info-border: $alert-info-bg; 46 47 $alert-warning-bg: color(brand-warning); 48 $alert-warning-text: color(text-color-inverted); 49 $alert-warning-border: $alert-warning-bg; 50 51 $alert-danger-bg: color(brand-danger); 52 $alert-danger-text: color(text-color-inverted); 53 $alert-danger-border: $alert-danger-bg; 54 55 $well-bg: color(gray-lightest); 56 $well-border: color(gray-lighter); 57 58 $tab-box-shadow: 0 1px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0, 0, 0, 0.12); 59 60 $pre-bg: color(gray-lightest); 61 $pre-color: color(gray-dark); 62 $pre-border-color: color(gray-lighter); 63 $pre-scrollable-max-height: 23rem; 64 65 $component-offset-horizontal: 12rem; 66 $text-muted: color(gray-light); 67 $abbr-border-color: color(gray-light); 68 $headings-small-color: inherit; 69 $blockquote-small-color: color(gray-light); 70 $blockquote-font-size: ($font-size-base * 1.25); 71 $blockquote-border-color: color(gray-lighter); 72 $page-header-border-color: color(gray-lighter); 73 $dl-horizontal-offset: $component-offset-horizontal; 74 $dl-horizontal-breakpoint: $grid-float-breakpoint; 75 $hr-border: color(gray-lighter); 76 $dropdown-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);