bootswatch-rails 0.2.0 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitmodules +3 -0
- data/HISTORY.md +7 -0
- data/README.md +16 -7
- data/Rakefile +32 -0
- data/converter +112 -0
- data/lib/bootswatch-rails/version.rb +1 -1
- data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +375 -229
- data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +166 -60
- data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +122 -37
- data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +148 -43
- data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +62 -61
- data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +22 -23
- data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +352 -236
- data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +147 -42
- data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +277 -72
- data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +159 -54
- data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +21 -381
- data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +161 -56
- data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +46 -29
- data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +42 -20
- data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +420 -267
- data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +150 -45
- data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +55 -102
- data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +94 -70
- data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +476 -301
- data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +171 -66
- data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +293 -255
- data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +132 -30
- data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +85 -44
- data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +143 -38
- metadata +5 -2
@@ -1,11 +1,9 @@
|
|
1
|
-
//
|
2
|
-
//
|
3
|
-
//
|
4
|
-
// -----------------------------------------------------
|
5
|
-
|
1
|
+
// Journal 2.2.2
|
2
|
+
// Variables
|
3
|
+
// --------------------------------------------------
|
6
4
|
|
7
5
|
|
8
|
-
//
|
6
|
+
// Global values
|
9
7
|
// --------------------------------------------------
|
10
8
|
|
11
9
|
|
@@ -13,9 +11,9 @@
|
|
13
11
|
// -------------------------
|
14
12
|
$black: #000;
|
15
13
|
$grayDarker: #222;
|
16
|
-
$grayDark: #
|
17
|
-
$gray: #
|
18
|
-
$grayLight: #
|
14
|
+
$grayDark: #777;
|
15
|
+
$gray: #999;
|
16
|
+
$grayLight: #bbb;
|
19
17
|
$grayLighter: #eee;
|
20
18
|
$white: #fff;
|
21
19
|
|
@@ -23,7 +21,7 @@ $white: #fff;
|
|
23
21
|
// Accent colors
|
24
22
|
// -------------------------
|
25
23
|
$blue: #369;
|
26
|
-
$blueDark: darken($blue,
|
24
|
+
$blueDark: darken($blue, 15%);
|
27
25
|
$green: #22B24C;
|
28
26
|
$red: #C00;
|
29
27
|
$yellow: #FCFADB;
|
@@ -34,82 +32,111 @@ $purple: #7a43b6;
|
|
34
32
|
|
35
33
|
// Scaffolding
|
36
34
|
// -------------------------
|
37
|
-
$bodyBackground:
|
38
|
-
$textColor: $
|
35
|
+
$bodyBackground: $white;
|
36
|
+
$textColor: $grayDark;
|
39
37
|
|
40
38
|
|
41
39
|
// Links
|
42
40
|
// -------------------------
|
43
41
|
$linkColor: $textColor;
|
44
|
-
$linkColorHover: $
|
42
|
+
$linkColorHover: $linkColor;
|
45
43
|
|
46
44
|
|
47
45
|
// Typography
|
48
46
|
// -------------------------
|
47
|
+
$sansFontFamily: "News Cycle", "Arial Narrow Bold", sans-serif;
|
48
|
+
$serifFontFamily: Georgia, "Times New Roman", Times, serif;
|
49
|
+
$monoFontFamily: Menlo, Monaco, Consolas, "Courier New", monospace;
|
50
|
+
|
49
51
|
$baseFontSize: 14px;
|
50
|
-
$baseFontFamily:
|
51
|
-
$baseLineHeight:
|
52
|
-
$altFontFamily:
|
52
|
+
$baseFontFamily: $serifFontFamily;
|
53
|
+
$baseLineHeight: 20px;
|
54
|
+
$altFontFamily: $sansFontFamily;
|
53
55
|
|
54
|
-
$headingsFontFamily:
|
56
|
+
$headingsFontFamily: $sansFontFamily; // empty to use BS default, $baseFontFamily
|
55
57
|
$headingsFontWeight: bold; // instead of browser default, bold
|
56
|
-
$headingsColor:
|
58
|
+
$headingsColor: $black; // empty to use BS default, $textColor
|
59
|
+
|
60
|
+
|
61
|
+
// Component sizing
|
62
|
+
// -------------------------
|
63
|
+
// Based on 14px font-size and 20px line-height
|
64
|
+
|
65
|
+
$fontSizeLarge: $baseFontSize * 1.25; // ~18px
|
66
|
+
$fontSizeSmall: $baseFontSize * 0.85; // ~12px
|
67
|
+
$fontSizeMini: $baseFontSize * 0.75; // ~11px
|
68
|
+
|
69
|
+
$paddingLarge: 11px 19px; // 44px
|
70
|
+
$paddingSmall: 2px 10px; // 26px
|
71
|
+
$paddingMini: 0px 6px; // 22px
|
72
|
+
|
73
|
+
$baseBorderRadius: 4px;
|
74
|
+
$borderRadiusLarge: 6px;
|
75
|
+
$borderRadiusSmall: 3px;
|
57
76
|
|
58
77
|
|
59
78
|
// Tables
|
60
79
|
// -------------------------
|
61
80
|
$tableBackground: transparent; // overall background-color
|
62
|
-
$tableBackgroundAccent:
|
63
|
-
$tableBackgroundHover:
|
81
|
+
$tableBackgroundAccent: #f5f5f5; // for striping
|
82
|
+
$tableBackgroundHover: $grayLighter; // for hover
|
64
83
|
$tableBorder: #ddd; // table and cell border
|
65
84
|
|
66
|
-
|
67
85
|
// Buttons
|
68
86
|
// -------------------------
|
69
87
|
$btnBackground: $white;
|
70
|
-
$btnBackgroundHighlight: darken($white,
|
71
|
-
$btnBorder: darken($white,
|
88
|
+
$btnBackgroundHighlight: darken($white, 10%);
|
89
|
+
$btnBorder: darken($white, 15%);
|
72
90
|
|
73
|
-
$btnPrimaryBackground: $linkColor;
|
74
|
-
$btnPrimaryBackgroundHighlight:
|
91
|
+
$btnPrimaryBackground: lighten($linkColor, 5%);
|
92
|
+
$btnPrimaryBackgroundHighlight: $linkColor;
|
75
93
|
|
76
|
-
$btnInfoBackground:
|
77
|
-
$btnInfoBackgroundHighlight:
|
94
|
+
$btnInfoBackground: lighten($blue, 5%);
|
95
|
+
$btnInfoBackgroundHighlight: $blue;
|
78
96
|
|
79
|
-
$btnSuccessBackground:
|
80
|
-
$btnSuccessBackgroundHighlight:
|
97
|
+
$btnSuccessBackground: lighten($green, 5%);
|
98
|
+
$btnSuccessBackgroundHighlight: $green;
|
81
99
|
|
82
|
-
$btnWarningBackground: lighten($orange,
|
100
|
+
$btnWarningBackground: lighten($orange, 10%);
|
83
101
|
$btnWarningBackgroundHighlight: $orange;
|
84
102
|
|
85
|
-
$btnDangerBackground:
|
86
|
-
$btnDangerBackgroundHighlight:
|
103
|
+
$btnDangerBackground: lighten($red, 10%);
|
104
|
+
$btnDangerBackgroundHighlight: $red;
|
87
105
|
|
88
|
-
$btnInverseBackground: $
|
89
|
-
$btnInverseBackgroundHighlight: $
|
106
|
+
$btnInverseBackground: lighten($grayDark, 5%);
|
107
|
+
$btnInverseBackgroundHighlight: $grayDark;
|
90
108
|
|
91
109
|
|
92
110
|
// Forms
|
93
111
|
// -------------------------
|
94
112
|
$inputBackground: $white;
|
95
113
|
$inputBorder: #ccc;
|
114
|
+
$inputBorderRadius: $baseBorderRadius;
|
96
115
|
$inputDisabledBackground: $grayLighter;
|
116
|
+
$formActionsBackground: $grayLighter;
|
117
|
+
$inputHeight: $baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
|
97
118
|
|
98
119
|
|
99
120
|
// Dropdowns
|
100
121
|
// -------------------------
|
101
122
|
$dropdownBackground: $bodyBackground;
|
102
123
|
$dropdownBorder: rgba(0,0,0,.2);
|
103
|
-
$
|
104
|
-
$
|
105
|
-
$dropdownLinkBackgroundHover: #eee;
|
124
|
+
$dropdownDividerTop: $grayLighter;
|
125
|
+
$dropdownDividerBottom: $grayLighter;
|
106
126
|
|
127
|
+
$dropdownLinkColor: $headingsColor;
|
128
|
+
$dropdownLinkColorHover: $headingsColor;
|
129
|
+
$dropdownLinkColorActive: $headingsColor;
|
130
|
+
|
131
|
+
$dropdownLinkBackgroundHover: $grayLighter;
|
132
|
+
$dropdownLinkBackgroundActive: $dropdownLinkBackgroundHover;
|
107
133
|
|
108
134
|
|
109
135
|
|
110
136
|
// COMPONENT VARIABLES
|
111
137
|
// --------------------------------------------------
|
112
138
|
|
139
|
+
|
113
140
|
// Z-index master list
|
114
141
|
// -------------------------
|
115
142
|
// Used for a bird's eye view of components dependent on the z-axis
|
@@ -122,6 +149,12 @@ $zindexModalBackdrop: 1040;
|
|
122
149
|
$zindexModal: 1050;
|
123
150
|
|
124
151
|
|
152
|
+
// Sprite icons path
|
153
|
+
// -------------------------
|
154
|
+
$iconSpritePath: "../img/glyphicons-halflings.png";
|
155
|
+
$iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
|
156
|
+
|
157
|
+
|
125
158
|
// Input placeholder text color
|
126
159
|
// -------------------------
|
127
160
|
$placeholderText: $grayLight;
|
@@ -132,29 +165,66 @@ $placeholderText: $grayLight;
|
|
132
165
|
$hrBorder: $grayLighter;
|
133
166
|
|
134
167
|
|
168
|
+
// Horizontal forms & lists
|
169
|
+
// -------------------------
|
170
|
+
$horizontalComponentOffset: 180px;
|
171
|
+
|
172
|
+
|
173
|
+
// Wells
|
174
|
+
// -------------------------
|
175
|
+
$wellBackground: $grayLighter;
|
176
|
+
|
177
|
+
|
135
178
|
// Navbar
|
136
179
|
// -------------------------
|
137
|
-
$
|
138
|
-
$
|
180
|
+
$navbarCollapseWidth: 979px;
|
181
|
+
$navbarCollapseDesktopWidth: $navbarCollapseWidth + 1;
|
182
|
+
|
183
|
+
$navbarHeight: 60px;
|
139
184
|
$navbarBackgroundHighlight: $bodyBackground;
|
185
|
+
$navbarBackground: $bodyBackground;
|
186
|
+
$navbarBorder: darken($navbarBackground, 12%);
|
140
187
|
|
141
188
|
$navbarText: $textColor;
|
142
|
-
$navbarLinkColor: $
|
143
|
-
$navbarLinkColorHover: $
|
144
|
-
$navbarLinkColorActive: $
|
189
|
+
$navbarLinkColor: $headingsColor;
|
190
|
+
$navbarLinkColorHover: $headingsColor;
|
191
|
+
$navbarLinkColorActive: $headingsColor;
|
145
192
|
$navbarLinkBackgroundHover: transparent;
|
146
|
-
$navbarLinkBackgroundActive:
|
193
|
+
$navbarLinkBackgroundActive: transparent;
|
194
|
+
|
195
|
+
$navbarBrandColor: $navbarLinkColor;
|
196
|
+
|
197
|
+
// Inverted navbar
|
198
|
+
$navbarInverseBackground: #111111;
|
199
|
+
$navbarInverseBackgroundHighlight: #222222;
|
200
|
+
$navbarInverseBorder: #252525;
|
201
|
+
|
202
|
+
$navbarInverseText: $grayLight;
|
203
|
+
$navbarInverseLinkColor: $grayLight;
|
204
|
+
$navbarInverseLinkColorHover: $white;
|
205
|
+
$navbarInverseLinkColorActive: $navbarInverseLinkColorHover;
|
206
|
+
$navbarInverseLinkBackgroundHover: transparent;
|
207
|
+
$navbarInverseLinkBackgroundActive: $navbarInverseBackground;
|
208
|
+
|
209
|
+
$navbarInverseSearchBackground: lighten($navbarInverseBackground, 25%);
|
210
|
+
$navbarInverseSearchBackgroundFocus: $white;
|
211
|
+
$navbarInverseSearchBorder: $navbarInverseBackground;
|
212
|
+
$navbarInverseSearchPlaceholderColor: #ccc;
|
213
|
+
|
214
|
+
$navbarInverseBrandColor: $navbarInverseLinkColor;
|
215
|
+
|
147
216
|
|
148
|
-
|
149
|
-
|
150
|
-
$
|
151
|
-
$
|
217
|
+
// Pagination
|
218
|
+
// -------------------------
|
219
|
+
$paginationBackground: $bodyBackground;
|
220
|
+
$paginationBorder: #ddd;
|
221
|
+
$paginationActiveBackground: $grayLighter;
|
152
222
|
|
153
223
|
|
154
224
|
// Hero unit
|
155
225
|
// -------------------------
|
156
226
|
$heroUnitBackground: $grayLighter;
|
157
|
-
$heroUnitHeadingColor:
|
227
|
+
$heroUnitHeadingColor: $headingsColor;
|
158
228
|
$heroUnitLeadColor: inherit;
|
159
229
|
|
160
230
|
|
@@ -162,26 +232,43 @@ $heroUnitLeadColor: inherit;
|
|
162
232
|
// -------------------------
|
163
233
|
$warningText: #c09853;
|
164
234
|
$warningBackground: #fcf8e3;
|
165
|
-
$warningBorder: darken(adjust-hue($warningBackground, -10),
|
235
|
+
$warningBorder: darken(adjust-hue($warningBackground, -10), 3%);
|
166
236
|
|
167
237
|
$errorText: #b94a48;
|
168
238
|
$errorBackground: #f2dede;
|
169
|
-
$errorBorder: darken(adjust-hue($errorBackground, -10),
|
239
|
+
$errorBorder: darken(adjust-hue($errorBackground, -10), 3%);
|
170
240
|
|
171
241
|
$successText: #468847;
|
172
242
|
$successBackground: #dff0d8;
|
173
|
-
$successBorder: darken(adjust-hue($successBackground, -10),
|
243
|
+
$successBorder: darken(adjust-hue($successBackground, -10), 5%);
|
174
244
|
|
175
245
|
$infoText: #3a87ad;
|
176
246
|
$infoBackground: #d9edf7;
|
177
|
-
$infoBorder: darken(adjust-hue($infoBackground, -10),
|
247
|
+
$infoBorder: darken(adjust-hue($infoBackground, -10), 7%);
|
248
|
+
|
249
|
+
|
250
|
+
// Tooltips and popovers
|
251
|
+
// -------------------------
|
252
|
+
$tooltipColor: #fff;
|
253
|
+
$tooltipBackground: #000;
|
254
|
+
$tooltipArrowWidth: 5px;
|
255
|
+
$tooltipArrowColor: $tooltipBackground;
|
256
|
+
|
257
|
+
$popoverBackground: #fff;
|
258
|
+
$popoverArrowWidth: 10px;
|
259
|
+
$popoverArrowColor: #fff;
|
260
|
+
$popoverTitleBackground: darken($popoverBackground, 3%);
|
178
261
|
|
262
|
+
// Special enhancement for popovers
|
263
|
+
$popoverArrowOuterWidth: $popoverArrowWidth + 1;
|
264
|
+
$popoverArrowOuterColor: rgba(0,0,0,.25);
|
179
265
|
|
180
266
|
|
181
267
|
|
182
268
|
// GRID
|
183
269
|
// --------------------------------------------------
|
184
270
|
|
271
|
+
|
185
272
|
// Default 940px grid
|
186
273
|
// -------------------------
|
187
274
|
$gridColumns: 12;
|
@@ -189,8 +276,26 @@ $gridColumnWidth: 60px;
|
|
189
276
|
$gridGutterWidth: 20px;
|
190
277
|
$gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1));
|
191
278
|
|
279
|
+
// 1200px min
|
280
|
+
$gridColumnWidth1200: 70px;
|
281
|
+
$gridGutterWidth1200: 30px;
|
282
|
+
$gridRowWidth1200: ($gridColumns * $gridColumnWidth1200) + ($gridGutterWidth1200 * ($gridColumns - 1));
|
283
|
+
|
284
|
+
// 768px-979px
|
285
|
+
$gridColumnWidth768: 42px;
|
286
|
+
$gridGutterWidth768: 20px;
|
287
|
+
$gridRowWidth768: ($gridColumns * $gridColumnWidth768) + ($gridGutterWidth768 * ($gridColumns - 1));
|
288
|
+
|
192
289
|
|
193
290
|
// Fluid grid
|
194
291
|
// -------------------------
|
195
|
-
$fluidGridColumnWidth:
|
196
|
-
$fluidGridGutterWidth:
|
292
|
+
$fluidGridColumnWidth: percentage($gridColumnWidth/$gridRowWidth);
|
293
|
+
$fluidGridGutterWidth: percentage($gridGutterWidth/$gridRowWidth);
|
294
|
+
|
295
|
+
// 1200px min
|
296
|
+
$fluidGridColumnWidth1200: percentage($gridColumnWidth1200/$gridRowWidth1200);
|
297
|
+
$fluidGridGutterWidth1200: percentage($gridGutterWidth1200/$gridRowWidth1200);
|
298
|
+
|
299
|
+
// 768px-979px
|
300
|
+
$fluidGridColumnWidth768: percentage($gridColumnWidth768/$gridRowWidth768);
|
301
|
+
$fluidGridGutterWidth768: percentage($gridGutterWidth768/$gridRowWidth768);
|
@@ -1,419 +1,59 @@
|
|
1
|
-
//
|
2
|
-
//
|
1
|
+
// Readable 2.2.2
|
2
|
+
// Bootswatch
|
3
3
|
// -----------------------------------------------------
|
4
4
|
|
5
|
+
|
5
6
|
// TYPOGRAPHY
|
6
7
|
// -----------------------------------------------------
|
7
8
|
|
8
|
-
|
9
|
-
line-height: 2em;
|
10
|
-
color: $textColor;
|
11
|
-
}
|
12
|
-
|
13
|
-
h1 {
|
14
|
-
font-size: 2em;
|
15
|
-
}
|
16
|
-
|
17
|
-
h2 {
|
18
|
-
font-size: 1.5em;
|
19
|
-
}
|
20
|
-
|
21
|
-
h3, h4, h5, h6 {
|
22
|
-
font-size: 1em;
|
23
|
-
text-transform: none;
|
24
|
-
}
|
25
|
-
|
26
|
-
small {
|
27
|
-
font-size: 13px;
|
28
|
-
}
|
29
|
-
|
30
|
-
.muted, .help-block, .uneditable-input, blockquote, small {
|
31
|
-
color: $grayLight;
|
32
|
-
}
|
9
|
+
@import url('//fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic');
|
33
10
|
|
34
11
|
// SCAFFOLDING
|
35
12
|
// -----------------------------------------------------
|
36
13
|
|
37
|
-
body {
|
38
|
-
padding-top: 20px !important;
|
39
|
-
}
|
40
|
-
|
41
|
-
.page-header {
|
42
|
-
padding-bottom: 1em;
|
43
|
-
border-bottom: 2px solid $grayLighter;
|
44
|
-
}
|
45
|
-
|
46
|
-
footer.footer {
|
47
|
-
padding-top: 2em;
|
48
|
-
padding-bottom: 3em;
|
49
|
-
border-top: 2px solid $grayLighter;
|
50
|
-
}
|
51
|
-
|
52
14
|
// NAVBAR
|
53
15
|
// -----------------------------------------------------
|
54
16
|
|
55
|
-
.navbar {
|
56
|
-
|
57
|
-
margin-left: 16px;
|
58
|
-
|
59
|
-
.navbar-inner {
|
60
|
-
@include box-shadow(none);
|
61
|
-
}
|
62
|
-
|
63
|
-
.brand {
|
64
|
-
color: $linkColor;
|
65
|
-
font-size: $baseFontSize;
|
66
|
-
font-weight: bold;
|
67
|
-
line-height: 1em;
|
68
|
-
padding: 10px 10px 11px;
|
69
|
-
|
70
|
-
&:hover {
|
71
|
-
color: $linkColorHover;
|
72
|
-
}
|
73
|
-
}
|
74
|
-
|
75
|
-
.nav > li > a {
|
76
|
-
text-shadow: none;
|
77
|
-
padding: 10px;
|
78
|
-
}
|
79
|
-
|
80
|
-
.nav > li.active > a,
|
81
|
-
.nav > li:active > a,
|
82
|
-
.dropdown.open .dropdown-toggle {
|
83
|
-
color: $linkColor;
|
84
|
-
}
|
85
|
-
|
86
|
-
.search-query {
|
87
|
-
border: 1px solid #D4D4D4;
|
88
|
-
@include border-radius(0);
|
89
|
-
color: $textColor;
|
90
|
-
background-color: $white;
|
91
|
-
}
|
92
|
-
|
93
|
-
.nav .dropdown-toggle .caret,
|
94
|
-
.nav .open.dropdown .caret {
|
95
|
-
border-top-color: $linkColor;
|
96
|
-
opacity: 1;
|
97
|
-
}
|
98
|
-
}
|
99
|
-
|
100
|
-
@media (max-width: 980px) {
|
101
|
-
form.navbar-form, form.navbar-search {
|
102
|
-
border-top: 1px solid #D4D4D4;
|
103
|
-
border-bottom: 1px solid #D4D4D4;
|
104
|
-
}
|
105
|
-
}
|
106
|
-
|
107
|
-
.navbar-fixed-top {
|
108
|
-
position: static;
|
109
|
-
margin-bottom: 1.6em;
|
110
|
-
}
|
111
|
-
|
112
17
|
div.subnav {
|
113
|
-
@include box-shadow(none);
|
114
|
-
@include border-radius(0);
|
115
|
-
background-color: $white;
|
116
|
-
background-image: none;
|
117
18
|
|
118
|
-
.nav
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
.nav > li.active > a,
|
123
|
-
.nav > li:active > a {
|
124
|
-
color: $linkColor;
|
125
|
-
@include box-shadow(none);
|
126
|
-
background-color: transparent;
|
127
|
-
}
|
128
|
-
|
129
|
-
.nav > li > a:hover,
|
130
|
-
.nav > li.active > a:hover,
|
131
|
-
.nav > li:active > a:hover {
|
132
|
-
color: $linkColorHover;
|
133
|
-
@include box-shadow(none);
|
134
|
-
background-color: transparent;
|
135
|
-
}
|
136
|
-
}
|
137
|
-
|
138
|
-
div.subnav-fixed {
|
139
|
-
position: static;
|
140
|
-
left: auto;
|
141
|
-
width: 100%;
|
142
|
-
margin: 0;
|
143
|
-
@include box-shadow(none);
|
144
|
-
@include border-radius(4px);
|
145
|
-
border: 1px solid #E5E5E5;
|
146
|
-
|
147
|
-
.nav {
|
148
|
-
width: auto;
|
149
|
-
padding: 0;
|
150
|
-
}
|
151
|
-
}
|
152
|
-
|
153
|
-
.dropdown-menu {
|
154
|
-
border: 1px solid #D4D4D4;
|
155
|
-
@include border-radius(0);
|
156
|
-
@include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2));
|
157
|
-
|
158
|
-
.divider {
|
159
|
-
margin: 5px 1px;
|
160
|
-
}
|
161
|
-
}
|
162
|
-
|
163
|
-
.navbar .nav-collapse.in {
|
164
|
-
|
165
|
-
.nav li:first-child > a {
|
166
|
-
margin-bottom: 10px;
|
167
|
-
}
|
168
|
-
|
169
|
-
.nav li > a {
|
170
|
-
color: $linkColor;
|
171
|
-
@include border-radius(0);
|
172
|
-
font-weight: normal;
|
173
|
-
|
174
|
-
&:hover {
|
175
|
-
color: $linkColorHover;
|
176
|
-
}
|
19
|
+
.nav > li > a,
|
20
|
+
.nav > .active > a,
|
21
|
+
.nav > .active > a:hover {
|
22
|
+
color: $textColor;
|
177
23
|
}
|
178
24
|
|
179
|
-
.
|
180
|
-
|
25
|
+
div.subnav-fixed {
|
26
|
+
top: $navbarHeight;
|
181
27
|
}
|
182
28
|
}
|
183
29
|
|
184
30
|
// NAV
|
185
31
|
// -----------------------------------------------------
|
186
32
|
|
187
|
-
.nav .dropdown .caret {
|
188
|
-
opacity: 1;
|
189
|
-
}
|
190
|
-
|
191
|
-
.nav-tabs {
|
192
|
-
|
193
|
-
li > a {
|
194
|
-
@include border-radius(0);
|
195
|
-
}
|
196
|
-
|
197
|
-
li > a:hover {
|
198
|
-
background-color: $bodyBackground;
|
199
|
-
}
|
200
|
-
|
201
|
-
li.active > a,
|
202
|
-
li.active > a:hover {
|
203
|
-
color: $textColor;
|
204
|
-
background-color: $bodyBackground;
|
205
|
-
}
|
206
|
-
}
|
207
|
-
|
208
|
-
.nav-tabs.nav-stacked {
|
209
|
-
|
210
|
-
li > a {
|
211
|
-
background-color: $white;
|
212
|
-
}
|
213
|
-
|
214
|
-
li.active > a,
|
215
|
-
li.active > a:hover,
|
216
|
-
li > a:hover {
|
217
|
-
background-color: #F5F5F5;
|
218
|
-
}
|
219
|
-
|
220
|
-
li:first-child > a,
|
221
|
-
li:last-child > a {
|
222
|
-
@include border-radius(0);
|
223
|
-
}
|
224
|
-
}
|
225
|
-
|
226
|
-
.nav-pills {
|
227
|
-
|
228
|
-
li > a {
|
229
|
-
@include border-radius(0);
|
230
|
-
}
|
231
|
-
|
232
|
-
li > a:hover {
|
233
|
-
background-color: $bodyBackground;
|
234
|
-
}
|
235
|
-
|
236
|
-
li.active > a,
|
237
|
-
li.active > a:hover {
|
238
|
-
color: $textColor;
|
239
|
-
background-color: $bodyBackground;
|
240
|
-
}
|
241
|
-
}
|
242
|
-
|
243
|
-
.nav-list {
|
244
|
-
|
245
|
-
li > a:hover,
|
246
|
-
li.active > a,
|
247
|
-
li.active > a:hover {
|
248
|
-
background-color: transparent;
|
249
|
-
text-shadow: none;
|
250
|
-
}
|
251
|
-
|
252
|
-
li.active > a,
|
253
|
-
li.active > a:hover {
|
254
|
-
color: $textColor;
|
255
|
-
}
|
256
|
-
|
257
|
-
[class^="icon-"] {
|
258
|
-
margin-top: 3px;
|
259
|
-
opacity: 0.8;
|
260
|
-
}
|
261
|
-
}
|
262
|
-
|
263
|
-
.breadcrumb {
|
264
|
-
@include border-radius(0);
|
265
|
-
background-color: $white;
|
266
|
-
background-image: none;
|
267
|
-
}
|
268
|
-
|
269
|
-
.pagination {
|
270
|
-
|
271
|
-
ul {
|
272
|
-
@include box-shadow(none);
|
273
|
-
}
|
274
|
-
|
275
|
-
li > a {
|
276
|
-
padding: 10px 14px;
|
277
|
-
}
|
278
|
-
|
279
|
-
|
280
|
-
li.active > a,
|
281
|
-
li.active > a:hover {
|
282
|
-
color: $textColor;
|
283
|
-
background-color: #F5F5F5;
|
284
|
-
}
|
285
|
-
|
286
|
-
li > a,
|
287
|
-
li.disabled > a,
|
288
|
-
li.disabled > a:hover {
|
289
|
-
background-color: $white;
|
290
|
-
}
|
291
|
-
|
292
|
-
li:first-child > a,
|
293
|
-
li:last-child > a {
|
294
|
-
@include border-radius(0);
|
295
|
-
}
|
296
|
-
}
|
297
|
-
|
298
|
-
.pager {
|
299
|
-
|
300
|
-
a {
|
301
|
-
@include border-radius(0);
|
302
|
-
}
|
303
|
-
}
|
304
|
-
|
305
33
|
// BUTTONS
|
306
34
|
// -----------------------------------------------------
|
307
35
|
|
308
|
-
|
309
|
-
|
310
|
-
}
|
311
|
-
|
312
|
-
.btn [class^="icon-"],
|
313
|
-
.btn [class*=" icon-"] {
|
314
|
-
margin-top: 4px;
|
315
|
-
}
|
316
|
-
|
317
|
-
.btn-large [class^="icon-"],
|
318
|
-
.btn-large [class*=" icon-"] {
|
319
|
-
margin-top: 6px;
|
320
|
-
margin-right: 2px;
|
321
|
-
}
|
322
|
-
|
323
|
-
.btn-small [class^="icon-"],
|
324
|
-
.btn-small [class*=" icon-"] {
|
325
|
-
margin-top: 3px;
|
326
|
-
}
|
327
|
-
|
328
|
-
.btn .caret {
|
329
|
-
margin-top: 13px;
|
330
|
-
}
|
36
|
+
// TABLES
|
37
|
+
// -----------------------------------------------------
|
331
38
|
|
332
39
|
// FORMS
|
333
40
|
// -----------------------------------------------------
|
334
41
|
|
335
|
-
|
336
|
-
font-family: $baseFontFamily;
|
337
|
-
}
|
338
|
-
|
339
|
-
input, textarea, select {
|
340
|
-
color: $textColor;
|
341
|
-
}
|
342
|
-
|
343
|
-
.form-actions {
|
344
|
-
background-color: transparent;
|
345
|
-
border-top: 1px solid #D4D4D4;
|
346
|
-
padding-top: 2em;
|
347
|
-
}
|
348
|
-
|
349
|
-
// TABLES
|
42
|
+
// DROPDOWNS
|
350
43
|
// -----------------------------------------------------
|
351
44
|
|
352
|
-
|
353
|
-
@include border-radius(0);
|
354
|
-
}
|
355
|
-
|
356
|
-
// MISCELLANEOUS
|
45
|
+
// ALERTS, LABELS, BADGES
|
357
46
|
// -----------------------------------------------------
|
358
47
|
|
359
|
-
|
360
|
-
|
361
|
-
@include border-radius(0);
|
362
|
-
border: 1px solid #D4D4D4;
|
363
|
-
color: $textColor;
|
364
|
-
text-shadow: none;
|
365
|
-
}
|
366
|
-
|
367
|
-
.alert-heading {
|
368
|
-
color: $textColor;
|
369
|
-
text-shadow: none;
|
370
|
-
}
|
371
|
-
|
372
|
-
.label, .label:hover {
|
373
|
-
background-color: $white;
|
374
|
-
font-weight: normal;
|
375
|
-
font-size: $baseFontSize;
|
376
|
-
padding: 4px;
|
377
|
-
}
|
378
|
-
|
379
|
-
.label-important, .label-important:hover { background-color: $errorBackground; }
|
380
|
-
|
381
|
-
.label-warning, .label-warning:hover { background-color: $warningBackground; }
|
382
|
-
|
383
|
-
.label-success, .label-success:hover { background-color: $successBackground; }
|
384
|
-
|
385
|
-
.label-info, .label-info:hover { background-color: $infoBackground; }
|
386
|
-
|
387
|
-
.well {
|
388
|
-
@include box-shadow(none);
|
389
|
-
border: 1px solid #D4D4D4;
|
390
|
-
@include border-radius(0);
|
391
|
-
background-color: $white;
|
392
|
-
}
|
393
|
-
|
394
|
-
blockquote {
|
395
|
-
border-left: 6px solid $grayLighter;
|
48
|
+
// MISC
|
49
|
+
// -----------------------------------------------------
|
396
50
|
|
397
|
-
|
398
|
-
border-right: 6px solid $grayLighter;
|
399
|
-
}
|
51
|
+
.hero-unit {
|
400
52
|
|
401
|
-
|
402
|
-
|
403
|
-
line-height: 1.2em;
|
53
|
+
h1, h2, h3, h4, h5, h6 {
|
54
|
+
margin: 13px 0;
|
404
55
|
}
|
405
56
|
}
|
406
57
|
|
407
|
-
|
408
|
-
|
409
|
-
}
|
410
|
-
|
411
|
-
.thumbnail, .thumbnail > img {
|
412
|
-
@include border-radius(0);
|
413
|
-
@include box-shadow(none);
|
414
|
-
}
|
415
|
-
|
416
|
-
code, pre {
|
417
|
-
@include border-radius(0);
|
418
|
-
background-color: $white;
|
419
|
-
}
|
58
|
+
// MEDIA QUERIES
|
59
|
+
// -----------------------------------------------------
|