No Description

_variables.scss 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872
  1. $bootstrap-sass-asset-helper: false !default;
  2. //
  3. // Variables
  4. // --------------------------------------------------
  5. //== Colors
  6. //
  7. //## Gray and brand colors for use across Bootstrap.
  8. $gray-base: #000 !default;
  9. $gray-darker: lighten($gray-base, 13.5%) !default; // #222
  10. $gray-dark: lighten($gray-base, 20%) !default; // #333
  11. $gray: lighten($gray-base, 33.5%) !default; // #555
  12. $gray-light: lighten($gray-base, 46.7%) !default; // #777
  13. $gray-lighter: lighten($gray-base, 93.5%) !default; // #eee
  14. $brand-primary: darken(#428bca, 6.5%) !default; // #337ab7
  15. $brand-success: #5cb85c !default;
  16. $brand-info: #5bc0de !default;
  17. $brand-warning: #f0ad4e !default;
  18. $brand-danger: #d9534f !default;
  19. //== Scaffolding
  20. //
  21. //## Settings for some of the most global styles.
  22. //** Background color for `<body>`.
  23. $body-bg: #fff !default;
  24. //** Global text color on `<body>`.
  25. $text-color: $gray-dark !default;
  26. //** Global textual link color.
  27. $link-color: $brand-primary !default;
  28. //** Link hover color set via `darken()` function.
  29. $link-hover-color: darken($link-color, 15%) !default;
  30. //** Link hover decoration.
  31. $link-hover-decoration: underline !default;
  32. //== Typography
  33. //
  34. //## Font, line-height, and color for body text, headings, and more.
  35. $font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
  36. $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
  37. //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
  38. $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
  39. $font-family-base: $font-family-sans-serif !default;
  40. $font-size-base: 14px !default;
  41. $font-size-large: ceil(($font-size-base * 1.25)) !default; // ~18px
  42. $font-size-small: ceil(($font-size-base * 0.85)) !default; // ~12px
  43. $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
  44. $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
  45. $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
  46. $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
  47. $font-size-h5: $font-size-base !default;
  48. $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
  49. //** Unit-less `line-height` for use in components like buttons.
  50. $line-height-base: 1.428571429 !default; // 20/14
  51. //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
  52. $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
  53. //** By default, this inherits from the `<body>`.
  54. $headings-font-family: inherit !default;
  55. $headings-font-weight: 500 !default;
  56. $headings-line-height: 1.1 !default;
  57. $headings-color: inherit !default;
  58. //== Iconography
  59. //
  60. //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
  61. //** Load fonts from this directory.
  62. // [converter] If $bootstrap-sass-asset-helper if used, provide path relative to the assets load path.
  63. // [converter] This is because some asset helpers, such as Sprockets, do not work with file-relative paths.
  64. $icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") !default;
  65. //** File name for all font files.
  66. $icon-font-name: "glyphicons-halflings-regular" !default;
  67. //** Element ID within SVG icon file.
  68. $icon-font-svg-id: "glyphicons_halflingsregular" !default;
  69. //== Components
  70. //
  71. //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
  72. $padding-base-vertical: 10px !default;
  73. $padding-base-horizontal: 20px !default;
  74. $padding-large-vertical: 10px !default;
  75. $padding-large-horizontal: 20px !default;
  76. $padding-small-vertical: 5px !default;
  77. $padding-small-horizontal: 20px !default;
  78. $padding-xs-vertical: 1px !default;
  79. $padding-xs-horizontal: 5px !default;
  80. $line-height-large: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
  81. $line-height-small: 1.5 !default;
  82. $border-radius-base: 4px !default;
  83. $border-radius-large: 6px !default;
  84. $border-radius-small: 3px !default;
  85. //** Global color for active items (e.g., navs or dropdowns).
  86. $component-active-color: #fff !default;
  87. //** Global background color for active items (e.g., navs or dropdowns).
  88. $component-active-bg: $brand-primary !default;
  89. //** Width of the `border` for generating carets that indicator dropdowns.
  90. $caret-width-base: 4px !default;
  91. //** Carets increase slightly in size for larger components.
  92. $caret-width-large: 5px !default;
  93. //== Tables
  94. //
  95. //## Customizes the `.table` component with basic values, each used across all table variations.
  96. //** Padding for `<th>`s and `<td>`s.
  97. $table-cell-padding: 8px !default;
  98. //** Padding for cells in `.table-condensed`.
  99. $table-condensed-cell-padding: 5px !default;
  100. //** Default background color used for all tables.
  101. $table-bg: transparent !default;
  102. //** Background color used for `.table-striped`.
  103. $table-bg-accent: #f9f9f9 !default;
  104. //** Background color used for `.table-hover`.
  105. $table-bg-hover: #f5f5f5 !default;
  106. $table-bg-active: $table-bg-hover !default;
  107. //** Border color for table and cell borders.
  108. $table-border-color: #ddd !default;
  109. //== Buttons
  110. //
  111. //## For each of Bootstrap's buttons, define text, background and border color.
  112. $btn-font-weight: normal !default;
  113. $btn-default-color: #333 !default;
  114. $btn-default-bg: #fff !default;
  115. $btn-default-border: #ccc !default;
  116. $btn-primary-color: #fff !default;
  117. $btn-primary-bg: $brand-primary !default;
  118. $btn-primary-border: darken($btn-primary-bg, 5%) !default;
  119. $btn-success-color: #fff !default;
  120. $btn-success-bg: $brand-success !default;
  121. $btn-success-border: darken($btn-success-bg, 5%) !default;
  122. $btn-info-color: #fff !default;
  123. $btn-info-bg: $brand-info !default;
  124. $btn-info-border: darken($btn-info-bg, 5%) !default;
  125. $btn-warning-color: #fff !default;
  126. $btn-warning-bg: $brand-warning !default;
  127. $btn-warning-border: darken($btn-warning-bg, 5%) !default;
  128. $btn-danger-color: #fff !default;
  129. $btn-danger-bg: $brand-danger !default;
  130. $btn-danger-border: darken($btn-danger-bg, 5%) !default;
  131. $btn-link-disabled-color: $gray-light !default;
  132. // Allows for customizing button radius independently from global border radius
  133. $btn-border-radius-base: $border-radius-base !default;
  134. $btn-border-radius-large: $border-radius-large !default;
  135. $btn-border-radius-small: $border-radius-small !default;
  136. //== Forms
  137. //
  138. //##
  139. //** `<input>` background color
  140. $input-bg: #fff !default;
  141. //** `<input disabled>` background color
  142. $input-bg-disabled: $gray-lighter !default;
  143. //** Text color for `<input>`s
  144. $input-color: $gray !default;
  145. //** `<input>` border color
  146. $input-border: #ccc !default;
  147. // TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4
  148. //** Default `.form-control` border radius
  149. // This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
  150. $input-border-radius: $border-radius-base !default;
  151. //** Large `.form-control` border radius
  152. $input-border-radius-large: $border-radius-large !default;
  153. //** Small `.form-control` border radius
  154. $input-border-radius-small: $border-radius-small !default;
  155. //** Border color for inputs on focus
  156. $input-border-focus: #66afe9 !default;
  157. //** Placeholder text color
  158. $input-color-placeholder: #999 !default;
  159. //** Default `.form-control` height
  160. $input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2) !default;
  161. //** Large `.form-control` height
  162. $input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2) !default;
  163. //** Small `.form-control` height
  164. $input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2) !default;
  165. //** `.form-group` margin
  166. $form-group-margin-bottom: 15px !default;
  167. $legend-color: $gray-dark !default;
  168. $legend-border-color: #e5e5e5 !default;
  169. //** Background color for textual input addons
  170. $input-group-addon-bg: $gray-lighter !default;
  171. //** Border color for textual input addons
  172. $input-group-addon-border-color: $input-border !default;
  173. //** Disabled cursor for form controls and buttons.
  174. $cursor-disabled: not-allowed !default;
  175. //== Dropdowns
  176. //
  177. //## Dropdown menu container and contents.
  178. //** Background for the dropdown menu.
  179. $dropdown-bg: #fff !default;
  180. //** Dropdown menu `border-color`.
  181. $dropdown-border: rgba(0,0,0,.15) !default;
  182. //** Dropdown menu `border-color` **for IE8**.
  183. $dropdown-fallback-border: #ccc !default;
  184. //** Divider color for between dropdown items.
  185. $dropdown-divider-bg: #e5e5e5 !default;
  186. //** Dropdown link text color.
  187. $dropdown-link-color: $gray-dark !default;
  188. //** Hover color for dropdown links.
  189. $dropdown-link-hover-color: darken($gray-dark, 5%) !default;
  190. //** Hover background for dropdown links.
  191. $dropdown-link-hover-bg: #f5f5f5 !default;
  192. //** Active dropdown menu item text color.
  193. $dropdown-link-active-color: $component-active-color !default;
  194. //** Active dropdown menu item background color.
  195. $dropdown-link-active-bg: $component-active-bg !default;
  196. //** Disabled dropdown menu item background color.
  197. $dropdown-link-disabled-color: $gray-light !default;
  198. //** Text color for headers within dropdown menus.
  199. $dropdown-header-color: $gray-light !default;
  200. //** Deprecated `$dropdown-caret-color` as of v3.1.0
  201. $dropdown-caret-color: #000 !default;
  202. //-- Z-index master list
  203. //
  204. // Warning: Avoid customizing these values. They're used for a bird's eye view
  205. // of components dependent on the z-axis and are designed to all work together.
  206. //
  207. // Note: These variables are not generated into the Customizer.
  208. $zindex-navbar: 1000 !default;
  209. $zindex-dropdown: 1000 !default;
  210. $zindex-popover: 1060 !default;
  211. $zindex-tooltip: 1070 !default;
  212. $zindex-navbar-fixed: 1030 !default;
  213. $zindex-modal-background: 1040 !default;
  214. $zindex-modal: 1050 !default;
  215. //== Media queries breakpoints
  216. //
  217. //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
  218. // Extra small screen / phone
  219. //** Deprecated `$screen-xs` as of v3.0.1
  220. $screen-xs: 480px !default;
  221. //** Deprecated `$screen-xs-min` as of v3.2.0
  222. $screen-xs-min: $screen-xs !default;
  223. //** Deprecated `$screen-phone` as of v3.0.1
  224. $screen-phone: $screen-xs-min !default;
  225. // Small screen / tablet
  226. //** Deprecated `$screen-sm` as of v3.0.1
  227. $screen-sm: 768px !default;
  228. $screen-sm-min: $screen-sm !default;
  229. //** Deprecated `$screen-tablet` as of v3.0.1
  230. $screen-tablet: $screen-sm-min !default;
  231. // Medium screen / desktop
  232. //** Deprecated `$screen-md` as of v3.0.1
  233. $screen-md: 992px !default;
  234. $screen-md-min: $screen-md !default;
  235. //** Deprecated `$screen-desktop` as of v3.0.1
  236. $screen-desktop: $screen-md-min !default;
  237. // Large screen / wide desktop
  238. //** Deprecated `$screen-lg` as of v3.0.1
  239. $screen-lg: 1200px !default;
  240. $screen-lg-min: $screen-lg !default;
  241. //** Deprecated `$screen-lg-desktop` as of v3.0.1
  242. $screen-lg-desktop: $screen-lg-min !default;
  243. // So media queries don't overlap when required, provide a maximum
  244. $screen-xs-max: ($screen-sm-min - 1) !default;
  245. $screen-sm-max: ($screen-md-min - 1) !default;
  246. $screen-md-max: ($screen-lg-min - 1) !default;
  247. //== Grid system
  248. //
  249. //## Define your custom responsive grid.
  250. //** Number of columns in the grid.
  251. $grid-columns: 12 !default;
  252. //** Padding between columns. Gets divided in half for the left and right.
  253. $grid-gutter-width: 30px !default;
  254. // Navbar collapse
  255. //** Point at which the navbar becomes uncollapsed.
  256. $grid-float-breakpoint: $screen-sm-min !default;
  257. //** Point at which the navbar begins collapsing.
  258. $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
  259. //== Container sizes
  260. //
  261. //## Define the maximum width of `.container` for different screen sizes.
  262. // Small screen / tablet
  263. $container-tablet: (720px + $grid-gutter-width) !default;
  264. //** For `$screen-sm-min` and up.
  265. $container-sm: $container-tablet !default;
  266. // Medium screen / desktop
  267. $container-desktop: (940px + $grid-gutter-width) !default;
  268. //** For `$screen-md-min` and up.
  269. $container-md: $container-desktop !default;
  270. // Large screen / wide desktop
  271. $container-large-desktop: (1140px + $grid-gutter-width) !default;
  272. //** For `$screen-lg-min` and up.
  273. $container-lg: $container-large-desktop !default;
  274. //== Navbar
  275. //
  276. //##
  277. // Basics of a navbar
  278. $navbar-height: 55px !default;
  279. $navbar-margin-bottom: $line-height-computed !default;
  280. $navbar-border-radius: $border-radius-base !default;
  281. $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
  282. $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
  283. $navbar-collapse-max-height: 340px !default;
  284. $navbar-default-color: #777 !default;
  285. $navbar-default-bg: #f8f8f8 !default;
  286. $navbar-default-border: darken($navbar-default-bg, 6.5%) !default;
  287. // Navbar links
  288. $navbar-default-link-color: #777 !default;
  289. $navbar-default-link-hover-color: #333 !default;
  290. $navbar-default-link-hover-bg: transparent !default;
  291. $navbar-default-link-active-color: #555 !default;
  292. $navbar-default-link-active-bg: darken($navbar-default-bg, 6.5%) !default;
  293. $navbar-default-link-disabled-color: #ccc !default;
  294. $navbar-default-link-disabled-bg: transparent !default;
  295. // Navbar brand label
  296. $navbar-default-brand-color: $navbar-default-link-color !default;
  297. $navbar-default-brand-hover-color: darken($navbar-default-brand-color, 10%) !default;
  298. $navbar-default-brand-hover-bg: transparent !default;
  299. // Navbar toggle
  300. $navbar-default-toggle-hover-bg: #ddd !default;
  301. $navbar-default-toggle-icon-bar-bg: #888 !default;
  302. $navbar-default-toggle-border-color: #ddd !default;
  303. //=== Inverted navbar
  304. // Reset inverted navbar basics
  305. $navbar-inverse-color: lighten($gray-light, 15%) !default;
  306. $navbar-inverse-bg: #222 !default;
  307. $navbar-inverse-border: darken($navbar-inverse-bg, 10%) !default;
  308. // Inverted navbar links
  309. $navbar-inverse-link-color: lighten($gray-light, 15%) !default;
  310. $navbar-inverse-link-hover-color: #fff !default;
  311. $navbar-inverse-link-hover-bg: transparent !default;
  312. $navbar-inverse-link-active-color: $navbar-inverse-link-hover-color !default;
  313. $navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 10%) !default;
  314. $navbar-inverse-link-disabled-color: #444 !default;
  315. $navbar-inverse-link-disabled-bg: transparent !default;
  316. // Inverted navbar brand label
  317. $navbar-inverse-brand-color: $navbar-inverse-link-color !default;
  318. $navbar-inverse-brand-hover-color: #fff !default;
  319. $navbar-inverse-brand-hover-bg: transparent !default;
  320. // Inverted navbar toggle
  321. $navbar-inverse-toggle-hover-bg: #333 !default;
  322. $navbar-inverse-toggle-icon-bar-bg: #fff !default;
  323. $navbar-inverse-toggle-border-color: #333 !default;
  324. //== Navs
  325. //
  326. //##
  327. //=== Shared nav styles
  328. $nav-link-padding: 10px 15px !default;
  329. $nav-link-hover-bg: $gray-lighter !default;
  330. $nav-disabled-link-color: $gray-light !default;
  331. $nav-disabled-link-hover-color: $gray-light !default;
  332. //== Tabs
  333. $nav-tabs-border-color: #ddd !default;
  334. $nav-tabs-link-hover-border-color: $gray-lighter !default;
  335. $nav-tabs-active-link-hover-bg: $body-bg !default;
  336. $nav-tabs-active-link-hover-color: $gray !default;
  337. $nav-tabs-active-link-hover-border-color: #ddd !default;
  338. $nav-tabs-justified-link-border-color: #ddd !default;
  339. $nav-tabs-justified-active-link-border-color: $body-bg !default;
  340. //== Pills
  341. $nav-pills-border-radius: $border-radius-base !default;
  342. $nav-pills-active-link-hover-bg: $component-active-bg !default;
  343. $nav-pills-active-link-hover-color: $component-active-color !default;
  344. //== Pagination
  345. //
  346. //##
  347. $pagination-color: $link-color !default;
  348. $pagination-bg: #fff !default;
  349. $pagination-border: #ddd !default;
  350. $pagination-hover-color: $link-hover-color !default;
  351. $pagination-hover-bg: $gray-lighter !default;
  352. $pagination-hover-border: #ddd !default;
  353. $pagination-active-color: #fff !default;
  354. $pagination-active-bg: $brand-primary !default;
  355. $pagination-active-border: $brand-primary !default;
  356. $pagination-disabled-color: $gray-light !default;
  357. $pagination-disabled-bg: #fff !default;
  358. $pagination-disabled-border: #ddd !default;
  359. //== Pager
  360. //
  361. //##
  362. $pager-bg: $pagination-bg !default;
  363. $pager-border: $pagination-border !default;
  364. $pager-border-radius: 15px !default;
  365. $pager-hover-bg: $pagination-hover-bg !default;
  366. $pager-active-bg: $pagination-active-bg !default;
  367. $pager-active-color: $pagination-active-color !default;
  368. $pager-disabled-color: $pagination-disabled-color !default;
  369. //== Jumbotron
  370. //
  371. //##
  372. $jumbotron-padding: 30px !default;
  373. $jumbotron-color: inherit !default;
  374. $jumbotron-bg: $gray-lighter !default;
  375. $jumbotron-heading-color: inherit !default;
  376. $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
  377. $jumbotron-heading-font-size: ceil(($font-size-base * 4.5)) !default;
  378. //== Form states and alerts
  379. //
  380. //## Define colors for form feedback states and, by default, alerts.
  381. $state-success-text: #3c763d !default;
  382. $state-success-bg: #dff0d8 !default;
  383. $state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
  384. $state-info-text: #31708f !default;
  385. $state-info-bg: #d9edf7 !default;
  386. $state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
  387. $state-warning-text: #8a6d3b !default;
  388. $state-warning-bg: #fcf8e3 !default;
  389. $state-warning-border: darken(adjust-hue($state-warning-bg, -10), 5%) !default;
  390. $state-danger-text: #a94442 !default;
  391. $state-danger-bg: #f2dede !default;
  392. $state-danger-border: darken(adjust-hue($state-danger-bg, -10), 5%) !default;
  393. //== Tooltips
  394. //
  395. //##
  396. //** Tooltip max width
  397. $tooltip-max-width: 200px !default;
  398. //** Tooltip text color
  399. $tooltip-color: #fff !default;
  400. //** Tooltip background color
  401. $tooltip-bg: #000 !default;
  402. $tooltip-opacity: .9 !default;
  403. //** Tooltip arrow width
  404. $tooltip-arrow-width: 5px !default;
  405. //** Tooltip arrow color
  406. $tooltip-arrow-color: $tooltip-bg !default;
  407. //== Popovers
  408. //
  409. //##
  410. //** Popover body background color
  411. $popover-bg: #fff !default;
  412. //** Popover maximum width
  413. $popover-max-width: 276px !default;
  414. //** Popover border color
  415. $popover-border-color: rgba(0,0,0,.2) !default;
  416. //** Popover fallback border color
  417. $popover-fallback-border-color: #ccc !default;
  418. //** Popover title background color
  419. $popover-title-bg: darken($popover-bg, 3%) !default;
  420. //** Popover arrow width
  421. $popover-arrow-width: 10px !default;
  422. //** Popover arrow color
  423. $popover-arrow-color: $popover-bg !default;
  424. //** Popover outer arrow width
  425. $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
  426. //** Popover outer arrow color
  427. $popover-arrow-outer-color: fade_in($popover-border-color, 0.05) !default;
  428. //** Popover outer arrow fallback color
  429. $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
  430. //== Labels
  431. //
  432. //##
  433. //** Default label background color
  434. $label-default-bg: $gray-light !default;
  435. //** Primary label background color
  436. $label-primary-bg: $brand-primary !default;
  437. //** Success label background color
  438. $label-success-bg: $brand-success !default;
  439. //** Info label background color
  440. $label-info-bg: $brand-info !default;
  441. //** Warning label background color
  442. $label-warning-bg: $brand-warning !default;
  443. //** Danger label background color
  444. $label-danger-bg: $brand-danger !default;
  445. //** Default label text color
  446. $label-color: #fff !default;
  447. //** Default text color of a linked label
  448. $label-link-hover-color: #fff !default;
  449. //== Modals
  450. //
  451. //##
  452. //** Padding applied to the modal body
  453. $modal-inner-padding: 15px !default;
  454. //** Padding applied to the modal title
  455. $modal-title-padding: 15px !default;
  456. //** Modal title line-height
  457. $modal-title-line-height: $line-height-base !default;
  458. //** Background color of modal content area
  459. $modal-content-bg: #fff !default;
  460. //** Modal content border color
  461. $modal-content-border-color: rgba(0,0,0,.2) !default;
  462. //** Modal content border color **for IE8**
  463. $modal-content-fallback-border-color: #999 !default;
  464. //** Modal backdrop background color
  465. $modal-backdrop-bg: #000 !default;
  466. //** Modal backdrop opacity
  467. $modal-backdrop-opacity: .5 !default;
  468. //** Modal header border color
  469. $modal-header-border-color: #e5e5e5 !default;
  470. //** Modal footer border color
  471. $modal-footer-border-color: $modal-header-border-color !default;
  472. $modal-lg: 900px !default;
  473. $modal-md: 600px !default;
  474. $modal-sm: 300px !default;
  475. //== Alerts
  476. //
  477. //## Define alert colors, border radius, and padding.
  478. $alert-padding: 15px !default;
  479. $alert-border-radius: $border-radius-base !default;
  480. $alert-link-font-weight: bold !default;
  481. $alert-success-bg: $state-success-bg !default;
  482. $alert-success-text: $state-success-text !default;
  483. $alert-success-border: $state-success-border !default;
  484. $alert-info-bg: $state-info-bg !default;
  485. $alert-info-text: $state-info-text !default;
  486. $alert-info-border: $state-info-border !default;
  487. $alert-warning-bg: $state-warning-bg !default;
  488. $alert-warning-text: $state-warning-text !default;
  489. $alert-warning-border: $state-warning-border !default;
  490. $alert-danger-bg: $state-danger-bg !default;
  491. $alert-danger-text: $state-danger-text !default;
  492. $alert-danger-border: $state-danger-border !default;
  493. //== Progress bars
  494. //
  495. //##
  496. //** Background color of the whole progress component
  497. $progress-bg: #f5f5f5 !default;
  498. //** Progress bar text color
  499. $progress-bar-color: #fff !default;
  500. //** Variable for setting rounded corners on progress bar.
  501. $progress-border-radius: $border-radius-base !default;
  502. //** Default progress bar color
  503. $progress-bar-bg: $brand-primary !default;
  504. //** Success progress bar color
  505. $progress-bar-success-bg: $brand-success !default;
  506. //** Warning progress bar color
  507. $progress-bar-warning-bg: $brand-warning !default;
  508. //** Danger progress bar color
  509. $progress-bar-danger-bg: $brand-danger !default;
  510. //** Info progress bar color
  511. $progress-bar-info-bg: $brand-info !default;
  512. //== List group
  513. //
  514. //##
  515. //** Background color on `.list-group-item`
  516. $list-group-bg: #fff !default;
  517. //** `.list-group-item` border color
  518. $list-group-border: #ddd !default;
  519. //** List group border radius
  520. $list-group-border-radius: $border-radius-base !default;
  521. //** Background color of single list items on hover
  522. $list-group-hover-bg: #f5f5f5 !default;
  523. //** Text color of active list items
  524. $list-group-active-color: $component-active-color !default;
  525. //** Background color of active list items
  526. $list-group-active-bg: $component-active-bg !default;
  527. //** Border color of active list elements
  528. $list-group-active-border: $list-group-active-bg !default;
  529. //** Text color for content within active list items
  530. $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
  531. //** Text color of disabled list items
  532. $list-group-disabled-color: $gray-light !default;
  533. //** Background color of disabled list items
  534. $list-group-disabled-bg: $gray-lighter !default;
  535. //** Text color for content within disabled list items
  536. $list-group-disabled-text-color: $list-group-disabled-color !default;
  537. $list-group-link-color: #555 !default;
  538. $list-group-link-hover-color: $list-group-link-color !default;
  539. $list-group-link-heading-color: #333 !default;
  540. //== Panels
  541. //
  542. //##
  543. $panel-bg: #fff !default;
  544. $panel-body-padding: 15px !default;
  545. $panel-heading-padding: 10px 15px !default;
  546. $panel-footer-padding: $panel-heading-padding !default;
  547. $panel-border-radius: $border-radius-base !default;
  548. //** Border color for elements within panels
  549. $panel-inner-border: #ddd !default;
  550. $panel-footer-bg: #f5f5f5 !default;
  551. $panel-default-text: $gray-dark !default;
  552. $panel-default-border: #ddd !default;
  553. $panel-default-heading-bg: #f5f5f5 !default;
  554. $panel-primary-text: #fff !default;
  555. $panel-primary-border: $brand-primary !default;
  556. $panel-primary-heading-bg: $brand-primary !default;
  557. $panel-success-text: $state-success-text !default;
  558. $panel-success-border: $state-success-border !default;
  559. $panel-success-heading-bg: $state-success-bg !default;
  560. $panel-info-text: $state-info-text !default;
  561. $panel-info-border: $state-info-border !default;
  562. $panel-info-heading-bg: $state-info-bg !default;
  563. $panel-warning-text: $state-warning-text !default;
  564. $panel-warning-border: $state-warning-border !default;
  565. $panel-warning-heading-bg: $state-warning-bg !default;
  566. $panel-danger-text: $state-danger-text !default;
  567. $panel-danger-border: $state-danger-border !default;
  568. $panel-danger-heading-bg: $state-danger-bg !default;
  569. //== Thumbnails
  570. //
  571. //##
  572. //** Padding around the thumbnail image
  573. $thumbnail-padding: 4px !default;
  574. //** Thumbnail background color
  575. $thumbnail-bg: $body-bg !default;
  576. //** Thumbnail border color
  577. $thumbnail-border: #ddd !default;
  578. //** Thumbnail border radius
  579. $thumbnail-border-radius: $border-radius-base !default;
  580. //** Custom text color for thumbnail captions
  581. $thumbnail-caption-color: $text-color !default;
  582. //** Padding around the thumbnail caption
  583. $thumbnail-caption-padding: 9px !default;
  584. //== Wells
  585. //
  586. //##
  587. $well-bg: #f5f5f5 !default;
  588. $well-border: darken($well-bg, 7%) !default;
  589. //== Badges
  590. //
  591. //##
  592. $badge-color: #fff !default;
  593. //** Linked badge text color on hover
  594. $badge-link-hover-color: #fff !default;
  595. $badge-bg: $gray-light !default;
  596. //** Badge text color in active nav link
  597. $badge-active-color: $link-color !default;
  598. //** Badge background color in active nav link
  599. $badge-active-bg: #fff !default;
  600. $badge-font-weight: bold !default;
  601. $badge-line-height: 1 !default;
  602. $badge-border-radius: 10px !default;
  603. //== Breadcrumbs
  604. //
  605. //##
  606. $breadcrumb-padding-vertical: 8px !default;
  607. $breadcrumb-padding-horizontal: 15px !default;
  608. //** Breadcrumb background color
  609. $breadcrumb-bg: #f5f5f5 !default;
  610. //** Breadcrumb text color
  611. $breadcrumb-color: #ccc !default;
  612. //** Text color of current page in the breadcrumb
  613. $breadcrumb-active-color: $gray-light !default;
  614. //** Textual separator for between breadcrumb elements
  615. $breadcrumb-separator: "/" !default;
  616. //== Carousel
  617. //
  618. //##
  619. $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
  620. $carousel-control-color: #fff !default;
  621. $carousel-control-width: 15% !default;
  622. $carousel-control-opacity: .5 !default;
  623. $carousel-control-font-size: 20px !default;
  624. $carousel-indicator-active-bg: #fff !default;
  625. $carousel-indicator-border-color: #fff !default;
  626. $carousel-caption-color: #fff !default;
  627. //== Close
  628. //
  629. //##
  630. $close-font-weight: bold !default;
  631. $close-color: #000 !default;
  632. $close-text-shadow: 0 1px 0 #fff !default;
  633. //== Code
  634. //
  635. //##
  636. $code-color: #c7254e !default;
  637. $code-bg: #f9f2f4 !default;
  638. $kbd-color: #fff !default;
  639. $kbd-bg: #333 !default;
  640. $pre-bg: #f5f5f5 !default;
  641. $pre-color: $gray-dark !default;
  642. $pre-border-color: #ccc !default;
  643. $pre-scrollable-max-height: 340px !default;
  644. //== Type
  645. //
  646. //##
  647. //** Horizontal offset for forms and lists.
  648. $component-offset-horizontal: 180px !default;
  649. //** Text muted color
  650. $text-muted: $gray-light !default;
  651. //** Abbreviations and acronyms border color
  652. $abbr-border-color: $gray-light !default;
  653. //** Headings small color
  654. $headings-small-color: $gray-light !default;
  655. //** Blockquote small color
  656. $blockquote-small-color: $gray-light !default;
  657. //** Blockquote font size
  658. $blockquote-font-size: ($font-size-base * 1.25) !default;
  659. //** Blockquote border color
  660. $blockquote-border-color: $gray-lighter !default;
  661. //** Page header border color
  662. $page-header-border-color: $gray-lighter !default;
  663. //** Width of horizontal description list titles
  664. $dl-horizontal-offset: $component-offset-horizontal !default;
  665. //** Horizontal line color.
  666. $hr-border: $gray-lighter !default;