bootswatch-rails 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. data/.gitmodules +3 -0
  2. data/HISTORY.md +7 -0
  3. data/README.md +16 -7
  4. data/Rakefile +32 -0
  5. data/converter +112 -0
  6. data/lib/bootswatch-rails/version.rb +1 -1
  7. data/vendor/assets/stylesheets/bootswatch/amelia/_bootswatch.scss +375 -229
  8. data/vendor/assets/stylesheets/bootswatch/amelia/_variables.scss +166 -60
  9. data/vendor/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +122 -37
  10. data/vendor/assets/stylesheets/bootswatch/cerulean/_variables.scss +148 -43
  11. data/vendor/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +62 -61
  12. data/vendor/assets/stylesheets/bootswatch/cosmo/_variables.scss +22 -23
  13. data/vendor/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +352 -236
  14. data/vendor/assets/stylesheets/bootswatch/cyborg/_variables.scss +147 -42
  15. data/vendor/assets/stylesheets/bootswatch/journal/_bootswatch.scss +277 -72
  16. data/vendor/assets/stylesheets/bootswatch/journal/_variables.scss +159 -54
  17. data/vendor/assets/stylesheets/bootswatch/readable/_bootswatch.scss +21 -381
  18. data/vendor/assets/stylesheets/bootswatch/readable/_variables.scss +161 -56
  19. data/vendor/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +46 -29
  20. data/vendor/assets/stylesheets/bootswatch/simplex/_variables.scss +42 -20
  21. data/vendor/assets/stylesheets/bootswatch/slate/_bootswatch.scss +420 -267
  22. data/vendor/assets/stylesheets/bootswatch/slate/_variables.scss +150 -45
  23. data/vendor/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +55 -102
  24. data/vendor/assets/stylesheets/bootswatch/spacelab/_variables.scss +94 -70
  25. data/vendor/assets/stylesheets/bootswatch/spruce/_bootswatch.scss +476 -301
  26. data/vendor/assets/stylesheets/bootswatch/spruce/_variables.scss +171 -66
  27. data/vendor/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +293 -255
  28. data/vendor/assets/stylesheets/bootswatch/superhero/_variables.scss +132 -30
  29. data/vendor/assets/stylesheets/bootswatch/united/_bootswatch.scss +85 -44
  30. data/vendor/assets/stylesheets/bootswatch/united/_variables.scss +143 -38
  31. metadata +5 -2
@@ -1,11 +1,9 @@
1
- // Variables to customize the look and feel of Bootstrap
2
- // Swatch: Amelia
3
- // Version: 2.0.2
4
- // -----------------------------------------------------
5
-
1
+ // Amelia 2.2.2
2
+ // Variables
3
+ // --------------------------------------------------
6
4
 
7
5
 
8
- // GLOBAL VALUES
6
+ // Global values
9
7
  // --------------------------------------------------
10
8
 
11
9
 
@@ -13,7 +11,7 @@
13
11
  // -------------------------
14
12
  $black: #000;
15
13
  $grayDarker: #111;
16
- $grayDark: #333;
14
+ $grayDark: #444;
17
15
  $gray: #555;
18
16
  $grayLight: #aaa;
19
17
  $grayLighter: #ddd;
@@ -24,9 +22,9 @@ $white: #fff;
24
22
  // -------------------------
25
23
  $blue: #00BCE1;
26
24
  $blueDark: #1269B0;
27
- $green: #7FC518;
28
- $red: #E51925;
29
- $yellow: #EAC504;
25
+ $green: #48CA3B;
26
+ $red: #AD1D28;
27
+ $yellow: #DEBB27;
30
28
  $orange: #DF6E1E;
31
29
  $pink: #FFBCB9;
32
30
  $purple: #4D3A7D;
@@ -40,51 +38,145 @@ $textColor: rgba(255, 255, 255, 0.9);
40
38
 
41
39
  // Links
42
40
  // -------------------------
43
- $linkColor: lighten($yellow, .15);
41
+ $linkColor: lighten($yellow, 15%);
44
42
  $linkColorHover: $linkColor;
45
43
 
46
44
 
47
45
  // Typography
48
46
  // -------------------------
47
+ $sansFontFamily: 'Cabin', Verdana, 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: 'Cabin', Verdana, sans-serif;
52
+ $baseFontFamily: $sansFontFamily;
51
53
  $baseLineHeight: 20px;
52
- $altFontFamily: Georgia, "Times New Roman", Times, serif;
54
+ $altFontFamily: $serifFontFamily;
53
55
 
54
56
  $headingsFontFamily: 'Lobster', cursive; // empty to use BS default, $baseFontFamily
55
57
  $headingsFontWeight: normal; // instead of browser default, bold
56
58
  $headingsColor: inherit; // empty to use BS default, $textColor
57
59
 
58
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: 20px 24px; // 58px
70
+ $paddingSmall: 8px 12px; // 34px
71
+ $paddingMini: 4px 8px; // 28px
72
+
73
+ $baseBorderRadius: 0;
74
+ $borderRadiusLarge: 6px;
75
+ $borderRadiusSmall: 3px;
76
+
77
+
59
78
  // Tables
60
79
  // -------------------------
61
- $tableBackground: lighten(#147E88, .1); // overall background-color
62
- $tableBackgroundAccent: lighten(#147E88, .15); // for striping
80
+ $tableBackground: lighten(#147E88, 10%); // overall background-color
81
+ $tableBackgroundAccent: lighten(#147E88, 15%); // for striping
63
82
  $tableBackgroundHover: rgba(255, 255, 255, 0.4); // for hover
64
- $tableBorder: lighten(#147E88, .12); // table and cell border
83
+ $tableBorder: lighten(#147E88, 12%); // table and cell border
84
+
85
+
86
+ // Navbar
87
+ // -------------------------
88
+ $navbarCollapseWidth: 979px;
89
+ $navbarCollapseDesktopWidth: $navbarCollapseWidth + 1;
90
+
91
+ $navbarHeight: 50px;
92
+ $navbarBackgroundHighlight: $red;
93
+ $navbarBackground: $red;
94
+ $navbarBorder: darken($navbarBackground, 12%);
95
+
96
+ $navbarText: $white;
97
+ $navbarLinkColor: $white;
98
+ $navbarLinkColorHover: $white;
99
+ $navbarLinkColorActive: $navbarLinkColorHover;
100
+ $navbarLinkBackgroundHover: lighten($navbarBackground, 10%);
101
+ $navbarLinkBackgroundActive: lighten($navbarBackground, 10%);
102
+
103
+ $navbarBrandColor: $navbarLinkColor;
104
+
105
+ // Inverted navbar
106
+ $navbarInverseBackground: $yellow;
107
+ $navbarInverseBackgroundHighlight: $yellow;
108
+ $navbarInverseBorder: rgba(0, 0, 0, 0.1);
109
+
110
+ $navbarInverseText: $white;
111
+ $navbarInverseLinkColor: $white;
112
+ $navbarInverseLinkColorHover: $white;
113
+ $navbarInverseLinkColorActive: $white;
114
+ $navbarInverseLinkBackgroundHover: rgba(255, 255, 255, 0.2);
115
+ $navbarInverseLinkBackgroundActive: rgba(255, 255, 255, 0.2);
116
+
117
+ $navbarInverseSearchBackground: lighten($navbarInverseBackground, 25%);
118
+ $navbarInverseSearchBackgroundFocus: $white;
119
+ $navbarInverseSearchBorder: $navbarInverseBackground;
120
+ $navbarInverseSearchPlaceholderColor: $white;
121
+
122
+ $navbarInverseBrandColor: $navbarInverseLinkColor;
123
+
124
+
125
+ // Buttons
126
+ // -------------------------
127
+ $btnBackground: $grayLighter;
128
+ $btnBackgroundHighlight: $grayLighter;
129
+ $btnBorder: rgba(0, 0, 0, 0);
130
+
131
+ $btnPrimaryBackground: $navbarBackground;
132
+ $btnPrimaryBackgroundHighlight: $navbarBackground;
133
+
134
+ $btnInfoBackground: $purple;
135
+ $btnInfoBackgroundHighlight: $purple;
136
+
137
+ $btnSuccessBackground: $green;
138
+ $btnSuccessBackgroundHighlight: $green;
139
+
140
+ $btnWarningBackground: $orange;
141
+ $btnWarningBackgroundHighlight: $orange;
142
+
143
+ $btnDangerBackground: $yellow;
144
+ $btnDangerBackgroundHighlight: $yellow;
145
+
146
+ $btnInverseBackground: #27666D;
147
+ $btnInverseBackgroundHighlight: #27666D;
65
148
 
66
149
 
67
150
  // Forms
68
151
  // -------------------------
69
152
  $inputBackground: $white;
70
153
  $inputBorder: transparent;
154
+ $inputBorderRadius: $baseBorderRadius;
71
155
  $inputDisabledBackground: $grayLighter;
156
+ $formActionsBackground: transparent;
157
+ $inputHeight: $baseLineHeight + 10px; // base line-height + 8px vertical padding + 2px top/bottom border
72
158
 
73
159
 
74
160
  // Dropdowns
75
161
  // -------------------------
76
162
  $dropdownBackground: $white;
77
163
  $dropdownBorder: rgba(0,0,0,.2);
78
- $dropdownLinkColor: $bodyBackground;
164
+ $dropdownDividerTop: #e5e5e5;
165
+ $dropdownDividerBottom: $white;
166
+
167
+ $dropdownLinkColor: $grayDark;
79
168
  $dropdownLinkColorHover: $white;
80
- $dropdownLinkBackgroundHover: rgba(0, 57, 59, 0.9);
169
+ $dropdownLinkColorActive: $white;
81
170
 
171
+ $dropdownLinkBackgroundActive: $red;
172
+ $dropdownLinkBackgroundHover: $red;
82
173
 
83
174
 
84
175
 
85
176
  // COMPONENT VARIABLES
86
177
  // --------------------------------------------------
87
178
 
179
+
88
180
  // Z-index master list
89
181
  // -------------------------
90
182
  // Used for a bird's eye view of components dependent on the z-axis
@@ -97,6 +189,12 @@ $zindexModalBackdrop: 1040;
97
189
  $zindexModal: 1050;
98
190
 
99
191
 
192
+ // Sprite icons path
193
+ // -------------------------
194
+ $iconSpritePath: "../img/glyphicons-halflings.png";
195
+ $iconWhiteSpritePath: "../img/glyphicons-halflings-white.png";
196
+
197
+
100
198
  // Input placeholder text color
101
199
  // -------------------------
102
200
  $placeholderText: $grayLight;
@@ -107,48 +205,21 @@ $placeholderText: $grayLight;
107
205
  $hrBorder: transparent;
108
206
 
109
207
 
110
- // Navbar
208
+ // Horizontal forms & lists
111
209
  // -------------------------
112
- $navbarHeight: 50px;
113
- $navbarBackground: #AD1D28;
114
- $navbarBackgroundHighlight: #AD1D28;
115
-
116
- $navbarText: $white;
117
- $navbarLinkColor: $white;
118
- $navbarLinkColorHover: $white;
119
- $navbarLinkColorActive: $navbarLinkColorHover;
120
- $navbarLinkBackgroundHover: lighten($navbarBackground, .1);
121
- $navbarLinkBackgroundActive: lighten($navbarBackground, .1);
122
-
123
- $navbarSearchBackground: rgba(0, 0, 0, 0);
124
- $navbarSearchBackgroundFocus: lighten($navbarBackground, .25);
125
- $navbarSearchBorder: darken($navbarSearchBackground, .3);
126
- $navbarSearchPlaceholderColor: $textColor;
210
+ $horizontalComponentOffset: 180px;
127
211
 
128
212
 
129
- // Buttons
213
+ // Wells
130
214
  // -------------------------
131
- $btnBackground: $grayLighter;
132
- $btnBackgroundHighlight: $grayLighter;
133
- $btnBorder: rgba(0, 0, 0, 0);
215
+ $wellBackground: #3CB9C6;
134
216
 
135
- $btnPrimaryBackground: $navbarBackground;
136
- $btnPrimaryBackgroundHighlight: adjust-hue($btnPrimaryBackground, .15);
137
217
 
138
- $btnInfoBackground: $purple;
139
- $btnInfoBackgroundHighlight: $purple;
140
-
141
- $btnSuccessBackground: $green;
142
- $btnSuccessBackgroundHighlight: $green;
143
-
144
- $btnWarningBackground: $orange;
145
- $btnWarningBackgroundHighlight: $orange;
146
-
147
- $btnDangerBackground: darken($yellow, .03);
148
- $btnDangerBackgroundHighlight: darken($yellow, .03);
149
-
150
- $btnInverseBackground: #27666D;
151
- $btnInverseBackgroundHighlight: #27666D;
218
+ // Pagination
219
+ // -------------------------
220
+ $paginationBackground: #3CB9C6;
221
+ $paginationBorder: transparent;
222
+ $paginationActiveBackground: rgba(255, 255, 255, 0.4);
152
223
 
153
224
 
154
225
  // Hero unit
@@ -162,26 +233,43 @@ $heroUnitLeadColor: inherit;
162
233
  // -------------------------
163
234
  $warningText: #c09853;
164
235
  $warningBackground: #fcf8e3;
165
- $warningBorder: darken(adjust-hue($warningBackground, -10), .03);
236
+ $warningBorder: darken(adjust-hue($warningBackground, -10), 3%);
166
237
 
167
238
  $errorText: #b94a48;
168
239
  $errorBackground: #f2dede;
169
- $errorBorder: darken(adjust-hue($errorBackground, -10), .03);
240
+ $errorBorder: darken(adjust-hue($errorBackground, -10), 3%);
170
241
 
171
242
  $successText: #468847;
172
243
  $successBackground: #dff0d8;
173
- $successBorder: darken(adjust-hue($successBackground, -10), .05);
244
+ $successBorder: darken(adjust-hue($successBackground, -10), 5%);
174
245
 
175
246
  $infoText: #3a87ad;
176
247
  $infoBackground: #d9edf7;
177
- $infoBorder: darken(adjust-hue($infoBackground, -10), .07);
248
+ $infoBorder: darken(adjust-hue($infoBackground, -10), 7%);
249
+
250
+
251
+ // Tooltips and popovers
252
+ // -------------------------
253
+ $tooltipColor: #fff;
254
+ $tooltipBackground: #000;
255
+ $tooltipArrowWidth: 5px;
256
+ $tooltipArrowColor: $tooltipBackground;
257
+
258
+ $popoverBackground: #fff;
259
+ $popoverArrowWidth: 10px;
260
+ $popoverArrowColor: #fff;
261
+ $popoverTitleBackground: $navbarBackground;
178
262
 
263
+ // Special enhancement for popovers
264
+ $popoverArrowOuterWidth: $popoverArrowWidth + 1;
265
+ $popoverArrowOuterColor: rgba(0,0,0,.25);
179
266
 
180
267
 
181
268
 
182
269
  // GRID
183
270
  // --------------------------------------------------
184
271
 
272
+
185
273
  // Default 940px grid
186
274
  // -------------------------
187
275
  $gridColumns: 12;
@@ -189,8 +277,26 @@ $gridColumnWidth: 60px;
189
277
  $gridGutterWidth: 20px;
190
278
  $gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1));
191
279
 
280
+ // 1200px min
281
+ $gridColumnWidth1200: 70px;
282
+ $gridGutterWidth1200: 30px;
283
+ $gridRowWidth1200: ($gridColumns * $gridColumnWidth1200) + ($gridGutterWidth1200 * ($gridColumns - 1));
284
+
285
+ // 768px-979px
286
+ $gridColumnWidth768: 42px;
287
+ $gridGutterWidth768: 20px;
288
+ $gridRowWidth768: ($gridColumns * $gridColumnWidth768) + ($gridGutterWidth768 * ($gridColumns - 1));
289
+
192
290
 
193
291
  // Fluid grid
194
292
  // -------------------------
195
- $fluidGridColumnWidth: 6.382978723%;
196
- $fluidGridGutterWidth: 2.127659574%;
293
+ $fluidGridColumnWidth: percentage($gridColumnWidth/$gridRowWidth);
294
+ $fluidGridGutterWidth: percentage($gridGutterWidth/$gridRowWidth);
295
+
296
+ // 1200px min
297
+ $fluidGridColumnWidth1200: percentage($gridColumnWidth1200/$gridRowWidth1200);
298
+ $fluidGridGutterWidth1200: percentage($gridGutterWidth1200/$gridRowWidth1200);
299
+
300
+ // 768px-979px
301
+ $fluidGridColumnWidth768: percentage($gridColumnWidth768/$gridRowWidth768);
302
+ $fluidGridGutterWidth768: percentage($gridGutterWidth768/$gridRowWidth768);
@@ -1,60 +1,131 @@
1
- // Swatch: Cerulean
2
- // Version: 2.0.2
1
+ // Cerulean 2.2.2
2
+ // Bootswatch
3
3
  // -----------------------------------------------------
4
4
 
5
+
5
6
  // TYPOGRAPHY
6
7
  // -----------------------------------------------------
7
8
 
8
- @import url("https://fonts.googleapis.com/css?family=Telex");
9
+ @import url(//fonts.googleapis.com/css?family=Telex);
9
10
 
10
- .navbar, .subnav {
11
- font-family: $headingsFontFamily;
12
- }
11
+ // SCAFFOLDING
12
+ // -----------------------------------------------------
13
13
 
14
14
  // NAVBAR
15
15
  // -----------------------------------------------------
16
16
 
17
- .navbar-inner {
18
- @include gradient-vertical-three-colors($navbarBackground, $navbarBackground, .9, $navbarBackgroundHighlight);
19
- }
17
+ .navbar {
20
18
 
21
- .navbar .nav .active > a,
22
- .navbar .nav .active > a:hover {
23
- background-color: $navbarBackground;
24
- background-color: rgba(0,0,0,.2);
25
- }
26
19
 
27
- .navbar .search-query {
28
- border: 1px solid darken($linkColor, .1);
29
- }
20
+ .brand {
21
+ padding: 14px 20px 16px;
22
+ font-family: $headingsFontFamily;
23
+ text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
24
+ }
25
+
26
+ li {
27
+ line-height: 20px;
28
+ }
29
+
30
+ .nav > li > a {
31
+ padding: 16px 10px 14px;
32
+ font-family: $headingsFontFamily;
33
+ text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
34
+ }
35
+
36
+ .search-query {
37
+ border: 1px solid darken($linkColor, 10%);
38
+ line-height: normal;
39
+ }
30
40
 
31
- // responsive menu colors
41
+ .navbar-text {
42
+ padding: 19px 10px 18px;
43
+ line-height: 13px;
44
+ color: rgba(0, 0, 0, 0.5);
45
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
46
+ }
32
47
 
33
- .navbar .nav-collapse.in > .nav > li .dropdown-menu a {
34
- color: $white;
48
+ .navbar-inverse {
35
49
 
36
- &:hover {
37
- color: $white;
50
+ .navbar-search .search-query {
51
+ color: $textColor;
52
+ }
38
53
  }
39
54
  }
40
55
 
41
- .navbar .nav-collapse.in .nav li > a {
42
- color: $white;
56
+ @media (max-width: $navbarCollapseWidth) {
57
+
58
+ .navbar .nav-collapse {
59
+
60
+ .nav li > a {
61
+
62
+ font-family: $headingsFontFamily;
63
+ font-weight: normal;
64
+ color: $white;
65
+ text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
66
+
67
+ &:hover {
68
+ background-color: #2B7CAC;
69
+ }
70
+ }
71
+
72
+ .nav .active > a {
73
+ @include box-shadow(none);
74
+ background-color: #2B7CAC;
75
+ }
76
+
77
+ .dropdown-menu li > a:hover,
78
+ .dropdown-menu li > a:focus,
79
+ .dropdown-submenu:hover > a {
80
+ background-image: none;
81
+ }
82
+
83
+ .navbar-form,
84
+ .navbar-search {
85
+ border: none;
86
+ }
43
87
 
44
- &:hover {
45
- background-color: #2B7CAC;
88
+ .nav-header {
89
+ color: #2B7CAC;
90
+ }
91
+ }
92
+
93
+ .navbar-inverse .nav-collapse {
94
+
95
+ .nav li > a {
96
+ color: $navbarInverseLinkColor;
97
+
98
+ &:hover {
99
+ background-color: rgba(0, 0, 0, 0.1);
100
+ }
101
+ }
102
+
103
+ .nav .active > a,
104
+ .nav > li > a:hover,
105
+ .dropdown-menu a:hover {
106
+ background-color: rgba(0, 0, 0, 0.1) !important;
107
+ }
46
108
  }
47
109
  }
48
110
 
49
- .btn-navbar:hover {
50
- background-color: darken($white, .2);
111
+ div.subnav {
112
+
113
+ font-family: $headingsFontFamily;
114
+ text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.2);
115
+
116
+ div.subnav-fixed {
117
+ top: $navbarHeight;
118
+ }
51
119
  }
52
120
 
121
+ // NAV
122
+ // -----------------------------------------------------
123
+
53
124
  // BUTTONS
54
125
  // -----------------------------------------------------
55
126
 
56
127
  .btn {
57
- @include gradient-vertical-three-colors($white, $white, .05, darken($white, 0));
128
+ @include gradient-vertical-three-colors($white, $white, 5%, darken($white, 0%));
58
129
  $shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);
59
130
  @include box-shadow($shadow);
60
131
 
@@ -64,33 +135,47 @@
64
135
  }
65
136
 
66
137
  .btn-primary {
67
- @include buttonBackground(lighten($btnPrimaryBackground, .05), $btnPrimaryBackground);
138
+ @include buttonBackground(lighten($btnPrimaryBackground, 5%), $btnPrimaryBackground);
68
139
  }
69
140
 
70
141
  .btn-info {
71
- @include buttonBackground(lighten($btnInfoBackground, .05), $btnInfoBackground);
142
+ @include buttonBackground(lighten($btnInfoBackground, 5%), $btnInfoBackground);
72
143
  }
73
144
 
74
145
  .btn-success {
75
- @include buttonBackground(lighten($btnSuccessBackground, .05), $btnSuccessBackground);
146
+ @include buttonBackground(lighten($btnSuccessBackground, 5%), $btnSuccessBackground);
76
147
  }
77
148
 
78
149
  .btn-warning {
79
- @include buttonBackground(lighten($btnWarningBackground, .05), $btnWarningBackground);
150
+ @include buttonBackground(lighten($btnWarningBackground, 5%), $btnWarningBackground);
80
151
  }
81
152
 
82
153
  .btn-danger {
83
- @include buttonBackground(lighten($btnDangerBackground, .05), $btnDangerBackground);
154
+ @include buttonBackground(lighten($btnDangerBackground, 5%), $btnDangerBackground);
84
155
  }
85
156
 
86
157
  .btn-inverse {
87
- @include buttonBackground(lighten($btnInverseBackground, .05), $btnInverseBackground);
158
+ @include buttonBackground(lighten($btnInverseBackground, 5%), $btnInverseBackground);
88
159
  }
89
160
 
90
- // ICONS
161
+ // TABLES
162
+ // -----------------------------------------------------
163
+
164
+ // FORMS
165
+ // -----------------------------------------------------
166
+
167
+ // DROPDOWNS
168
+ // -----------------------------------------------------
169
+
170
+ // ALERTS, LABELS, BADGES
171
+ // -----------------------------------------------------
172
+
173
+ // MISC
91
174
  // -----------------------------------------------------
92
175
 
93
- // Make icons gray
94
176
  i[class^="icon-"]{
95
177
  opacity: 0.8;
96
178
  }
179
+
180
+ // MEDIA QUERIES
181
+ // -----------------------------------------------------