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,187 @@
1
+ // Readable 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ @import url("//fonts.googleapis.com/css?family=Raleway:400,700");
6
+
7
+ // Navbar =====================================================================
8
+
9
+ .navbar {
10
+ font-family: $headings-font-family;
11
+
12
+ &-nav,
13
+ &-form {
14
+ margin-left: 0;
15
+ margin-right: 0;
16
+ }
17
+
18
+ &-nav > li > a {
19
+ padding: $padding-base-vertical $padding-base-horizontal;
20
+ margin: 12px 6px;
21
+ border: 1px solid transparent;
22
+ border-radius: $border-radius-base;
23
+
24
+ &:hover {
25
+ border: 1px solid #ddd;
26
+ }
27
+ }
28
+
29
+ &-nav > .active > a,
30
+ &-nav > .active > a:hover {
31
+ border: 1px solid #ddd;
32
+ }
33
+
34
+ &-default .navbar-nav > .active > a:hover {
35
+ color: $navbar-default-link-hover-color;
36
+ }
37
+
38
+ &-inverse .navbar-nav > .active > a:hover {
39
+ color: $navbar-inverse-link-hover-color;
40
+ }
41
+
42
+ &-brand {
43
+ padding-top: 20px;
44
+ }
45
+ }
46
+
47
+ @media (max-width: $grid-float-breakpoint) {
48
+ .navbar {
49
+ .navbar-nav > li > a {
50
+ margin: 0;
51
+ }
52
+ }
53
+ }
54
+
55
+ // Buttons ====================================================================
56
+
57
+ .btn {
58
+ font-family: $headings-font-family;
59
+ }
60
+
61
+ // Typography =================================================================
62
+
63
+ // Tables =====================================================================
64
+
65
+ // Forms ======================================================================
66
+
67
+ legend {
68
+ font-family: $headings-font-family;
69
+ }
70
+
71
+ .input-group-addon {
72
+ font-family: $font-family-sans-serif;
73
+ }
74
+
75
+ // Navs =======================================================================
76
+
77
+ .nav {
78
+ .open > a,
79
+ .open > a:hover,
80
+ .open > a:focus {
81
+ border: 1px solid #ddd;
82
+ }
83
+ }
84
+
85
+ .pagination {
86
+
87
+ font-family: $headings-font-family;
88
+
89
+ &-lg > li > a,
90
+ &-lg > li > span {
91
+ padding: 14px 24px;
92
+ }
93
+ }
94
+
95
+ .pager {
96
+
97
+ font-family: $headings-font-family;
98
+
99
+ a {
100
+ color: $text-color;
101
+ }
102
+
103
+ a:hover {
104
+ border-color: transparent;
105
+ color: #fff;
106
+ }
107
+
108
+ .disabled a {
109
+ border-color: $pager-border;
110
+ }
111
+ }
112
+
113
+ // Indicators =================================================================
114
+
115
+ .close {
116
+ color: #fff;
117
+ text-decoration: none;
118
+ text-shadow: none;
119
+ opacity: 0.4;
120
+
121
+ &:hover,
122
+ &:focus {
123
+ color: #fff;
124
+ opacity: 1;
125
+ }
126
+ }
127
+
128
+ .alert {
129
+ .alert-link {
130
+ color: $alert-success-text;
131
+ text-decoration: underline;
132
+ }
133
+ }
134
+
135
+ .label {
136
+ font-family: $headings-font-family;
137
+ font-weight: normal;
138
+
139
+ &-default {
140
+ border: 1px solid #ddd;
141
+ color: $text-color;
142
+ }
143
+
144
+ }
145
+
146
+ .badge {
147
+ padding: 1px 7px 5px;
148
+ vertical-align: 2px;
149
+ font-family: $headings-font-family;
150
+ font-weight: normal;
151
+ }
152
+
153
+ // Progress bars ==============================================================
154
+
155
+ // Containers =================================================================
156
+
157
+ .panel {
158
+ @include box-shadow(none);
159
+
160
+ &-default {
161
+ .close {
162
+ color: $text-color;
163
+ }
164
+ }
165
+
166
+ &-primary,
167
+ &-success,
168
+ &-warning,
169
+ &-danger,
170
+ &-info {
171
+ .panel-heading {
172
+ color: #fff;
173
+ }
174
+
175
+ .panel-body {
176
+ border: 1px solid #ddd;
177
+ border-top-width: 0;
178
+ border-radius: 0 0 $border-radius-base $border-radius-base;
179
+ }
180
+ }
181
+ }
182
+
183
+ .modal {
184
+ .close {
185
+ color: $text-color;
186
+ }
187
+ }