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.

858 lines
26KB

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