humdrum-rails 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (75) hide show
  1. data/.gitignore +18 -0
  2. data/Features.md +23 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +1 -0
  7. data/humdrum-rails.gemspec +30 -0
  8. data/lib/humdrum/version.rb +4 -0
  9. data/lib/humdrum.rb +4 -0
  10. data/lib/rails/generators/humdrum/layout/layout_generator.rb +133 -0
  11. data/lib/rails/generators/humdrum/layout/templates/controllers/admin_controller.rb +5 -0
  12. data/lib/rails/generators/humdrum/layout/templates/controllers/application_controller.rb +14 -0
  13. data/lib/rails/generators/humdrum/layout/templates/controllers/public_controller.rb +5 -0
  14. data/lib/rails/generators/humdrum/layout/templates/controllers/user_controller.rb +5 -0
  15. data/lib/rails/generators/humdrum/layout/templates/controllers/welcome_controller.rb +7 -0
  16. data/lib/rails/generators/humdrum/layout/templates/helpers/display_helper.rb +41 -0
  17. data/lib/rails/generators/humdrum/layout/templates/helpers/meta_tags_helper.rb +3 -0
  18. data/lib/rails/generators/humdrum/layout/templates/helpers/navigation_helper.rb +19 -0
  19. data/lib/rails/generators/humdrum/layout/templates/helpers/title_helper.rb +15 -0
  20. data/lib/rails/generators/humdrum/layout/templates/images/favicon.ico +0 -0
  21. data/lib/rails/generators/humdrum/layout/templates/images/glyphicons-halflings-white.png +0 -0
  22. data/lib/rails/generators/humdrum/layout/templates/images/glyphicons-halflings.png +0 -0
  23. data/lib/rails/generators/humdrum/layout/templates/javascripts/bootstrap.js +2276 -0
  24. data/lib/rails/generators/humdrum/layout/templates/javascripts/modernizr.2.6.2.js +815 -0
  25. data/lib/rails/generators/humdrum/layout/templates/stylesheets/bootstrap-responsive.css +1109 -0
  26. data/lib/rails/generators/humdrum/layout/templates/stylesheets/bootstrap.css +6158 -0
  27. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/boilerplate.css.scss +299 -0
  28. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/box.css.scss +57 -0
  29. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/caligraphy.css.scss +30 -0
  30. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/dividers.css.scss +18 -0
  31. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/form.css.scss +80 -0
  32. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/misc.css.scss +9 -0
  33. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/normalize.css.scss +533 -0
  34. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/palettes.css.scss +66 -0
  35. data/lib/rails/generators/humdrum/layout/templates/stylesheets/humdrum/positioning.css.scss +702 -0
  36. data/lib/rails/generators/humdrum/layout/templates/stylesheets/overrides-bootstrap.css +24 -0
  37. data/lib/rails/generators/humdrum/layout/templates/views/layouts/admin/_footer.html.erb +0 -0
  38. data/lib/rails/generators/humdrum/layout/templates/views/layouts/admin/_header.html.erb +35 -0
  39. data/lib/rails/generators/humdrum/layout/templates/views/layouts/admin/_navbar.html.erb +0 -0
  40. data/lib/rails/generators/humdrum/layout/templates/views/layouts/admin.html.erb +65 -0
  41. data/lib/rails/generators/humdrum/layout/templates/views/layouts/common/_flash_message.html.erb +24 -0
  42. data/lib/rails/generators/humdrum/layout/templates/views/layouts/common/_meta_tags.html.erb +42 -0
  43. data/lib/rails/generators/humdrum/layout/templates/views/layouts/common/_overlays.html.erb +9 -0
  44. data/lib/rails/generators/humdrum/layout/templates/views/layouts/public/_footer.html.erb +0 -0
  45. data/lib/rails/generators/humdrum/layout/templates/views/layouts/public/_header.html.erb +35 -0
  46. data/lib/rails/generators/humdrum/layout/templates/views/layouts/public/_navbar.html.erb +0 -0
  47. data/lib/rails/generators/humdrum/layout/templates/views/layouts/public.html.erb +65 -0
  48. data/lib/rails/generators/humdrum/layout/templates/views/layouts/user/_footer.html.erb +0 -0
  49. data/lib/rails/generators/humdrum/layout/templates/views/layouts/user/_header.html.erb +35 -0
  50. data/lib/rails/generators/humdrum/layout/templates/views/layouts/user/_navbar.html.erb +0 -0
  51. data/lib/rails/generators/humdrum/layout/templates/views/layouts/user.html.erb +65 -0
  52. data/lib/rails/generators/humdrum/layout/templates/views/welcome/index.html.erb +5 -0
  53. data/lib/rails/generators/humdrum/resource/resource_generator.rb +237 -0
  54. data/lib/rails/generators/humdrum/resource/templates/config/locales/humdrum.en.yml +6 -0
  55. data/lib/rails/generators/humdrum/resource/templates/controllers/resource_controller.rb +192 -0
  56. data/lib/rails/generators/humdrum/resource/templates/migrations/create_resources.rb +14 -0
  57. data/lib/rails/generators/humdrum/resource/templates/models/resource.rb +5 -0
  58. data/lib/rails/generators/humdrum/resource/templates/views/resource/_edit.html.erb +7 -0
  59. data/lib/rails/generators/humdrum/resource/templates/views/resource/_filters.html.erb +9 -0
  60. data/lib/rails/generators/humdrum/resource/templates/views/resource/_form.html.erb +44 -0
  61. data/lib/rails/generators/humdrum/resource/templates/views/resource/_index.html.erb +22 -0
  62. data/lib/rails/generators/humdrum/resource/templates/views/resource/_item.html.erb +21 -0
  63. data/lib/rails/generators/humdrum/resource/templates/views/resource/_nav_filters.html.erb +9 -0
  64. data/lib/rails/generators/humdrum/resource/templates/views/resource/_new.html.erb +9 -0
  65. data/lib/rails/generators/humdrum/resource/templates/views/resource/_show.html.erb +38 -0
  66. data/lib/rails/generators/humdrum/resource/templates/views/resource/_summary.html.erb +10 -0
  67. data/lib/rails/generators/humdrum/resource/templates/views/resource/create.js.erb +15 -0
  68. data/lib/rails/generators/humdrum/resource/templates/views/resource/destroy.js.erb +14 -0
  69. data/lib/rails/generators/humdrum/resource/templates/views/resource/edit.js.erb +2 -0
  70. data/lib/rails/generators/humdrum/resource/templates/views/resource/index.html.erb +33 -0
  71. data/lib/rails/generators/humdrum/resource/templates/views/resource/index.js.erb +15 -0
  72. data/lib/rails/generators/humdrum/resource/templates/views/resource/new.js.erb +2 -0
  73. data/lib/rails/generators/humdrum/resource/templates/views/resource/show.js.erb +2 -0
  74. data/lib/rails/generators/humdrum/resource/templates/views/resource/update.js.erb +14 -0
  75. metadata +170 -0
@@ -0,0 +1,702 @@
1
+ /* Clear Both Classes */
2
+ .cl {
3
+ clear: both;
4
+ display: block; }
5
+
6
+ .cl-3 {
7
+ clear: both;
8
+ display: block;
9
+ height: 3px; }
10
+
11
+ .cl-4 {
12
+ clear: both;
13
+ display: block;
14
+ height: 4px; }
15
+
16
+ .cl-5 {
17
+ clear: both;
18
+ display: block;
19
+ height: 5px; }
20
+
21
+ .cl-10 {
22
+ clear: both;
23
+ display: block;
24
+ height: 10px; }
25
+
26
+ .cl-15 {
27
+ clear: both;
28
+ display: block;
29
+ height: 15px; }
30
+
31
+ .cl-20 {
32
+ clear: both;
33
+ display: block;
34
+ height: 20px; }
35
+
36
+ .cl-30 {
37
+ clear: both;
38
+ display: block;
39
+ height: 30px; }
40
+
41
+ .cl-50 {
42
+ clear: both;
43
+ display: block;
44
+ height: 50px; }
45
+
46
+ .cl-40 {
47
+ clear: both;
48
+ display: block;
49
+ height: 40px; }
50
+
51
+ .cl-60 {
52
+ clear: both;
53
+ display: block;
54
+ height: 60px; }
55
+
56
+
57
+
58
+ /* Margin Classes */
59
+ .margin-auto {
60
+ margin: 0px auto !important; }
61
+
62
+ .margin-0 {
63
+ margin: 0px !important; }
64
+
65
+ .margin-2 {
66
+ margin: 2px !important; }
67
+
68
+ .margin-3 {
69
+ margin: 3px !important; }
70
+
71
+ .margin-5 {
72
+ margin: 5px !important; }
73
+
74
+ .margin-10 {
75
+ margin: 10px !important; }
76
+
77
+ .margin-15 {
78
+ margin: 15px !important; }
79
+
80
+ .margin-20 {
81
+ margin: 20px !important; }
82
+
83
+ .margin-25 {
84
+ margin: 25px !important; }
85
+
86
+ .margin-30 {
87
+ margin: 30px !important; }
88
+
89
+ .margin-40 {
90
+ margin: 40px !important; }
91
+
92
+ .margin-50 {
93
+ margin: 50px !important; }
94
+
95
+ .margin-60 {
96
+ margin: 60px !important; }
97
+
98
+ .margin-70 {
99
+ margin: 70px !important; }
100
+
101
+ .margin-80 {
102
+ margin: 80px !important; }
103
+
104
+ .margin-90 {
105
+ margin: 90px !important; }
106
+
107
+ .margin-100 {
108
+ margin: 100px !important; }
109
+
110
+ .margin-top-0 {
111
+ margin-top: 0px !important; }
112
+
113
+ .margin-top-2 {
114
+ margin-top: 2px !important; }
115
+
116
+ .margin-top-3 {
117
+ margin-top: 3px !important; }
118
+
119
+ .margin-top-5 {
120
+ margin-top: 5px !important; }
121
+
122
+ .margin-top-10 {
123
+ margin-top: 10px !important; }
124
+
125
+ .margin-top-15 {
126
+ margin-top: 15px !important; }
127
+
128
+ .margin-top-20 {
129
+ margin-top: 20px !important; }
130
+
131
+ .margin-top-25 {
132
+ margin-top: 25px !important; }
133
+
134
+ .margin-top-30 {
135
+ margin-top: 30px !important; }
136
+
137
+ .margin-top-40 {
138
+ margin-top: 40px !important; }
139
+
140
+ .margin-top-50 {
141
+ margin-top: 50px !important; }
142
+
143
+ .margin-top-60 {
144
+ margin-top: 60px !important; }
145
+
146
+ .margin-top-70 {
147
+ margin-top: 70px !important; }
148
+
149
+ .margin-top-80 {
150
+ margin-top: 80px !important; }
151
+
152
+ .margin-top-90 {
153
+ margin-top: 90px !important; }
154
+
155
+ .margin-top-100 {
156
+ margin-top: 100px !important; }
157
+
158
+ .margin-bottom-0 {
159
+ margin-bottom: 0px !important; }
160
+
161
+ .margin-bottom-2 {
162
+ margin-bottom: 2px !important; }
163
+
164
+ .margin-bottom-3 {
165
+ margin-bottom: 3px !important; }
166
+
167
+ .margin-bottom-5 {
168
+ margin-bottom: 5px !important; }
169
+
170
+ .margin-bottom-10 {
171
+ margin-bottom: 10px !important; }
172
+
173
+ .margin-bottom-15 {
174
+ margin-bottom: 15px !important; }
175
+
176
+ .margin-bottom-20 {
177
+ margin-bottom: 20px !important; }
178
+
179
+ .margin-bottom-25 {
180
+ margin-bottom: 25px !important; }
181
+
182
+ .margin-bottom-30 {
183
+ margin-bottom: 30px !important; }
184
+
185
+ .margin-bottom-40 {
186
+ margin-bottom: 40px !important; }
187
+
188
+ .margin-bottom-50 {
189
+ margin-bottom: 50px !important; }
190
+
191
+ .margin-bottom-60 {
192
+ margin-bottom: 60px !important; }
193
+
194
+ .margin-bottom-70 {
195
+ margin-bottom: 70px !important; }
196
+
197
+ .margin-bottom-80 {
198
+ margin-bottom: 80px !important; }
199
+
200
+ .margin-bottom-90 {
201
+ margin-bottom: 90px !important; }
202
+
203
+ .margin-bottom-100 {
204
+ margin-bottom: 100px !important; }
205
+
206
+ .margin-left-0 {
207
+ margin-left: 0px !important; }
208
+
209
+ .margin-left-2 {
210
+ margin-left: 2px !important; }
211
+
212
+ .margin-left-3 {
213
+ margin-left: 3px !important; }
214
+
215
+ .margin-left-5 {
216
+ margin-left: 5px !important; }
217
+
218
+ .margin-left-10 {
219
+ margin-left: 10px !important; }
220
+
221
+ .margin-left-15 {
222
+ margin-left: 15px !important; }
223
+
224
+ .margin-left-20 {
225
+ margin-left: 20px !important; }
226
+
227
+ .margin-left-25 {
228
+ margin-left: 25px !important; }
229
+
230
+ .margin-left-30 {
231
+ margin-left: 30px !important; }
232
+
233
+ .margin-left-40 {
234
+ margin-left: 40px !important; }
235
+
236
+ .margin-left-45 {
237
+ margin-left: 45px !important; }
238
+
239
+ .margin-left-50 {
240
+ margin-left: 50px !important; }
241
+
242
+ .margin-left-55 {
243
+ margin-left: 55px !important; }
244
+
245
+ .margin-left-60 {
246
+ margin-left: 60px !important; }
247
+
248
+ .margin-left-70 {
249
+ margin-left: 70px !important; }
250
+
251
+ .margin-left-80 {
252
+ margin-left: 80px !important; }
253
+
254
+ .margin-left-90 {
255
+ margin-left: 90px !important; }
256
+
257
+ .margin-left-100 {
258
+ margin-left: 100px !important; }
259
+
260
+ .margin-right-0 {
261
+ margin-right: 0px !important; }
262
+
263
+ .margin-right-2 {
264
+ margin-right: 2px !important; }
265
+
266
+ .margin-right-3 {
267
+ margin-right: 3px !important; }
268
+
269
+ .margin-right-5 {
270
+ margin-right: 5px !important; }
271
+
272
+ .margin-right-10 {
273
+ margin-right: 10px !important; }
274
+
275
+ .margin-right-15 {
276
+ margin-right: 15px !important; }
277
+
278
+ .margin-right-20 {
279
+ margin-right: 20px !important; }
280
+
281
+ .margin-right-25 {
282
+ margin-right: 25px !important; }
283
+
284
+ .margin-right-28 {
285
+ margin-right: 28px !important; }
286
+
287
+ .margin-right-30 {
288
+ margin-right: 30px !important; }
289
+
290
+ .margin-right-35 {
291
+ margin-right: 35px !important; }
292
+
293
+ .margin-right-40 {
294
+ margin-right: 40px !important; }
295
+
296
+ .margin-right-50 {
297
+ margin-right: 50px !important; }
298
+
299
+ .margin-right-60 {
300
+ margin-right: 60px !important; }
301
+
302
+ .margin-right-70 {
303
+ margin-right: 70px !important; }
304
+
305
+ .margin-right-80 {
306
+ margin-right: 80px !important; }
307
+
308
+ .margin-right-90 {
309
+ margin-right: 90px !important; }
310
+
311
+ .margin-right-100 {
312
+ margin-right: 100px !important; }
313
+
314
+ .margin-top-minus-3 {
315
+ margin-top: -3px !important; }
316
+
317
+ .margin-top-minus-5 {
318
+ margin-top: -5px !important; }
319
+
320
+ .margin-top-minus-10 {
321
+ margin-top: -10px !important; }
322
+
323
+ .margin-top-minus-15 {
324
+ margin-top: -15px !important; }
325
+
326
+ .margin-top-minus-20 {
327
+ margin-top: -20px !important; }
328
+
329
+ .margin-top-minus-25 {
330
+ margin-top: -25px !important; }
331
+
332
+ /* Padding Classes */
333
+ .padding-0 {
334
+ padding: 0px !important; }
335
+
336
+ .padding-2 {
337
+ padding: 2px !important; }
338
+
339
+ .padding-3 {
340
+ padding: 3px !important; }
341
+
342
+ .padding-5 {
343
+ padding: 5px !important; }
344
+
345
+ .padding-10 {
346
+ padding: 10px !important; }
347
+
348
+ .padding-15 {
349
+ padding: 15px !important; }
350
+
351
+ .padding-20 {
352
+ padding: 20px !important; }
353
+
354
+ .padding-30 {
355
+ padding: 30px !important; }
356
+
357
+ .padding-40 {
358
+ padding: 40px !important; }
359
+
360
+ .padding-50 {
361
+ padding: 50px !important; }
362
+
363
+ .padding-60 {
364
+ padding: 60px !important; }
365
+
366
+ .padding-70 {
367
+ padding: 70px !important; }
368
+
369
+ .padding-80 {
370
+ padding: 80px !important; }
371
+
372
+ .padding-90 {
373
+ padding: 90px !important; }
374
+
375
+ .padding-100 {
376
+ padding: 100px !important; }
377
+
378
+ .padding-top-0 {
379
+ padding-top: 0px !important; }
380
+
381
+ .padding-top-2 {
382
+ padding-top: 2px !important; }
383
+
384
+ .padding-top-3 {
385
+ padding-top: 3px !important; }
386
+
387
+ .padding-top-5 {
388
+ padding-top: 5px !important; }
389
+
390
+ .padding-top-10 {
391
+ padding-top: 10px !important; }
392
+
393
+ .padding-top-15 {
394
+ padding-top: 15px !important; }
395
+
396
+ .padding-top-20 {
397
+ padding-top: 20px !important; }
398
+
399
+ .padding-top-30 {
400
+ padding-top: 30px !important; }
401
+
402
+ .padding-top-40 {
403
+ padding-top: 40px !important; }
404
+
405
+ .padding-top-50 {
406
+ padding-top: 50px !important; }
407
+
408
+ .padding-top-60 {
409
+ padding-top: 60px !important; }
410
+
411
+ .padding-top-70 {
412
+ padding-top: 70px !important; }
413
+
414
+ .padding-top-80 {
415
+ padding-top: 80px !important; }
416
+
417
+ .padding-top-90 {
418
+ padding-top: 90px !important; }
419
+
420
+ .padding-top-100 {
421
+ padding-top: 100px !important; }
422
+
423
+ .padding-bottom-0 {
424
+ padding-bottom: 0px !important; }
425
+
426
+ .padding-bottom-2 {
427
+ padding-bottom: 2px !important; }
428
+
429
+ .padding-bottom-3 {
430
+ padding-bottom: 3px !important; }
431
+
432
+ .padding-bottom-5 {
433
+ padding-bottom: 5px !important; }
434
+
435
+ .padding-bottom-10 {
436
+ padding-bottom: 10px !important; }
437
+
438
+ .padding-bottom-15 {
439
+ padding-bottom: 15px !important; }
440
+
441
+ .padding-bottom-20 {
442
+ padding-bottom: 20px !important; }
443
+
444
+ .padding-bottom-30 {
445
+ padding-bottom: 30px !important; }
446
+
447
+ .padding-bottom-40 {
448
+ padding-bottom: 40px !important; }
449
+
450
+ .padding-bottom-50 {
451
+ padding-bottom: 50px !important; }
452
+
453
+ .padding-bottom-60 {
454
+ padding-bottom: 60px !important; }
455
+
456
+ .padding-bottom-70 {
457
+ padding-bottom: 70px !important; }
458
+
459
+ .padding-bottom-80 {
460
+ padding-bottom: 80px !important; }
461
+
462
+ .padding-bottom-90 {
463
+ padding-bottom: 90px !important; }
464
+
465
+ .padding-bottom-100 {
466
+ padding-bottom: 100px !important; }
467
+
468
+ .padding-left-0 {
469
+ padding-left: 0px !important; }
470
+
471
+ .padding-left-2 {
472
+ padding-left: 2px !important; }
473
+
474
+ .padding-left-3 {
475
+ padding-left: 3px !important; }
476
+
477
+ .padding-left-5 {
478
+ padding-left: 5px !important; }
479
+
480
+ .padding-left-10 {
481
+ padding-left: 10px !important; }
482
+
483
+ .padding-left-15 {
484
+ padding-left: 15px !important; }
485
+
486
+ .padding-left-20 {
487
+ padding-left: 20px !important; }
488
+
489
+ .padding-left-30 {
490
+ padding-left: 30px !important; }
491
+
492
+ .padding-left-40 {
493
+ padding-left: 40px !important; }
494
+
495
+ .padding-left-50 {
496
+ padding-left: 50px !important; }
497
+
498
+ .padding-left-60 {
499
+ padding-left: 60px !important; }
500
+
501
+ .padding-left-70 {
502
+ padding-left: 70px !important; }
503
+
504
+ .padding-left-80 {
505
+ padding-left: 80px !important; }
506
+
507
+ .padding-left-90 {
508
+ padding-left: 90px !important; }
509
+
510
+ .padding-left-100 {
511
+ padding-left: 100px !important; }
512
+
513
+ .padding-right-0 {
514
+ padding-right: 0px !important; }
515
+
516
+ .padding-right-2 {
517
+ padding-right: 2px !important; }
518
+
519
+ .padding-right-3 {
520
+ padding-right: 3px !important; }
521
+
522
+ .padding-right-5 {
523
+ padding-right: 5px !important; }
524
+
525
+ .padding-right-10 {
526
+ padding-right: 10px !important; }
527
+
528
+ .padding-right-15 {
529
+ padding-right: 15px !important; }
530
+
531
+ .padding-right-20 {
532
+ padding-right: 20px !important; }
533
+
534
+ .padding-right-30 {
535
+ padding-right: 30px !important; }
536
+
537
+ .padding-right-40 {
538
+ padding-right: 40px !important; }
539
+
540
+ .padding-right-50 {
541
+ padding-right: 50px !important; }
542
+
543
+ .padding-right-60 {
544
+ padding-right: 60px !important; }
545
+
546
+ .padding-right-70 {
547
+ padding-right: 70px !important; }
548
+
549
+ .padding-right-80 {
550
+ padding-right: 80px !important; }
551
+
552
+ .padding-right-90 {
553
+ padding-right: 90px !important; }
554
+
555
+ .padding-right-100 {
556
+ padding-right: 100px !important; }
557
+
558
+ .width-3 {
559
+ width: 3% !important; }
560
+
561
+ .width-4 {
562
+ width: 4% !important; }
563
+
564
+ .width-5 {
565
+ width: 5% !important; }
566
+
567
+ .width-6 {
568
+ width: 6% !important; }
569
+
570
+ .width-8 {
571
+ width: 8% !important; }
572
+
573
+ .width-10 {
574
+ width: 10% !important; }
575
+
576
+ .width-15 {
577
+ width: 15% !important; }
578
+
579
+ .width-20 {
580
+ width: 20% !important; }
581
+
582
+ .width-25 {
583
+ width: 25% !important; }
584
+
585
+ .width-30 {
586
+ width: 30% !important; }
587
+
588
+ .width-35 {
589
+ width: 35% !important; }
590
+
591
+ .width-40 {
592
+ width: 40% !important; }
593
+
594
+ .width-45 {
595
+ width: 45% !important; }
596
+
597
+ .width-50 {
598
+ width: 50% !important; }
599
+
600
+ .width-55 {
601
+ width: 55% !important; }
602
+
603
+ .width-60 {
604
+ width: 60% !important; }
605
+
606
+ .width-65 {
607
+ width: 65% !important; }
608
+
609
+ .width-70 {
610
+ width: 70% !important; }
611
+
612
+ .width-75 {
613
+ width: 75% !important; }
614
+
615
+ .width-80 {
616
+ width: 80% !important; }
617
+
618
+ .width-85 {
619
+ width: 85% !important; }
620
+
621
+ .width-90 {
622
+ width: 90% !important; }
623
+
624
+ .width-95 {
625
+ width: 95% !important; }
626
+
627
+ .width-100 {
628
+ width: 100% !important; }
629
+
630
+ .min-height-20{ min-height:20px !important;}
631
+ .min-height-30{ min-height:30px !important;}
632
+ .min-height-40{ min-height:40px !important;}
633
+ .min-height-50{ min-height:50px !important;}
634
+ .min-height-60{ min-height:60px !important;}
635
+ .min-height-70{ min-height:70px !important;}
636
+ .min-height-80{ min-height:80px !important;}
637
+ .min-height-90{ min-height:90px !important;}
638
+ .min-height-100{ min-height:100px !important;}
639
+ .min-height-150{ min-height:150px !important;}
640
+ .min-height-200{ min-height:200px !important;}
641
+ .min-height-250{ min-height:250px !important;}
642
+ .min-height-300{ min-height:300px !important;}
643
+ .min-height-350{ min-height:350px !important;}
644
+ .min-height-400{ min-height:400px !important;}
645
+ .min-height-450{ min-height:450px !important;}
646
+ .min-height-500{ min-height:500px !important;}
647
+ .min-height-550{ min-height:550px !important;}
648
+ .min-height-600{ min-height:600px !important;}
649
+ .min-height-650{ min-height:650px !important;}
650
+ .min-height-700{ min-height:700px !important;}
651
+ .min-height-750{ min-height:750px !important;}
652
+ .min-height-800{ min-height:800px !important;}
653
+ .min-height-850{ min-height:850px !important;}
654
+ .min-height-900{ min-height:900px !important;}
655
+
656
+ .height-10{height:10px !important;}
657
+ .height-15{height:15px !important;}
658
+ .height-20{height:20px !important;}
659
+ .height-25{height:25px !important;}
660
+ .height-30{height:30px !important;}
661
+ .height-35{height:35px !important;}
662
+ .height-40{height:40px !important;}
663
+ .height-45{height:45px !important;}
664
+ .height-50{height:50px !important;}
665
+ .height-55{height:55px !important;}
666
+ .height-60{height:60px !important;}
667
+ .height-65{height:65px !important;}
668
+ .height-70{height:70px !important;}
669
+ .height-75{height:75px !important;}
670
+ .height-80{height:80px !important;}
671
+ .height-85{height:85px !important;}
672
+ .height-90{height:90px !important;}
673
+ .height-95{height:95px !important;}
674
+ .height-100{height:100px !important;}
675
+ .height-110{height:110px !important;}
676
+ .height-120{height:120px !important;}
677
+ .height-130{height:130px !important;}
678
+ .height-140{height:140px !important;}
679
+ .height-150{height:150px !important;}
680
+ .height-160{height:160px !important;}
681
+ .height-170{height:170px !important;}
682
+ .height-180{height:180px !important;}
683
+ .height-190{height:190px !important;}
684
+ .height-200{height:200px !important;}
685
+ .height-250{height:250px !important;}
686
+ .height-300{height:300px !important;}
687
+ .height-350{height:350px !important;}
688
+ .height-400{height:400px !important;}
689
+ .height-450{height:450px !important;}
690
+ .height-500{height:500px !important;}
691
+ .height-550{height:550px !important;}
692
+ .height-600{height:600px !important;}
693
+ .height-650{height:650px !important;}
694
+ .height-700{height:700px !important;}
695
+ .height-750{height:750px !important;}
696
+ .height-800{height:800px !important;}
697
+ .height-850{height:850px !important;}
698
+ .height-900{height:900px !important;}
699
+
700
+ /* To make element block type / inline */
701
+ .inline-element { display:inline !important; }
702
+ .block-element { display:block !important; }
@@ -0,0 +1,24 @@
1
+ body {padding-top:50px;font-size:12px;}
2
+
3
+ /* Gliphicons Icon Path */
4
+
5
+ [class^="icon-"], [class*=" icon-"] {background-image: url("../assets/glyphicons-halflings.png");}
6
+
7
+ .icon-white,
8
+ .nav-pills > .active > a > [class^="icon-"],
9
+ .nav-pills > .active > a > [class*=" icon-"],
10
+ .nav-list > .active > a > [class^="icon-"],
11
+ .nav-list > .active > a > [class*=" icon-"],
12
+ .navbar-inverse .nav > .active > a > [class^="icon-"],
13
+ .navbar-inverse .nav > .active > a > [class*=" icon-"],
14
+ .dropdown-menu > li > a:hover > [class^="icon-"],
15
+ .dropdown-menu > li > a:hover > [class*=" icon-"],
16
+ .dropdown-menu > .active > a > [class^="icon-"],
17
+ .dropdown-menu > .active > a > [class*=" icon-"],
18
+ .dropdown-submenu:hover > a > [class^="icon-"],
19
+ .dropdown-submenu:hover > a > [class*=" icon-"] {
20
+ background-image: url(/assets/glyphicons-halflings-white.png); }
21
+
22
+ /* This will compact the alert boxes */
23
+ .alert .close {top: -5px;}
24
+ .alert p {margin: 0px;}