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,195 @@
1
+ // Sandstone 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ @import url("//fonts.googleapis.com/css?family=Roboto:400,500");
6
+
7
+ // Navbar =====================================================================
8
+
9
+ .sandstone {
10
+ font-size: 11px;
11
+ line-height: 22px;
12
+ font-weight: 500;
13
+ text-transform: uppercase;
14
+ }
15
+
16
+ .navbar {
17
+ .nav > li > a {
18
+ @extend .sandstone;
19
+ }
20
+
21
+ &-form input,
22
+ &-form .form-control {
23
+ border: none;
24
+ }
25
+ }
26
+
27
+ // Buttons ====================================================================
28
+
29
+ .btn {
30
+ border: none;
31
+ @extend .sandstone;
32
+
33
+ &:hover {
34
+ border-color: transparent;
35
+ }
36
+
37
+ &-lg {
38
+ line-height: 26px;
39
+ }
40
+
41
+ &-default {
42
+ &:hover {
43
+ background-color: $navbar-default-link-active-bg;
44
+ }
45
+ }
46
+ }
47
+
48
+ // Typography =================================================================
49
+
50
+ // Tables =====================================================================
51
+
52
+ // Forms ======================================================================
53
+
54
+ input,
55
+ .form-control {
56
+ @include box-shadow(none);
57
+
58
+ &:focus {
59
+ border-color: $input-border;
60
+ @include box-shadow(none);
61
+ }
62
+ }
63
+
64
+ .input-sm {
65
+ padding: 15px 10px;
66
+ }
67
+
68
+ // Navs =======================================================================
69
+
70
+ .nav {
71
+ @extend .sandstone;
72
+
73
+ .open > a,
74
+ .open > a:hover,
75
+ .open > a:focus {
76
+ border-color: $gray-light;
77
+ }
78
+ }
79
+
80
+ .nav-tabs {
81
+
82
+ & > li > a {
83
+ background-color: $gray-lighter;
84
+ border-color: $nav-tabs-border-color;
85
+ color: $gray;
86
+ }
87
+
88
+ > li.disabled > a:hover {
89
+ background-color: $gray-lighter;
90
+ }
91
+ }
92
+
93
+ .nav-pills {
94
+ a {
95
+ color: $gray;
96
+ }
97
+
98
+ li > a {
99
+ border: 1px solid transparent;
100
+ }
101
+
102
+ li.active > a,
103
+ li > a:hover {
104
+ border-color: $gray-light;
105
+ }
106
+
107
+ li.disabled > a {
108
+ border-color: transparent;
109
+ }
110
+ }
111
+
112
+ .breadcrumb {
113
+ @extend .sandstone;
114
+
115
+ border: 1px solid $gray-light;
116
+
117
+ a {
118
+ color: $gray;
119
+ }
120
+ }
121
+
122
+ .pagination {
123
+ @extend .sandstone;
124
+ }
125
+
126
+ .pager {
127
+ @extend .sandstone;
128
+
129
+ li > a {
130
+ color: $gray;
131
+ }
132
+ }
133
+
134
+ .dropdown-menu {
135
+ & > li > a {
136
+ @extend .sandstone;
137
+ }
138
+ }
139
+
140
+ // Indicators =================================================================
141
+
142
+ .alert {
143
+
144
+ a,
145
+ .alert-link {
146
+ color: #fff;
147
+ }
148
+ }
149
+
150
+ .tooltip {
151
+ @extend .sandstone;
152
+ }
153
+
154
+ // Progress bars ==============================================================
155
+
156
+ .progress {
157
+ border-radius: 10px;
158
+ background-color: $gray-light;
159
+ @include box-shadow(none);
160
+
161
+ &-bar {
162
+ @include box-shadow(none);
163
+ }
164
+ }
165
+
166
+ // Containers =================================================================
167
+
168
+ .list-group {
169
+ &-item {
170
+ padding: 16px 24px;
171
+ }
172
+ }
173
+
174
+ .well {
175
+ @include box-shadow(none);
176
+ }
177
+
178
+ .panel {
179
+ @include box-shadow(none);
180
+
181
+ .panel-heading,
182
+ .panel-title,
183
+ .panel-footer {
184
+ @extend .sandstone;
185
+ color: #fff;
186
+ }
187
+
188
+ &-default {
189
+ .panel-heading,
190
+ .panel-title,
191
+ .panel-footer {
192
+ color: $gray;
193
+ }
194
+ }
195
+ }