bootswatch-sprockets 0.1.1

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 (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,237 @@
1
+ // Cosmo 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ @import url("//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700");
6
+
7
+ // Navbar =====================================================================
8
+
9
+ .navbar {
10
+
11
+ &-inverse {
12
+
13
+ .badge {
14
+ background-color: #fff;
15
+ color: $brand-primary;
16
+ }
17
+ }
18
+ }
19
+
20
+ // Buttons ====================================================================
21
+
22
+ // Typography =================================================================
23
+
24
+ body {
25
+ -webkit-font-smoothing: antialiased;
26
+ }
27
+
28
+ .text-primary,
29
+ .text-primary:hover {
30
+ color: $brand-primary;
31
+ }
32
+
33
+ .text-success,
34
+ .text-success:hover {
35
+ color: $brand-success;
36
+ }
37
+
38
+ .text-danger,
39
+ .text-danger:hover {
40
+ color: $brand-danger;
41
+ }
42
+
43
+ .text-warning,
44
+ .text-warning:hover {
45
+ color: $brand-warning;
46
+ }
47
+
48
+ .text-info,
49
+ .text-info:hover {
50
+ color: $brand-info;
51
+ }
52
+
53
+ // Tables =====================================================================
54
+
55
+ table,
56
+ .table {
57
+
58
+ a:not(.btn) {
59
+ text-decoration: underline;
60
+ }
61
+
62
+ .dropdown-menu a {
63
+ text-decoration: none;
64
+ }
65
+
66
+ .success,
67
+ .warning,
68
+ .danger,
69
+ .info {
70
+ color: #fff;
71
+
72
+ a {
73
+ color: #fff;
74
+ }
75
+ }
76
+ }
77
+
78
+ // Forms ======================================================================
79
+
80
+
81
+ .has-warning {
82
+ .help-block,
83
+ .control-label,
84
+ .form-control-feedback {
85
+ color: $brand-warning;
86
+ }
87
+
88
+ .form-control,
89
+ .form-control:focus,
90
+ .input-group-addon {
91
+ border: 1px solid $brand-warning;
92
+ }
93
+ }
94
+
95
+ .has-error {
96
+ .help-block,
97
+ .control-label,
98
+ .form-control-feedback {
99
+ color: $brand-danger;
100
+ }
101
+
102
+ .form-control,
103
+ .form-control:focus,
104
+ .input-group-addon {
105
+ border: 1px solid $brand-danger;
106
+ }
107
+ }
108
+
109
+ .has-success {
110
+ .help-block,
111
+ .control-label,
112
+ .form-control-feedback {
113
+ color: $brand-success;
114
+ }
115
+
116
+ .form-control,
117
+ .form-control:focus,
118
+ .input-group-addon {
119
+ border: 1px solid $brand-success;
120
+ }
121
+ }
122
+
123
+ // Navs =======================================================================
124
+
125
+ .nav-pills {
126
+
127
+ & > li > a {
128
+ border-radius: 0;
129
+ }
130
+ }
131
+
132
+ .dropdown-menu {
133
+
134
+ & > li > a:hover,
135
+ & > li > a:focus {
136
+ background-image: none;
137
+ }
138
+ }
139
+
140
+ // Indicators =================================================================
141
+
142
+ .close {
143
+ text-decoration: none;
144
+ text-shadow: none;
145
+ opacity: 0.4;
146
+
147
+ &:hover,
148
+ &:focus {
149
+ opacity: 1;
150
+ }
151
+ }
152
+
153
+ .alert {
154
+ border: none;
155
+
156
+ .alert-link {
157
+ text-decoration: underline;
158
+ color: #fff;
159
+ }
160
+ }
161
+
162
+ .label {
163
+ border-radius: 0;
164
+ }
165
+
166
+ // Progress bars ==============================================================
167
+
168
+ .progress {
169
+ height: 8px;
170
+ @include box-shadow(none);
171
+ .progress-bar {
172
+ font-size: 8px;
173
+ line-height: 8px;
174
+ }
175
+ }
176
+
177
+ // Containers =================================================================
178
+
179
+ .panel {
180
+ &-heading,
181
+ &-footer {
182
+ border-top-right-radius: 0;
183
+ border-top-left-radius: 0;
184
+ }
185
+
186
+ &-default {
187
+ .close {
188
+ color: $text-color;
189
+ }
190
+ }
191
+ }
192
+
193
+ a.list-group-item {
194
+
195
+ &-success {
196
+ &.active {
197
+ background-color: $state-success-bg;
198
+ }
199
+
200
+ &.active:hover,
201
+ &.active:focus {
202
+ background-color: darken($state-success-bg, 5%);
203
+ }
204
+ }
205
+
206
+ &-warning {
207
+ &.active {
208
+ background-color: $state-warning-bg;
209
+ }
210
+
211
+ &.active:hover,
212
+ &.active:focus {
213
+ background-color: darken($state-warning-bg, 5%);
214
+ }
215
+ }
216
+
217
+ &-danger {
218
+ &.active {
219
+ background-color: $state-danger-bg;
220
+ }
221
+
222
+ &.active:hover,
223
+ &.active:focus {
224
+ background-color: darken($state-danger-bg, 5%);
225
+ }
226
+ }
227
+ }
228
+
229
+ .modal {
230
+ .close {
231
+ color: $text-color;
232
+ }
233
+ }
234
+
235
+ .popover {
236
+ color: $text-color;
237
+ }