readable: fixed mobile menu
[bootswatch] / readable / variables.less
1 // Variables.less
2 // Variables to customize the look and feel of Bootstrap
3 // Swatch: Readable
4 // -----------------------------------------------------
5
6
7
8 // GLOBAL VALUES
9 // --------------------------------------------------
10
11 // Links
12 @linkColor:             @red;
13 @linkColorHover:        lighten(@linkColor, 8%);
14
15 // Grays
16 @black:                 #000;
17 @grayDarker:            #222;
18 @grayDark:              #333;
19 @gray:                  #777;
20 @grayLight:             #999;
21 @grayLighter:           #CDCDCD;
22 @white:                 #fff;
23
24 // Accent colors
25 @blue:                  #049cdb;
26 @blueDark:              #0064cd;
27 @green:                 #46a546;
28 @red:                   #9C0001;
29 @yellow:                #ffc40d;
30 @orange:                #f89406;
31 @pink:                  #c3325f;
32 @purple:                #7a43b6;
33
34 // Typography
35 @baseFontSize:          19px;
36 @baseFontFamily:        Georgia, "Times New Roman", serif;
37 @baseLineHeight:        1.6em;
38 @textColor:             #090000;
39
40 // Buttons
41 @primaryButtonBackground:    @linkColor;
42
43
44
45 // COMPONENT VARIABLES
46 // --------------------------------------------------
47
48 // Z-index master list
49 // Used for a bird's eye view of components dependent on the z-axis
50 // Try to avoid customizing these :)
51 @zindexDropdown:          1000;
52 @zindexPopover:           1010;
53 @zindexTooltip:           1020;
54 @zindexFixedNavbar:       1030;
55 @zindexModalBackdrop:     1040;
56 @zindexModal:             1050;
57
58 // Sprite icons path
59 @iconSpritePath:          "../img/glyphicons-halflings.png";
60 @iconWhiteSpritePath:     "../img/glyphicons-halflings-white.png";
61
62 // Input placeholder text color
63 @placeholderText:         @gray;
64
65 // Hr border color
66 @hrBorder:                @grayLighter;
67
68 // Navbar
69 @navbarHeight:                    40px;
70 @navbarBackground:                @bodyBackgroundColor;
71 @navbarBackgroundHighlight:       @bodyBackgroundColor;
72 @navbarLinkBackgroundHover:       @bodyBackgroundColor;
73
74 @navbarText:                      @textColor;
75 @navbarLinkColor:                 @linkColor;
76 @navbarLinkColorHover:            @linkColorHover;
77
78 // Form states and alerts
79 @warningText:             #c09853;
80 @warningBackground:       #fcf8e3;
81 @warningBorder:           darken(spin(@warningBackground, -10), 3%);
82
83 @errorText:               #b94a48;
84 @errorBackground:         #f2dede;
85 @errorBorder:             darken(spin(@errorBackground, -10), 3%);
86
87 @successText:             #468847;
88 @successBackground:       #dff0d8;
89 @successBorder:           darken(spin(@successBackground, -10), 5%);
90
91 @infoText:                #3a87ad;
92 @infoBackground:          #d9edf7;
93 @infoBorder:              darken(spin(@infoBackground, -10), 7%);
94
95
96
97 // GRID
98 // --------------------------------------------------
99
100 // Default 940px grid
101 @gridColumns:             12;
102 @gridColumnWidth:         60px;
103 @gridGutterWidth:         20px;
104 @gridRowWidth:            (@gridColumns * @gridColumnWidth) + (@gridGutterWidth * (@gridColumns - 1));
105
106 // Fluid grid
107 @fluidGridColumnWidth:    6.382978723%;
108 @fluidGridGutterWidth:    2.127659574%;