1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
//== Colors
//
//## Gray and brand colors for use across Bootstrap.
$brand-primary: #00897b;
// If that blue isn't desired, then consider any of these other
//colors that are part of the Material Design Spec Color Palette
//$brand-primary: #627C7B;
//$brand-primary: #455a64;
//$brand-primary: #009688;
$gray-dark: #212121;
//== Iconography
//
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
//** Load fonts from this directory.
$icon-font-path: "../icons/fonts/";
//** File name for all font files.
$icon-font-name: "material";
//** Element ID within SVG icon file.
$icon-font-svg-id: "material";
//== Components
//
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
//== Navbar
//
//##
// Inverted navbar
// Inverted navbar links
$navbar-inverse-link-color: #fff;
$navbar-inverse-link-hover-color: $navbar-inverse-link-color;
// Inverted navbar brand label
$navbar-inverse-brand-hover-color: $navbar-inverse-link-color;
// Inverted Navbar toggle
$navbar-inverse-toggle-icon-bar-bg: $navbar-inverse-link-color;
//== Navs
//
//##
//=== Shared nav styles
$nav-link-padding: 15px 22px 15px 22px;
$nav-link-hover-bg: transparent;
$nav-disabled-link-color: $gray-dark;
$nav-disabled-link-hover-color: $gray-dark;
//== Modals
//
//##
// Give modals more room to breathe in -md space
$modal-md: 732px;
$modal-backdrop-opacity: .35 !default;
|