twbs--bootstrap/less/variables.less

353 lines
10 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Variables
// --------------------------------------------------
2012-06-29 04:46:45 +00:00
// Global values
2012-01-18 08:12:58 +00:00
// --------------------------------------------------
2012-03-06 06:47:39 +00:00
2012-01-18 08:12:58 +00:00
// Grays
2012-03-06 06:47:39 +00:00
// -------------------------
2012-01-22 06:35:03 +00:00
@grayDarker: #222;
2012-01-18 08:12:58 +00:00
@grayDark: #333;
@gray: #555;
@grayLight: #999;
@grayLighter: #eee;
// Brand colors
// -------------------------
@brand-primary: #428bca;
@brand-success: #5cb85c;
@brand-warning: #f0ad4e;
@brand-danger: #d9534f;
@brand-info: #5bc0de;
2012-03-06 06:47:39 +00:00
// Scaffolding
2012-03-06 06:47:39 +00:00
// -------------------------
2012-11-30 23:09:57 +00:00
@body-bg: #fff;
@text-color: @grayDark;
2012-03-06 06:47:39 +00:00
// Links
2012-03-06 06:47:39 +00:00
// -------------------------
2012-11-30 23:09:57 +00:00
2013-03-31 19:16:16 +00:00
@link-color: @brand-primary;
2013-04-01 00:27:22 +00:00
@link-hover-color: darken(@link-color, 15%);
2012-03-06 06:47:39 +00:00
2012-01-18 08:12:58 +00:00
// Typography
2012-03-06 06:47:39 +00:00
// -------------------------
2012-11-30 23:33:56 +00:00
2012-11-30 22:37:24 +00: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;
@font-family-base: @font-family-sans-serif;
2013-03-31 19:00:04 +00: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
@line-height-base: 20px;
@headings-font-family: inherit; // empty to use BS default, @font-family-base
@headings-font-weight: 500;
2013-03-31 19:16:16 +00:00
// Components
// -------------------------
// Based on 14px font-size and 1.5 line-height
@padding-large: 11px 14px; // 44px
@padding-small: 2px 10px; // 26px
@padding-mini: 0 6px; // 22px
@border-radius-base: 4px;
@border-radius-large: 6px;
@border-radius-small: 3px;
2013-03-31 19:16:16 +00:00
@component-active-bg: @brand-primary;
2012-03-06 06:47:39 +00:00
// Tables
// -------------------------
2012-11-30 23:09:57 +00:00
@table-bg: transparent; // overall background-color
@table-bg-accent: #f9f9f9; // for striping
@table-bg-hover: #f5f5f5; // for hover
2012-11-30 23:09:57 +00:00
2012-11-30 23:05:23 +00:00
@table-border: #ddd; // table and cell border
2012-03-06 06:47:39 +00:00
2012-10-01 06:52:02 +00:00
2012-01-18 08:12:58 +00:00
// Buttons
2012-03-06 06:47:39 +00:00
// -------------------------
2012-11-30 23:09:57 +00:00
2013-04-01 00:32:45 +00:00
@btn-color: #fff;
@btn-bg: #a7a9aa;
@btn-border: @btn-bg;
2013-04-01 00:32:45 +00:00
@btn-primary-bg: @brand-primary;
@btn-primary-border: @btn-primary-bg;
2013-04-01 00:32:45 +00:00
@btn-bg-success: @brand-success;
@btn-success-border: @btn-bg-success;
2013-04-01 00:32:45 +00:00
@btn-bg-warning: @brand-warning;
@btn-warning-border: @btn-bg-warning;
2013-04-01 00:32:45 +00:00
@btn-bg-danger: @brand-danger;
@btn-danger-border: @btn-bg-danger;
2013-04-01 00:32:45 +00:00
@btn-bg-info: @brand-info;
@btn-info-border: @btn-bg-info;
2013-01-18 03:51:22 +00:00
2012-03-06 06:47:39 +00:00
// Forms
2012-03-06 06:47:39 +00:00
// -------------------------
2012-11-30 23:09:57 +00:00
@input-bg: #fff;
@input-bg-disabled: @grayLighter;
2012-11-30 23:09:57 +00:00
2012-11-30 23:05:23 +00:00
@input-border: #ccc;
@input-border-radius: @border-radius-base;
2012-11-30 23:09:57 +00:00
2012-11-30 23:27:13 +00:00
@input-color-placeholder: @grayLight;
2012-11-30 23:09:57 +00:00
@input-height-base: (@line-height-base + 14px); // base line-height + 12px vertical padding + 2px top/bottom border
@input-height-large: (@line-height-base + 24px); // base line-height + 22px vertical padding + 2px top/bottom border
@input-height-small: (@line-height-base + 6px); // base line-height + 4px vertical padding + 2px top/bottom border
@form-actions-bg: #f5f5f5;
2012-11-30 23:27:13 +00:00
2012-03-06 06:47:39 +00:00
// Dropdowns
2012-03-06 06:47:39 +00:00
// -------------------------
2013-04-01 00:36:23 +00:00
@dropdown-bg: #fff;
@dropdown-border: rgba(0,0,0,.15);
2012-12-26 20:06:21 +00:00
@dropdown-divider-top: #e5e5e5;
@dropdown-divider-bottom: #fff;
2012-11-30 23:09:57 +00:00
2012-12-26 20:06:21 +00:00
@dropdown-link-color: @grayDark;
2013-04-01 00:36:23 +00:00
@dropdown-link-hover-color: #fff;
@dropdown-link-hover-bg: @dropdown-link-active-bg;
2012-08-21 20:07:06 +00:00
2013-04-01 00:36:23 +00:00
@dropdown-link-active-color: #fff;
@dropdown-link-active-bg: @component-active-bg;
2012-03-10 19:23:05 +00:00
2012-01-18 08:12:58 +00:00
// COMPONENT VARIABLES
// --------------------------------------------------
2012-01-18 08:12:58 +00:00
// Z-index master list
2012-03-10 19:23:05 +00:00
// -------------------------
2012-01-18 08:12:58 +00:00
// Used for a bird's eye view of components dependent on the z-axis
// Try to avoid customizing these :)
2012-11-30 23:27:13 +00:00
@zindex-dropdown: 1000;
@zindex-popover: 1010;
@zindex-tooltip: 1030;
@zindex-navbar-fixed: 1030;
@zindex-modal-background: 1040;
@zindex-modal: 1050;
2012-03-10 19:23:05 +00:00
2013-01-11 17:32:00 +00:00
// Glyphicons font path
// -------------------------
@glyphicons-font-path: "../fonts";
// Navbar
2012-03-10 19:23:05 +00:00
// -------------------------
2012-11-30 23:27:13 +00:00
2013-01-17 00:14:41 +00:00
// Basics of a navbar
@navbar-height: 50px;
@navbar-text: #777;
@navbar-bg: #eee;
2012-07-29 07:30:15 +00:00
2013-01-17 00:14:41 +00:00
// Navbar brand label
@navbar-brand-color: @navbar-link-color;
2013-04-01 00:56:31 +00:00
@navbar-brand-hover-color: darken(@navbar-link-color, 10%);
@navbar-brand-hover-bg: transparent;
2013-01-17 00:14:41 +00:00
// Navbar links
2012-11-30 23:34:35 +00:00
@navbar-link-color: #777;
2013-04-01 00:56:31 +00:00
@navbar-link-hover-color: #333;
@navbar-link-hover-bg: transparent;
@navbar-link-active-color: #555;
@navbar-link-active-bg: darken(@navbar-bg, 10%);
@navbar-link-disabled-color: #ccc;
@navbar-link-disabled-bg: transparent;
2013-01-17 00:14:41 +00:00
2012-07-29 07:30:15 +00:00
// Inverted navbar
@navbar-inverse-text: @grayLight;
@navbar-inverse-bg: #222;
2012-11-30 23:33:56 +00:00
// Inverted navbar brand label
@navbar-inverse-brand-color: @navbar-inverse-link-color;
@navbar-inverse-brand-hover-color: #fff;
@navbar-inverse-brand-hover-bg: transparent;
// Inverted navbar links
@navbar-inverse-link-color: @grayLight;
2013-04-01 00:56:31 +00:00
@navbar-inverse-link-hover-color: #fff;
@navbar-inverse-link-hover-bg: transparent;
@navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;
@navbar-inverse-link-active-bg: darken(@navbar-inverse-bg, 10%);
@navbar-inverse-link-disabled-color: #444;
@navbar-inverse-link-disabled-bg: transparent;
// Inverted navbar search
// Normal navbar needs no special styles or vars
2013-04-01 00:56:31 +00:00
@navbar-inverse-search-bg: lighten(@navbar-inverse-bg, 25%);
@navbar-inverse-search-bg-focus: #fff;
@navbar-inverse-search-border: @navbar-inverse-bg;
@navbar-inverse-search-placeholder-color: #ccc;
2012-11-30 23:34:35 +00:00
2012-07-29 07:30:15 +00:00
2012-08-08 05:37:38 +00:00
// Pagination
// -------------------------
2012-11-30 23:36:16 +00:00
2013-04-01 00:20:16 +00:00
@pagination-bg: #fff;
2012-11-30 23:36:16 +00:00
@pagination-border: #ddd;
@pagination-active-bg: #f5f5f5;
2012-08-08 05:37:38 +00:00
// Jumbotron
2012-03-10 19:23:05 +00:00
// -------------------------
2012-11-30 23:36:16 +00:00
2013-04-01 00:19:47 +00:00
@jumbotron-bg: @grayLighter;
@jumbotron-heading-color: inherit;
@jumbotron-lead-color: inherit;
2012-03-10 19:23:05 +00:00
// Form states and alerts
2012-03-10 19:23:05 +00:00
// -------------------------
2012-11-30 23:36:16 +00:00
2012-11-30 23:38:31 +00:00
@state-warning-text: #c09853;
@state-warning-bg: #fcf8e3;
@state-warning-border: darken(spin(@state-warning-bg, -10), 3%);
@state-danger-text: #b94a48;
@state-danger-bg: #f2dede;
@state-danger-border: darken(spin(@state-danger-bg, -10), 3%);
2012-11-30 23:38:31 +00:00
@state-success-text: #468847;
@state-success-bg: #dff0d8;
@state-success-border: darken(spin(@state-success-bg, -10), 5%);
2012-11-30 23:38:31 +00:00
@state-info-text: #3a87ad;
@state-info-bg: #d9edf7;
@state-info-border: darken(spin(@state-info-bg, -10), 7%);
// Tooltips and popovers
// -------------------------
2012-12-26 20:06:21 +00:00
@tooltip-color: #fff;
@tooltip-bg: rgba(0,0,0,.9);
2012-12-26 20:06:21 +00:00
@tooltip-arrow-width: 5px;
@tooltip-arrow-color: @tooltip-bg;
@popover-bg: #fff;
2012-12-26 20:06:21 +00:00
@popover-arrow-width: 10px;
@popover-arrow-color: #fff;
@popover-title-bg: darken(@popover-bg, 3%);
// Special enhancement for popovers
@popover-arrow-outer-width: (@popover-arrow-width + 1);
2012-12-26 20:06:21 +00:00
@popover-arrow-outer-color: rgba(0,0,0,.25);
// Labels
// -------------------------
2013-04-01 00:18:07 +00:00
@label-success-bg: @brand-success;
@label-info-bg: @brand-info;
@label-warning-bg: @brand-warning;
@label-danger-bg: @brand-danger;
2013-02-08 03:31:12 +00:00
// Modals
// -------------------------
@modal-inner-padding: 20px;
// Progress bars
// -------------------------
@progress-bg: #f5f5f5;
@progress-bar-bg: @brand-primary;
@progress-bar-success-bg: @brand-success;
@progress-bar-warning-bg: @brand-warning;
@progress-bar-danger-bg: @brand-danger;
@progress-bar-info-bg: @brand-info;
2013-03-30 23:07:50 +00:00
// List group
// -------------------------
@list-group-bg: #fff;
@list-group-border: #ddd;
@list-group-border-radius: @border-radius-base;
@list-group-hover-bg: #f5f5f5;
@list-group-active-text: #fff;
@list-group-active-bg: @component-active-bg;
2013-03-30 23:07:50 +00:00
@list-group-active-border: @list-group-active-bg;
// Panels
// -------------------------
@panel-bg: #fff;
@panel-border: #ddd;
@panel-border-radius: @border-radius-base;
@panel-heading-bg: #f5f5f5;
2013-04-01 05:22:52 +00:00
@panel-primary-text: #fff;
@panel-primary-border: @brand-primary;
@panel-primary-heading-bg: @brand-primary;
@panel-success-text: @state-success-text;
@panel-success-border: @state-success-border;
@panel-success-heading-bg: @state-success-bg;
@panel-warning-text: @state-warning-text;
@panel-warning-border: @state-warning-border;
@panel-warning-heading-bg: @state-warning-bg;
@panel-danger-text: @state-danger-text;
@panel-danger-border: @state-danger-border;
@panel-danger-heading-bg: @state-danger-bg;
@panel-info-text: @state-info-text;
@panel-info-border: @state-info-border;
@panel-info-heading-bg: @state-info-bg;
// Wells
// -------------------------
2013-04-01 00:25:52 +00:00
@well-bg: #f5f5f5;
2012-11-30 23:27:13 +00:00
// Miscellaneous
// -------------------------
// Hr border color
2012-12-26 20:06:21 +00:00
@hr-border: @grayLighter;
2012-11-30 23:27:13 +00:00
// Horizontal forms & lists
2012-12-26 20:06:21 +00:00
@component-offset-horizontal: 180px;
2012-11-30 23:27:13 +00:00
// Grid system
// --------------------------------------------------
2013-04-01 00:25:27 +00:00
// Number of columns in the grid system
2012-12-26 20:06:21 +00:00
@grid-columns: 12;
2013-04-01 00:25:27 +00:00
// Padding, to be divided by two and applied to the left and right of all columns
@grid-gutter-width: 30px;
2013-04-01 00:25:27 +00:00
// Point at which the navbar stops collapsing
@grid-float-breakpoint: 768px;