2011-11-26 00:34:55 -05:00
|
|
|
// Variables.less
|
|
|
|
// Variables to customize the look and feel of Bootstrap
|
|
|
|
// -----------------------------------------------------
|
2011-09-12 23:07:26 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// GLOBAL VALUES
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
// Links
|
|
|
|
@linkColor: #08c;
|
2012-01-24 19:07:30 -05:00
|
|
|
@linkColorHover: darken(@linkColor, 15%);
|
2012-01-18 03:12:58 -05:00
|
|
|
|
|
|
|
// Grays
|
|
|
|
@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;
|
|
|
|
@white: #fff;
|
|
|
|
|
|
|
|
// Accent colors
|
2012-01-24 19:07:30 -05:00
|
|
|
@blue: #049cdb;
|
|
|
|
@blueDark: #0064cd;
|
2012-01-18 03:12:58 -05:00
|
|
|
@green: #46a546;
|
|
|
|
@red: #9d261d;
|
|
|
|
@yellow: #ffc40d;
|
|
|
|
@orange: #f89406;
|
|
|
|
@pink: #c3325f;
|
|
|
|
@purple: #7a43b6;
|
|
|
|
|
|
|
|
// Grid system
|
|
|
|
// Modify the grid styles in mixins.less
|
|
|
|
@gridColumns: 12;
|
|
|
|
@gridColumnWidth: 60px;
|
|
|
|
@gridGutterWidth: 20px;
|
|
|
|
@siteWidth: (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
|
|
|
|
// Fluid width sidebar
|
|
|
|
@fluidSidebarWidth: 220px;
|
2011-09-12 23:07:26 -04:00
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// Typography
|
|
|
|
@baseFontSize: 13px;
|
|
|
|
@baseFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
@baseLineHeight: 18px;
|
2011-10-04 03:20:38 -04:00
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// Buttons
|
2012-01-26 13:00:09 -05:00
|
|
|
@primaryButtonBackground: @linkColor;
|
2011-09-12 23:07:26 -04:00
|
|
|
|
2012-01-07 07:07:53 -05:00
|
|
|
|
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// COMPONENT VARIABLES
|
|
|
|
// --------------------------------------------------
|
2012-01-08 15:40:30 -05:00
|
|
|
|
2012-01-18 03:12:58 -05:00
|
|
|
// Z-index master list
|
|
|
|
// 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-01-07 07:17:33 -05:00
|
|
|
@zindexDropdown: 1000;
|
2012-01-08 15:40:30 -05:00
|
|
|
@zindexPopover: 1010;
|
2012-01-12 00:42:55 -05:00
|
|
|
@zindexTooltip: 1020;
|
2012-01-08 15:40:30 -05:00
|
|
|
@zindexFixedNavbar: 1030;
|
|
|
|
@zindexModalBackdrop: 1040;
|
|
|
|
@zindexModal: 1050;
|
2012-01-07 06:53:20 -05:00
|
|
|
|
2012-01-24 19:54:35 -05:00
|
|
|
// Input placeholder text color
|
|
|
|
@placeholderText: @grayLight;
|
|
|
|
|
2012-01-18 03:24:10 -05:00
|
|
|
// Navbar
|
2012-01-24 19:54:35 -05:00
|
|
|
@navbarHeight: 40px;
|
2012-01-21 18:24:06 -05:00
|
|
|
@navbarBackground: @grayDarker;
|
|
|
|
@navbarBackgroundHighlight: @grayDark;
|
2012-01-18 03:24:10 -05:00
|
|
|
|
2012-01-24 19:54:35 -05:00
|
|
|
// Form states and alerts
|
|
|
|
@warningText: #c09853;
|
|
|
|
@warningBackground: #fcf8e3;
|
|
|
|
@warningBorder: #f3edd2;
|
|
|
|
|
|
|
|
@errorText: #b94a48;
|
|
|
|
@errorBackground: #f2dede;
|
|
|
|
@errorBorder: #e9c7c7;
|
|
|
|
|
|
|
|
@successText: #468847;
|
|
|
|
@successBackground: #dff0d8;
|
|
|
|
@successBorder: #cfe8c4;
|
|
|
|
|
|
|
|
@infoText: #3a87ad;
|
|
|
|
@infoBackground: #d9edf7;
|
|
|
|
@infoBorder: #bfe1f2;
|
|
|
|
|
2012-01-18 03:24:10 -05:00
|
|
|
|