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,3 @@
1
+ @import "variables";
2
+ @import "../bower_components/bootstrap-sass-official/assets/stylesheets/bootstrap";
3
+ @import "bootswatch";
@@ -0,0 +1,120 @@
1
+ // Journal 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ @import url("//fonts.googleapis.com/css?family=News+Cycle:400,700");
6
+
7
+ // Navbar =====================================================================
8
+
9
+ .navbar {
10
+ font-size: 18px;
11
+ font-family: $font-family-sans-serif;
12
+ font-weight: $headings-font-weight;
13
+
14
+ &-default {
15
+
16
+ .badge {
17
+ background-color: #000;
18
+ color: #fff;
19
+ }
20
+ }
21
+
22
+ &-inverse {
23
+
24
+ .badge {
25
+ background-color: #fff;
26
+ color: $navbar-inverse-bg;
27
+ }
28
+ }
29
+ }
30
+
31
+ .navbar-brand {
32
+ font-size: 18px;
33
+ font-weight: $headings-font-weight;
34
+ text-transform: uppercase;
35
+ }
36
+
37
+ // Buttons ====================================================================
38
+
39
+ // Typography =================================================================
40
+
41
+ // Tables =====================================================================
42
+
43
+ // Forms ======================================================================
44
+
45
+ .has-warning {
46
+ .help-block,
47
+ .control-label,
48
+ .form-control-feedback {
49
+ color: $brand-danger;
50
+ }
51
+
52
+ .form-control,
53
+ .form-control:focus {
54
+ border-color: $brand-danger;
55
+ }
56
+ }
57
+
58
+ .has-error {
59
+ .help-block,
60
+ .control-label,
61
+ .form-control-feedback {
62
+ color: $brand-primary;
63
+ }
64
+
65
+ .form-control,
66
+ .form-control:focus {
67
+ border-color: $brand-primary;
68
+ }
69
+ }
70
+
71
+ .has-success {
72
+ .help-block,
73
+ .control-label,
74
+ .form-control-feedback {
75
+ color: $brand-success;
76
+ }
77
+
78
+ .form-control,
79
+ .form-control:focus {
80
+ border-color: $brand-success;
81
+ }
82
+ }
83
+
84
+ // Navs =======================================================================
85
+
86
+ // Indicators =================================================================
87
+
88
+ .badge {
89
+ padding-bottom: 4px;
90
+ vertical-align: 3px;
91
+ font-size: 10px;
92
+ }
93
+
94
+ // Progress bars ==============================================================
95
+
96
+ // Containers =================================================================
97
+
98
+ .jumbotron {
99
+
100
+ h1, h2, h3, h4, h5, h6 {
101
+ font-family: $font-family-sans-serif;
102
+ font-weight: $headings-font-weight;
103
+ color: #000;
104
+ }
105
+ }
106
+
107
+ .panel {
108
+
109
+ &-primary,
110
+ &-success,
111
+ &-warning,
112
+ &-danger,
113
+ &-info {
114
+ .panel-title {
115
+ color: #fff;
116
+ }
117
+ }
118
+
119
+
120
+ }