bootswatch-sprockets 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +16 -0
  3. data/.gitmodules +3 -0
  4. data/Gemfile +4 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +54 -0
  7. data/Rakefile +2 -0
  8. data/assets/stylesheets/bootswatch/cerulean/_bootswatch.scss +125 -0
  9. data/assets/stylesheets/bootswatch/cerulean/_variables.scss +856 -0
  10. data/assets/stylesheets/bootswatch/cosmo/_bootswatch.scss +237 -0
  11. data/assets/stylesheets/bootswatch/cosmo/_variables.scss +856 -0
  12. data/assets/stylesheets/bootswatch/custom/_bootswatch.scss +22 -0
  13. data/assets/stylesheets/bootswatch/custom/_variables.scss +856 -0
  14. data/assets/stylesheets/bootswatch/cyborg/_bootswatch.scss +210 -0
  15. data/assets/stylesheets/bootswatch/cyborg/_variables.scss +856 -0
  16. data/assets/stylesheets/bootswatch/darkly/_bootswatch.scss +328 -0
  17. data/assets/stylesheets/bootswatch/darkly/_variables.scss +856 -0
  18. data/assets/stylesheets/bootswatch/flatly/_bootswatch.scss +311 -0
  19. data/assets/stylesheets/bootswatch/flatly/_variables.scss +856 -0
  20. data/assets/stylesheets/bootswatch/global/build.scss +3 -0
  21. data/assets/stylesheets/bootswatch/journal/_bootswatch.scss +120 -0
  22. data/assets/stylesheets/bootswatch/journal/_variables.scss +856 -0
  23. data/assets/stylesheets/bootswatch/lumen/_bootswatch.scss +481 -0
  24. data/assets/stylesheets/bootswatch/lumen/_variables.scss +856 -0
  25. data/assets/stylesheets/bootswatch/paper/_bootswatch.scss +408 -0
  26. data/assets/stylesheets/bootswatch/paper/_variables.scss +856 -0
  27. data/assets/stylesheets/bootswatch/readable/_bootswatch.scss +187 -0
  28. data/assets/stylesheets/bootswatch/readable/_variables.scss +856 -0
  29. data/assets/stylesheets/bootswatch/sandstone/_bootswatch.scss +195 -0
  30. data/assets/stylesheets/bootswatch/sandstone/_variables.scss +856 -0
  31. data/assets/stylesheets/bootswatch/simplex/_bootswatch.scss +142 -0
  32. data/assets/stylesheets/bootswatch/simplex/_variables.scss +856 -0
  33. data/assets/stylesheets/bootswatch/slate/_bootswatch.scss +417 -0
  34. data/assets/stylesheets/bootswatch/slate/_variables.scss +856 -0
  35. data/assets/stylesheets/bootswatch/spacelab/_bootswatch.scss +137 -0
  36. data/assets/stylesheets/bootswatch/spacelab/_variables.scss +856 -0
  37. data/assets/stylesheets/bootswatch/superhero/_bootswatch.scss +332 -0
  38. data/assets/stylesheets/bootswatch/superhero/_variables.scss +856 -0
  39. data/assets/stylesheets/bootswatch/united/_bootswatch.scss +42 -0
  40. data/assets/stylesheets/bootswatch/united/_variables.scss +856 -0
  41. data/assets/stylesheets/bootswatch/yeti/_bootswatch.scss +437 -0
  42. data/assets/stylesheets/bootswatch/yeti/_variables.scss +856 -0
  43. data/bootswatch_sprockets.gemspec +32 -0
  44. data/lib/bootswatch_sprockets/version.rb +3 -0
  45. data/lib/bootswatch_sprockets.rb +5 -0
  46. metadata +144 -0
@@ -0,0 +1,332 @@
1
+ // Superhero 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ @import url("//fonts.googleapis.com/css?family=Lato:300,400,700");
6
+
7
+ // Navbar =====================================================================
8
+
9
+ .navbar {
10
+ @include box-shadow(none);
11
+ border: none;
12
+ font-size: 12px;
13
+
14
+ &-default {
15
+
16
+ .badge {
17
+ background-color: #fff;
18
+ color: $navbar-default-bg;
19
+ }
20
+ }
21
+
22
+ &-inverse {
23
+
24
+ .badge {
25
+ background-color: #fff;
26
+ color: $navbar-inverse-bg;
27
+ }
28
+ }
29
+ }
30
+
31
+ // Buttons ====================================================================
32
+
33
+ .btn {
34
+
35
+ font-weight: 300;
36
+
37
+ &-default {
38
+ &:hover {
39
+ background-color: darken($btn-default-bg, 3%);
40
+ }
41
+ }
42
+
43
+ &-sm,
44
+ &-xs {
45
+ font-size: 12px;
46
+ }
47
+ }
48
+
49
+ // Typography =================================================================
50
+
51
+ body {
52
+ font-weight: 300;
53
+ }
54
+
55
+ .text-primary,
56
+ .text-primary:hover {
57
+ color: $brand-primary;
58
+ }
59
+
60
+ .text-success,
61
+ .text-success:hover {
62
+ color: $brand-success;
63
+ }
64
+
65
+ .text-danger,
66
+ .text-danger:hover {
67
+ color: $brand-danger;
68
+ }
69
+
70
+ .text-warning,
71
+ .text-warning:hover {
72
+ color: $brand-warning;
73
+ }
74
+
75
+ .text-info,
76
+ .text-info:hover {
77
+ color: $brand-info;
78
+ }
79
+
80
+ .page-header {
81
+ border-bottom-color: $table-border-color;
82
+ }
83
+
84
+ .dropdown-menu {
85
+
86
+ border: none;
87
+ margin: 0;
88
+ @include box-shadow(none);
89
+
90
+ > li > a {
91
+ font-size: 12px;
92
+ font-weight: 300;
93
+ }
94
+ }
95
+
96
+ .btn-group.open .dropdown-toggle {
97
+ @include box-shadow(none);
98
+ }
99
+
100
+ .dropdown-header {
101
+ font-size: 12px;
102
+ }
103
+
104
+ // Tables =====================================================================
105
+
106
+ table,
107
+ .table {
108
+ font-size: 12px;
109
+
110
+ a:not(.btn) {
111
+ color: #fff;
112
+ text-decoration: underline;
113
+ }
114
+
115
+ .dropdown-menu a {
116
+ text-decoration: none;
117
+ }
118
+
119
+ .text-muted {
120
+ color: $text-muted;
121
+ }
122
+
123
+ > thead > tr > th,
124
+ > tbody > tr > th,
125
+ > tfoot > tr > th,
126
+ > thead > tr > td,
127
+ > tbody > tr > td,
128
+ > tfoot > tr > td {
129
+ border-color: transparent;
130
+ }
131
+ }
132
+
133
+ // Forms ======================================================================
134
+
135
+ input,
136
+ textarea {
137
+ color: $input-color;
138
+ }
139
+
140
+ label,
141
+ .radio label,
142
+ .checkbox label,
143
+ .help-block {
144
+ font-size: 12px;
145
+ font-weight: 300;
146
+ }
147
+
148
+ .input-addon,
149
+ .input-group-addon {
150
+ color: $text-color;
151
+ }
152
+
153
+ .has-warning {
154
+ .help-block,
155
+ .control-label,
156
+ .form-control-feedback {
157
+ color: $brand-warning;
158
+ }
159
+
160
+ .input-group-addon {
161
+ border: none;
162
+ }
163
+ }
164
+
165
+ .has-error {
166
+ .help-block,
167
+ .control-label,
168
+ .form-control-feedback {
169
+ color: $brand-danger;
170
+ }
171
+
172
+ .input-group-addon {
173
+ border: none;
174
+ }
175
+ }
176
+
177
+ .has-success {
178
+ .help-block,
179
+ .control-label,
180
+ .form-control-feedback {
181
+ color: $brand-success;
182
+ }
183
+
184
+ .input-group-addon {
185
+ border: none;
186
+ }
187
+ }
188
+
189
+ .form-control:focus {
190
+ @include box-shadow(none);
191
+ }
192
+
193
+ .has-warning,
194
+ .has-error,
195
+ .has-success {
196
+ .form-control:focus {
197
+ @include box-shadow(none);
198
+ }
199
+ }
200
+
201
+ // Navs =======================================================================
202
+
203
+ .nav {
204
+ .open > a,
205
+ .open > a:hover,
206
+ .open > a:focus {
207
+ border-color: transparent;
208
+ }
209
+ }
210
+
211
+ .nav-tabs {
212
+ > li > a {
213
+ color: $text-color;
214
+ }
215
+ }
216
+
217
+ .nav-pills {
218
+ > li > a {
219
+ color: $text-color;
220
+ }
221
+ }
222
+
223
+ .pager {
224
+ a {
225
+ color: $text-color;
226
+ }
227
+ }
228
+
229
+ // Indicators =================================================================
230
+
231
+ .label {
232
+ font-weight: 300;
233
+ }
234
+
235
+ .alert {
236
+ color: #fff;
237
+
238
+ a,
239
+ .alert-link {
240
+ color: #fff;
241
+ }
242
+ }
243
+
244
+ .close {
245
+ opacity: 0.4;
246
+
247
+ &:hover,
248
+ &:focus {
249
+ opacity: 1;
250
+ }
251
+ }
252
+
253
+ // Progress bars ==============================================================
254
+
255
+ // Containers =================================================================
256
+
257
+ .well {
258
+ @include box-shadow(none);
259
+ }
260
+
261
+ a.list-group-item {
262
+
263
+ &.active,
264
+ &.active:hover,
265
+ &.active:focus {
266
+ border: none;
267
+ }
268
+
269
+ &-success {
270
+ &.active {
271
+ background-color: $state-success-bg;
272
+ }
273
+
274
+ &.active:hover,
275
+ &.active:focus {
276
+ background-color: darken($state-success-bg, 5%);
277
+ }
278
+ }
279
+
280
+ &-warning {
281
+ &.active {
282
+ background-color: $state-warning-bg;
283
+ }
284
+
285
+ &.active:hover,
286
+ &.active:focus {
287
+ background-color: darken($state-warning-bg, 5%);
288
+ }
289
+ }
290
+
291
+ &-danger {
292
+ &.active {
293
+ background-color: $state-danger-bg;
294
+ }
295
+
296
+ &.active:hover,
297
+ &.active:focus {
298
+ background-color: darken($state-danger-bg, 5%);
299
+ }
300
+ }
301
+ }
302
+
303
+ .panel {
304
+ border: none;
305
+
306
+ &-default > .panel-heading {
307
+ background-color: $table-bg-hover;
308
+ color: $text-color;
309
+ }
310
+ }
311
+
312
+ .thumbnail {
313
+ background-color: $well-bg;
314
+ border: none;
315
+ }
316
+
317
+ .modal {
318
+ padding: 0;
319
+
320
+ &-header,
321
+ &-footer {
322
+ background-color: $table-bg-hover;
323
+ border: none;
324
+ border-radius: 0;
325
+ }
326
+ }
327
+
328
+ .popover {
329
+ &-title {
330
+ border: none;
331
+ }
332
+ }