You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

872 lines
27 KiB

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