2012-06-29 00:46:45 -04:00
|
|
|
//
|
|
|
|
// Variables
|
|
|
|
// --------------------------------------------------
|
2011-09-12 23:07:26 -04:00
|
|
|
|
|
|
|
|
2012-06-29 00:46:45 -04:00
|
|
|
// Global values
|
2012-01-18 03:12:58 -05:00
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-03-06 01:47:39 -05:00
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// Grays
|
2012-03-06 01:47:39 -05:00
|
|
|
// -------------------------
|
2012-01-18 03:12:58 -05:00
|
|
|
@black: #000;
|
2012-01-22 01:35:03 -05:00
|
|
|
@grayDarker: #222;
|
2012-01-18 03:12:58 -05:00
|
|
|
@grayDark: #333;
|
|
|
|
@gray: #555;
|
|
|
|
@grayLight: #999;
|
|
|
|
@grayLighter: #eee;
|
|
|
|
|
2012-03-06 01:47:39 -05:00
|
|
|
|
2012-03-05 03:29:16 -05:00
|
|
|
// Scaffolding
|
2012-03-06 01:47:39 -05:00
|
|
|
// -------------------------
|
2012-11-30 18:09:57 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@body-background: #fff;
|
2012-11-30 17:37:24 -05:00
|
|
|
@text-color: @grayDark;
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-03-06 01:47:39 -05:00
|
|
|
|
2012-03-05 03:29:16 -05:00
|
|
|
// Links
|
2012-03-06 01:47:39 -05:00
|
|
|
// -------------------------
|
2012-11-30 18:09:57 -05:00
|
|
|
|
2012-11-30 17:37:24 -05:00
|
|
|
@link-color: #08c;
|
|
|
|
@link-color-hover: darken(@link-color, 15%);
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-03-06 01:47:39 -05:00
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// Typography
|
2012-03-06 01:47:39 -05:00
|
|
|
// -------------------------
|
2012-11-30 17:37:24 -05:00
|
|
|
@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
@font-family-serif: Georgia, "Times New Roman", Times, serif;
|
|
|
|
@font-family-monospace: Monaco, Menlo, Consolas, "Courier New", monospace;
|
2012-11-30 17:45:25 -05:00
|
|
|
@font-family-base: @font-family-sans-serif;
|
2012-03-22 20:18:07 -04:00
|
|
|
|
2012-11-30 17:45:25 -05:00
|
|
|
@font-size-base: 14px;
|
|
|
|
@font-size-large: @font-size-base * 1.25; // ~18px
|
|
|
|
@font-size-small: @font-size-base * 0.85; // ~12px
|
|
|
|
@font-size-mini: @font-size-base * 0.75; // ~11px
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-11-30 17:45:25 -05:00
|
|
|
@line-height-base: 20px;
|
|
|
|
|
|
|
|
@headings-font-family: inherit; // empty to use BS default, @font-family-base
|
2012-11-30 17:37:24 -05:00
|
|
|
@headings-font-weight: bold; // instead of browser default, bold
|
2011-10-04 03:20:38 -04:00
|
|
|
|
2012-09-18 23:56:20 -04:00
|
|
|
|
2012-09-19 00:16:08 -04:00
|
|
|
// Component sizing
|
|
|
|
// -------------------------
|
2012-11-30 17:45:25 -05:00
|
|
|
// Based on 14px font-size and 1.5 line-height
|
2012-09-19 00:16:08 -04:00
|
|
|
|
2012-11-30 17:45:25 -05:00
|
|
|
@padding-large: 11px 19px; // 44px
|
|
|
|
@padding-small: 2px 10px; // 26px
|
|
|
|
@padding-mini: 0 6px; // 22px
|
2012-09-19 00:16:08 -04:00
|
|
|
|
2012-11-30 17:45:25 -05:00
|
|
|
@border-radius-base: 4px;
|
|
|
|
@border-radius-large: 6px;
|
|
|
|
@border-radius-small: 3px;
|
2012-09-19 00:16:08 -04:00
|
|
|
|
|
|
|
|
2012-03-06 01:47:39 -05:00
|
|
|
// Tables
|
|
|
|
// -------------------------
|
2012-11-30 18:09:57 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@table-background: transparent; // overall background-color
|
|
|
|
@table-background-accent: #f9f9f9; // for striping
|
|
|
|
@table-background-hover: #f5f5f5; // for hover
|
2012-11-30 18:09:57 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@table-border: #ddd; // table and cell border
|
2012-03-06 01:47:39 -05:00
|
|
|
|
2012-10-01 02:52:02 -04:00
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// Buttons
|
2012-03-06 01:47:39 -05:00
|
|
|
// -------------------------
|
2012-11-30 18:09:57 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@btn-background: #fff;
|
|
|
|
@btn-background-highlight: darken(#fff, 10%);
|
|
|
|
@btn-border: #bbb;
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@btn-backround-primary: @link-color;
|
|
|
|
@btn-backround-primary-highlight: spin(@btn-backround-primary, 20%);
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@btn-backround-info: #5bc0de;
|
|
|
|
@btn-backround-info-highlight: #2f96b4;
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@btn-backround-success: #62c462;
|
|
|
|
@btn-backround-success-highlight: #51a351;
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@btn-backround-warning: lighten(#f89406, 15%);
|
|
|
|
@btn-backround-warning-highlight: #f89406;
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@btn-backround-danger: #ee5f5b;
|
|
|
|
@btn-backround-danger-highlight: #bd362f;
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@btn-backround-inverse: #444;
|
|
|
|
@btn-backround-inverse-highlight: @grayDarker;
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-03-06 01:47:39 -05:00
|
|
|
|
2012-03-05 03:29:16 -05:00
|
|
|
// Forms
|
2012-03-06 01:47:39 -05:00
|
|
|
// -------------------------
|
2012-11-30 18:09:57 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@input-background: #fff;
|
2012-11-30 18:09:57 -05:00
|
|
|
@input-background-disabled: @grayLighter;
|
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@input-border: #ccc;
|
|
|
|
@input-border-radius: @border-radius-base;
|
|
|
|
@input-border-radius-search: 20px;
|
2012-11-30 18:09:57 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@form-actions-background: #f5f5f5;
|
2012-11-30 18:09:57 -05:00
|
|
|
|
2012-11-30 18:05:23 -05:00
|
|
|
@input-height: @line-height-base + 14px; // base line-height + 12px vertical padding + 2px top/bottom border
|
2012-03-06 01:47:39 -05:00
|
|
|
|
|
|
|
|
2012-03-05 03:29:16 -05:00
|
|
|
// Dropdowns
|
2012-03-06 01:47:39 -05:00
|
|
|
// -------------------------
|
2012-01-07 07:07:53 -05:00
|
|
|
|
2012-11-30 18:09:57 -05:00
|
|
|
@dropdown-background: #fff;
|
|
|
|
@dropdown-border: rgba(0,0,0,.2);
|
|
|
|
@dropdown-divider-top: #e5e5e5;
|
|
|
|
@dropdown-divider-bottom: #fff;
|
|
|
|
|
|
|
|
@dropdown-link-color: @grayDark;
|
|
|
|
@dropdown-link-color-hover: #fff;
|
|
|
|
@dropdown-link-color-active: #fff;
|
2012-08-21 16:07:06 -04:00
|
|
|
|
2012-11-30 18:09:57 -05:00
|
|
|
@dropdown-link-background-active: @link-color;
|
|
|
|
@dropdown-link-background-hover: @dropdown-link-background-active;
|
2012-06-19 22:17:42 -04:00
|
|
|
|
2012-01-07 07:07:53 -05:00
|
|
|
|
2012-03-10 14:23:05 -05:00
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// COMPONENT VARIABLES
|
|
|
|
// --------------------------------------------------
|
2012-01-08 15:40:30 -05:00
|
|
|
|
2012-09-18 23:56:20 -04:00
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// Z-index master list
|
2012-03-10 14:23:05 -05:00
|
|
|
// -------------------------
|
2012-01-18 03:12:58 -05:00
|
|
|
// Used for a bird's eye view of components dependent on the z-axis
|
2012-01-24 19:54:35 -05:00
|
|
|
// Try to avoid customizing these :)
|
2012-02-05 01:22:19 -05:00
|
|
|
@zindexDropdown: 1000;
|
|
|
|
@zindexPopover: 1010;
|
2012-08-18 20:05:37 -04:00
|
|
|
@zindexTooltip: 1030;
|
2012-02-05 01:22:19 -05:00
|
|
|
@zindexFixedNavbar: 1030;
|
|
|
|
@zindexModalBackdrop: 1040;
|
|
|
|
@zindexModal: 1050;
|
|
|
|
|
2012-03-10 14:23:05 -05:00
|
|
|
|
2012-02-05 01:22:19 -05:00
|
|
|
// Sprite icons path
|
2012-03-10 14:23:05 -05:00
|
|
|
// -------------------------
|
2012-02-05 01:22:19 -05:00
|
|
|
@iconSpritePath: "../img/glyphicons-halflings.png";
|
|
|
|
@iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
|
2012-01-07 06:53:20 -05:00
|
|
|
|
2012-03-10 14:23:05 -05:00
|
|
|
|
2012-01-24 19:54:35 -05:00
|
|
|
// Input placeholder text color
|
2012-03-10 14:23:05 -05:00
|
|
|
// -------------------------
|
2012-02-05 01:22:19 -05:00
|
|
|
@placeholderText: @grayLight;
|
2012-01-24 19:54:35 -05:00
|
|
|
|
2012-03-10 14:23:05 -05:00
|
|
|
|
2012-02-11 02:59:00 -05:00
|
|
|
// Hr border color
|
2012-03-10 14:23:05 -05:00
|
|
|
// -------------------------
|
2012-02-11 02:59:00 -05:00
|
|
|
@hrBorder: @grayLighter;
|
|
|
|
|
2012-03-10 14:23:05 -05:00
|
|
|
|
2012-08-28 13:12:04 -04:00
|
|
|
// Horizontal forms & lists
|
|
|
|
// -------------------------
|
|
|
|
@horizontalComponentOffset: 180px;
|
|
|
|
|
|
|
|
|
2012-06-28 13:03:46 -04:00
|
|
|
// Wells
|
|
|
|
// -------------------------
|
|
|
|
@wellBackground: #f5f5f5;
|
|
|
|
|
|
|
|
|
2012-01-18 03:24:10 -05:00
|
|
|
// Navbar
|
2012-03-10 14:23:05 -05:00
|
|
|
// -------------------------
|
2012-07-30 13:24:41 -04:00
|
|
|
@navbarCollapseWidth: 979px;
|
2012-09-17 11:52:19 -04:00
|
|
|
@navbarCollapseDesktopWidth: @navbarCollapseWidth + 1;
|
2012-07-30 13:24:41 -04:00
|
|
|
|
2012-09-26 01:51:05 -04:00
|
|
|
@navbarHeight: 44px;
|
2012-07-29 03:30:15 -04:00
|
|
|
@navbarBackgroundHighlight: #ffffff;
|
2012-08-21 10:21:28 -04:00
|
|
|
@navbarBackground: darken(@navbarBackgroundHighlight, 5%);
|
2012-07-29 03:30:15 -04:00
|
|
|
@navbarBorder: darken(@navbarBackground, 12%);
|
|
|
|
|
2012-08-21 17:53:23 -04:00
|
|
|
@navbarText: #777;
|
|
|
|
@navbarLinkColor: #777;
|
2012-07-29 03:30:15 -04:00
|
|
|
@navbarLinkColorHover: @grayDark;
|
|
|
|
@navbarLinkColorActive: @gray;
|
2012-03-10 14:23:05 -05:00
|
|
|
@navbarLinkBackgroundHover: transparent;
|
2012-07-29 03:30:15 -04:00
|
|
|
@navbarLinkBackgroundActive: darken(@navbarBackground, 5%);
|
2012-03-10 14:23:05 -05:00
|
|
|
|
2012-03-15 15:21:27 -04:00
|
|
|
@navbarBrandColor: @navbarLinkColor;
|
2012-03-10 19:15:54 -05:00
|
|
|
|
2012-07-29 03:30:15 -04:00
|
|
|
// Inverted navbar
|
|
|
|
@navbarInverseBackground: #111111;
|
|
|
|
@navbarInverseBackgroundHighlight: #222222;
|
2012-11-03 19:14:44 -04:00
|
|
|
@navbarInverseBorder: #111111;
|
2012-07-29 03:30:15 -04:00
|
|
|
|
|
|
|
@navbarInverseText: @grayLight;
|
|
|
|
@navbarInverseLinkColor: @grayLight;
|
2012-11-30 18:05:23 -05:00
|
|
|
@navbarInverseLinkColorHover: #fff;
|
2012-07-29 03:30:15 -04:00
|
|
|
@navbarInverseLinkColorActive: @navbarInverseLinkColorHover;
|
|
|
|
@navbarInverseLinkBackgroundHover: transparent;
|
|
|
|
@navbarInverseLinkBackgroundActive: @navbarInverseBackground;
|
|
|
|
|
|
|
|
@navbarInverseSearchBackground: lighten(@navbarInverseBackground, 25%);
|
2012-11-30 18:05:23 -05:00
|
|
|
@navbarInverseSearchBackgroundFocus: #fff;
|
2012-07-29 03:30:15 -04:00
|
|
|
@navbarInverseSearchBorder: @navbarInverseBackground;
|
|
|
|
@navbarInverseSearchPlaceholderColor: #ccc;
|
|
|
|
|
|
|
|
@navbarInverseBrandColor: @navbarInverseLinkColor;
|
|
|
|
|
|
|
|
|
2012-08-08 01:37:38 -04:00
|
|
|
// Pagination
|
|
|
|
// -------------------------
|
|
|
|
@paginationBackground: #fff;
|
|
|
|
@paginationBorder: #ddd;
|
|
|
|
@paginationActiveBackground: #f5f5f5;
|
|
|
|
|
2012-01-27 16:20:02 -05:00
|
|
|
|
2012-03-05 03:29:16 -05:00
|
|
|
// Hero unit
|
2012-03-10 14:23:05 -05:00
|
|
|
// -------------------------
|
2012-03-10 19:01:06 -05:00
|
|
|
@heroUnitBackground: @grayLighter;
|
|
|
|
@heroUnitHeadingColor: inherit;
|
|
|
|
@heroUnitLeadColor: inherit;
|
2012-03-05 03:29:16 -05:00
|
|
|
|
2012-03-10 14:23:05 -05:00
|
|
|
|
2012-01-24 19:54:35 -05:00
|
|
|
// Form states and alerts
|
2012-03-10 14:23:05 -05:00
|
|
|
// -------------------------
|
2012-01-24 19:54:35 -05:00
|
|
|
@warningText: #c09853;
|
|
|
|
@warningBackground: #fcf8e3;
|
2012-01-27 16:20:02 -05:00
|
|
|
@warningBorder: darken(spin(@warningBackground, -10), 3%);
|
2012-01-24 19:54:35 -05:00
|
|
|
|
|
|
|
@errorText: #b94a48;
|
|
|
|
@errorBackground: #f2dede;
|
2012-01-27 16:20:02 -05:00
|
|
|
@errorBorder: darken(spin(@errorBackground, -10), 3%);
|
2012-01-24 19:54:35 -05:00
|
|
|
|
|
|
|
@successText: #468847;
|
|
|
|
@successBackground: #dff0d8;
|
2012-01-27 16:20:02 -05:00
|
|
|
@successBorder: darken(spin(@successBackground, -10), 5%);
|
2012-01-24 19:54:35 -05:00
|
|
|
|
|
|
|
@infoText: #3a87ad;
|
|
|
|
@infoBackground: #d9edf7;
|
2012-01-27 16:20:02 -05:00
|
|
|
@infoBorder: darken(spin(@infoBackground, -10), 7%);
|
2012-01-24 19:54:35 -05:00
|
|
|
|
2012-01-18 03:24:10 -05:00
|
|
|
|
2012-07-10 01:14:30 -04:00
|
|
|
// Tooltips and popovers
|
|
|
|
// -------------------------
|
2012-07-10 03:36:21 -04:00
|
|
|
@tooltipColor: #fff;
|
2012-11-03 16:44:55 -04:00
|
|
|
@tooltipBackground: rgba(0,0,0,.9);
|
2012-07-10 01:14:30 -04:00
|
|
|
@tooltipArrowWidth: 5px;
|
2012-07-10 03:36:21 -04:00
|
|
|
@tooltipArrowColor: @tooltipBackground;
|
2012-07-10 01:14:30 -04:00
|
|
|
|
2012-07-27 02:42:36 -04:00
|
|
|
@popoverBackground: #fff;
|
2012-07-10 01:14:30 -04:00
|
|
|
@popoverArrowWidth: 10px;
|
|
|
|
@popoverArrowColor: #fff;
|
2012-07-27 02:42:36 -04:00
|
|
|
@popoverTitleBackground: darken(@popoverBackground, 3%);
|
2012-07-10 01:14:30 -04:00
|
|
|
|
|
|
|
// Special enhancement for popovers
|
|
|
|
@popoverArrowOuterWidth: @popoverArrowWidth + 1;
|
2012-07-27 02:42:36 -04:00
|
|
|
@popoverArrowOuterColor: rgba(0,0,0,.25);
|
2012-07-10 01:14:30 -04:00
|
|
|
|
|
|
|
|
2012-01-30 03:39:44 -05:00
|
|
|
|
|
|
|
// GRID
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Default 940px grid
|
|
|
|
@gridColumns: 12;
|
|
|
|
@gridColumnWidth: 60px;
|
|
|
|
@gridGutterWidth: 20px;
|
2012-04-24 05:11:59 -04:00
|
|
|
@gridRowWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
2012-01-30 03:39:44 -05:00
|
|
|
|
2012-06-21 02:46:51 -04:00
|
|
|
// 1200px min
|
|
|
|
@gridColumnWidth1200: 70px;
|
|
|
|
@gridGutterWidth1200: 30px;
|
2012-07-07 03:30:43 -04:00
|
|
|
@gridRowWidth1200: (@gridColumns * @gridColumnWidth1200) + (@gridGutterWidth1200 * (@gridColumns - 1));
|
2012-06-21 02:46:51 -04:00
|
|
|
|
|
|
|
// 768px-979px
|
|
|
|
@gridColumnWidth768: 42px;
|
|
|
|
@gridGutterWidth768: 20px;
|
2012-07-07 03:30:43 -04:00
|
|
|
@gridRowWidth768: (@gridColumns * @gridColumnWidth768) + (@gridGutterWidth768 * (@gridColumns - 1));
|