logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

variables.less (26225B)


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