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,210 @@
1
+ // Cyborg 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ @import url("//fonts.googleapis.com/css?family=Roboto:400,700");
6
+
7
+ // Navbar =====================================================================
8
+
9
+ // Buttons ====================================================================
10
+
11
+ // Typography =================================================================
12
+
13
+ .text-primary,
14
+ .text-primary:hover {
15
+ color: $brand-primary;
16
+ }
17
+
18
+ .text-success,
19
+ .text-success:hover {
20
+ color: $brand-success;
21
+ }
22
+
23
+ .text-danger,
24
+ .text-danger:hover {
25
+ color: $brand-danger;
26
+ }
27
+
28
+ .text-warning,
29
+ .text-warning:hover {
30
+ color: $brand-warning;
31
+ }
32
+
33
+ .text-info,
34
+ .text-info:hover {
35
+ color: $brand-info;
36
+ }
37
+
38
+ // Tables =====================================================================
39
+
40
+ table,
41
+ .table {
42
+ color: #fff;
43
+
44
+ a:not(.btn) {
45
+ color: #fff;
46
+ text-decoration: underline;
47
+ }
48
+
49
+ .dropdown-menu a {
50
+ text-decoration: none;
51
+ }
52
+
53
+ .text-muted {
54
+ color: $text-muted;
55
+ }
56
+ }
57
+
58
+ .table-responsive > .table {
59
+ background-color: $table-bg;
60
+ }
61
+
62
+ // Forms ======================================================================
63
+
64
+ .has-warning {
65
+ .help-block,
66
+ .control-label,
67
+ .form-control-feedback {
68
+ color: $brand-warning;
69
+ }
70
+
71
+ .form-control,
72
+ .form-control:focus,
73
+ .input-group-addon {
74
+ border-color: $brand-warning;
75
+ }
76
+ }
77
+
78
+ .has-error {
79
+ .help-block,
80
+ .control-label,
81
+ .form-control-feedback {
82
+ color: $brand-danger;
83
+ }
84
+
85
+ .form-control,
86
+ .form-control:focus,
87
+ .input-group-addon {
88
+ border-color: $brand-danger;
89
+ }
90
+ }
91
+
92
+ .has-success {
93
+ .help-block,
94
+ .control-label,
95
+ .form-control-feedback {
96
+ color: $brand-success;
97
+ }
98
+
99
+ .form-control,
100
+ .form-control:focus,
101
+ .input-group-addon {
102
+ border-color: $brand-success;
103
+ }
104
+ }
105
+
106
+ legend {
107
+ color: #fff;
108
+ }
109
+
110
+ .input-group-addon {
111
+ background-color: $btn-default-bg;
112
+ }
113
+
114
+ // Navs =======================================================================
115
+
116
+ .nav-tabs,
117
+ .nav-pills,
118
+ .breadcrumb,
119
+ .pager {
120
+
121
+ a {
122
+ color: #fff;
123
+ }
124
+ }
125
+
126
+ // Indicators =================================================================
127
+
128
+ .alert {
129
+
130
+ .alert-link,
131
+ a {
132
+ color: $alert-warning-text;
133
+ text-decoration: underline;
134
+ }
135
+
136
+ .close {
137
+ text-decoration: none;
138
+ }
139
+ }
140
+
141
+ .close {
142
+ color: #fff;
143
+ text-decoration: none;
144
+ opacity: 0.4;
145
+
146
+ &:hover,
147
+ &:focus {
148
+ color: #fff;
149
+ opacity: 1;
150
+ }
151
+ }
152
+
153
+ // Progress bars ==============================================================
154
+
155
+ // Containers =================================================================
156
+
157
+ a.thumbnail:hover,
158
+ a.thumbnail:focus,
159
+ a.thumbnail.active {
160
+ border-color: $thumbnail-border;
161
+ }
162
+
163
+ a.list-group-item {
164
+
165
+ &.active,
166
+ &.active:hover,
167
+ &.active:focus {
168
+ border-color: $list-group-border;
169
+ }
170
+
171
+ &-success {
172
+ &.active {
173
+ background-color: $state-success-bg;
174
+ }
175
+
176
+ &.active:hover,
177
+ &.active:focus {
178
+ background-color: darken($state-success-bg, 5%);
179
+ }
180
+ }
181
+
182
+ &-warning {
183
+ &.active {
184
+ background-color: $state-warning-bg;
185
+ }
186
+
187
+ &.active:hover,
188
+ &.active:focus {
189
+ background-color: darken($state-warning-bg, 5%);
190
+ }
191
+ }
192
+
193
+ &-danger {
194
+ &.active {
195
+ background-color: $state-danger-bg;
196
+ }
197
+
198
+ &.active:hover,
199
+ &.active:focus {
200
+ background-color: darken($state-danger-bg, 5%);
201
+ }
202
+ }
203
+ }
204
+
205
+ .jumbotron {
206
+
207
+ h1, h2, h3, h4, h5, h6 {
208
+ color: #fff;
209
+ }
210
+ }