Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | //## Bootstrap |
| 2 | // |
||
| 3 | // Core bootstrap variables and mixins |
||
| 4 | @import "colors"; |
||
| 5 | |||
| 6 | @import "../bootstrap/variables"; |
||
| 7 | @import "../bootstrap/mixins"; |
||
| 8 | |||
| 9 | $direction: 'ltr' !default; |
||
| 10 | $theme-style: 'square' !default; |
||
| 11 | $theme-type: 'default' !default; |
||
| 12 | |||
| 13 | //## Typography |
||
| 14 | // |
||
| 15 | // Font, line-height, and color for body text, headings, and more. |
||
| 16 | |||
| 17 | $font-family-primary: "Open Sans", sans-serif !default; |
||
| 18 | $font-family-nav: Roboto, sans-serif !default; |
||
| 19 | $font-family-default: "Helvetica Neue", Helvetica, Arial, sans-serif !default; |
||
| 20 | |||
| 21 | $general-heading-color: #3f444a; |
||
| 22 | $general-text-color: darken(#677581, 5%); |
||
| 23 | $general-transition: all 0.3s; |
||
| 24 | |||
| 25 | // Global text color on <body> |
||
| 26 | $text-color: #333333 !default; |
||
| 27 | |||
| 28 | // Global light text color on <body> |
||
| 29 | $text-light-color: #ffffff !default; |
||
| 30 | |||
| 31 | // Global muted text color on <body> |
||
| 32 | $text-muted-color: #444444 !default; |
||
| 33 | |||
| 34 | // Global textual link color. |
||
| 35 | $link-color: #5b9bd1 !default; |
||
| 36 | |||
| 37 | // Link hover color. |
||
| 38 | $link-hover-color: darken($link-color, 15%) !default; |
||
| 39 | |||
| 40 | $primary-link-color: #65A0D0 !default; |
||
| 41 | |||
| 42 | $general-border-radius: 4px !default; |
||
| 43 | |||
| 44 | @if $theme-type == "material-design" { |
||
| 45 | $general-border-radius: 2px !global; |
||
| 46 | } |
||
| 47 | |||
| 48 | $dropdown-shadow: 5px 5px rgba(#666, 0.1); |
||
| 49 | $icon-size-normal: 14px !default; |
||
| 50 | $brand-default: lighten(#b7c0ce, 1%) !default; |
||
| 51 | $general-panel-bg-color: #f1f4f7 !default; |
||
| 52 | $general-panel-border-color: darken(#f1f4f7, 3%) !default; |
||
| 53 | $general-panel-font-color: #3f444a !default; |
||
| 54 | $general-shadow: 0px 2px 3px 2px rgba(0, 0, 0, 0.03); |
||
| 55 | $general-icon-color: darken($general-panel-bg-color, 15%); |
||
| 56 | $page-content-solid-bg-color: darken($general-panel-bg-color, 1%) !default; // content solid bg color. default:#F0F2F7. |
||
| 57 | |||
| 58 | //## Z-index master list |
||
| 59 | // |
||
| 60 | |||
| 61 | $zindex-navbar: 9995; |
||
| 62 | $zindex-navbar-above: 9999; |
||
| 63 | $zindex-dropdown: 1000; |
||
| 64 | $zindex-popover: 1010; |
||
| 65 | $zindex-tooltip: 1030; |
||
| 66 | $zindex-navbar-fixed: 1030; |
||
| 67 | $zindex-modal-background: 10049; |
||
| 68 | $zindex-modal: 10050; |
||
| 69 | $zindex-top: 10100; |
||
| 70 | |||
| 71 | //== Media queries breakpoints |
||
| 72 | // |
||
| 73 | //Define the breakpoints at which your layout will change, adapting to different screen sizes. |
||
| 74 | |||
| 75 | // Extra small screen / phone |
||
| 76 | $screen-xs-min: 480px !default; |
||
| 77 | |||
| 78 | // Small screen / tablet |
||
| 79 | $screen-sm-min: 768px !default; |
||
| 80 | |||
| 81 | // Medium screen / desktop |
||
| 82 | $screen-md-min: 992px !default; |
||
| 83 | |||
| 84 | // Large screen / wide desktop |
||
| 85 | $screen-lg-min: 1200px !default; |
||
| 86 | |||
| 87 | // Large scree / wider desktop |
||
| 88 | $screen-lg-med: 1260px !default; |
||
| 89 | |||
| 90 | // So media queries don't overlap when required, provide a maximum |
||
| 91 | $screen-xs-max: ($screen-sm-min - 1) !default; // 767px |
||
| 92 | $screen-sm-max: ($screen-md-min - 1) !default; // 991px |
||
| 93 | $screen-md-max: ($screen-lg-min - 1) !default; // 1199px |
||
| 94 | |||
| 95 | //## Image paths |
||
| 96 | $global-img-path: '../img/' !default; |
||
| 97 | $page-img-path: '../img/' !default; |
||
| 98 | $page-media-path: '../media/' !default; |
||
| 99 | |||
| 100 | @import "_bootstrap-override"; |