Advertisement
Guest User

css

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