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.

829 lines
26 KiB

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