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,142 @@
1
+ // Simplex 3.3.1
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ @import url("//fonts.googleapis.com/css?family=Open+Sans:400,700");
6
+
7
+ @mixin btn-shadow($color){
8
+ @include gradient-vertical-three-colors(lighten($color, 3%), $color, 6%, darken($color, 3%));
9
+ filter: none;
10
+ border: 1px solid darken($color, 10%);
11
+ }
12
+
13
+ // Navbar =====================================================================
14
+
15
+ .navbar {
16
+
17
+ &-inverse {
18
+
19
+ .badge {
20
+ background-color: #fff;
21
+ color: $brand-primary;
22
+ }
23
+ }
24
+ }
25
+
26
+ // Buttons ====================================================================
27
+
28
+ .btn {
29
+ font-family: $headings-font-family;
30
+ }
31
+
32
+ .btn-default,
33
+ .btn-default:hover {
34
+ @include btn-shadow($btn-default-bg);
35
+ }
36
+
37
+ .btn-primary,
38
+ .btn-primary:hover {
39
+ @include btn-shadow($btn-primary-bg);
40
+ }
41
+
42
+ .btn-success,
43
+ .btn-success:hover {
44
+ @include btn-shadow($btn-success-bg);
45
+ }
46
+
47
+ .btn-info,
48
+ .btn-info:hover {
49
+ @include btn-shadow($btn-info-bg);
50
+ }
51
+
52
+ .btn-warning,
53
+ .btn-warning:hover {
54
+ @include btn-shadow($btn-warning-bg);
55
+ }
56
+
57
+ .btn-danger,
58
+ .btn-danger:hover {
59
+ @include btn-shadow($btn-danger-bg);
60
+ }
61
+
62
+ // Typography =================================================================
63
+
64
+ body {
65
+ font-weight: 200;
66
+ }
67
+
68
+ // Tables =====================================================================
69
+
70
+ th {
71
+ color: $headings-color;
72
+ }
73
+
74
+ // Forms ======================================================================
75
+
76
+ legend {
77
+ color: $headings-color;
78
+ }
79
+
80
+ label {
81
+ font-weight: normal;
82
+ }
83
+
84
+ .has-warning {
85
+ .help-block,
86
+ .control-label {
87
+ color: $brand-danger;
88
+ }
89
+
90
+ .form-control,
91
+ .form-control:focus {
92
+ border-color: $brand-danger;
93
+ }
94
+ }
95
+
96
+ .has-error {
97
+ .help-block,
98
+ .control-label {
99
+ color: $brand-primary;
100
+ }
101
+
102
+ .form-control,
103
+ .form-control:focus {
104
+ border-color: $brand-primary;
105
+ }
106
+ }
107
+
108
+ .has-success {
109
+ .help-block,
110
+ .control-label {
111
+ color: $brand-success;
112
+ }
113
+
114
+ .form-control,
115
+ .form-control:focus {
116
+ border-color: $brand-success;
117
+ }
118
+ }
119
+
120
+ // Navs =======================================================================
121
+
122
+ .pager {
123
+ a {
124
+ color: $headings-color;
125
+ }
126
+
127
+ a:hover,
128
+ .active > a, {
129
+ border-color: $brand-primary;
130
+ color: #fff;
131
+ }
132
+
133
+ .disabled > a {
134
+ border-color: $pager-border;
135
+ }
136
+ }
137
+
138
+ // Indicators =================================================================
139
+
140
+ // Progress bars ==============================================================
141
+
142
+ // Containers =================================================================