minable 0.0.2 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/Gemfile.lock +4 -4
  4. data/Rakefile +1 -1
  5. data/app/assets/stylesheets/minable/_all.scss +1 -0
  6. data/app/assets/stylesheets/minable/_global.scss +28 -0
  7. data/app/assets/stylesheets/minable/_grid.scss +11 -0
  8. data/app/assets/stylesheets/minable/_settings.scss +15 -0
  9. data/app/assets/stylesheets/{framework → minable/framework}/_all.scss +0 -0
  10. data/app/assets/stylesheets/{framework → minable/framework}/_normalize.scss +0 -0
  11. data/app/assets/stylesheets/{framework → minable/framework}/_typecsset.scss +0 -27
  12. data/app/assets/stylesheets/{framework → minable/framework}/grid/_all.scss +0 -0
  13. data/app/assets/stylesheets/minable/framework/grid/_grid-core.scss +66 -0
  14. data/app/assets/stylesheets/minable/framework/grid/_grid-unit.scss +380 -0
  15. data/app/assets/stylesheets/{helpers → minable/helpers}/_all.scss +0 -0
  16. data/app/assets/stylesheets/{helpers → minable/helpers}/classes/_all.scss +1 -0
  17. data/app/assets/stylesheets/minable/helpers/classes/_clearfix.scss +23 -0
  18. data/app/assets/stylesheets/{helpers → minable/helpers}/classes/_display-classes.scss +13 -15
  19. data/app/assets/stylesheets/{helpers → minable/helpers}/functions/_all.scss +0 -0
  20. data/app/assets/stylesheets/{helpers → minable/helpers}/functions/_strip-unit.scss +0 -0
  21. data/app/assets/stylesheets/{helpers → minable/helpers}/mixins/_all.scss +2 -1
  22. data/app/assets/stylesheets/minable/helpers/mixins/_opacity.scss +6 -0
  23. data/app/assets/stylesheets/{helpers → minable/helpers}/mixins/_rem-fallback.scss +0 -1
  24. data/app/assets/stylesheets/{helpers → minable/helpers}/mixins/_replace-text.scss +0 -0
  25. data/app/assets/stylesheets/minable-ui/_all.scss +3 -0
  26. data/app/assets/stylesheets/minable-ui/buttons/_all.scss +3 -0
  27. data/app/assets/stylesheets/minable-ui/buttons/_button-colors.scss +49 -0
  28. data/app/assets/stylesheets/minable-ui/buttons/_button-core.scss +32 -0
  29. data/app/assets/stylesheets/minable-ui/buttons/_button-group.scss +0 -0
  30. data/app/assets/stylesheets/minable-ui/buttons/_button-icon.scss +0 -0
  31. data/app/assets/stylesheets/minable-ui/buttons/_button-settings.scss +33 -0
  32. data/app/assets/stylesheets/minable-ui/forms/_all.scss +5 -0
  33. data/app/assets/stylesheets/minable-ui/forms/_form-core.scss +63 -0
  34. data/app/assets/stylesheets/minable-ui/forms/_form-grouped.scss +148 -0
  35. data/app/assets/stylesheets/minable-ui/forms/_form-responsive.scss +59 -0
  36. data/app/assets/stylesheets/minable-ui/forms/_form-settings.scss +22 -0
  37. data/app/assets/stylesheets/minable-ui/forms/_form-stacked.scss +28 -0
  38. data/app/assets/stylesheets/minable-ui/tables/_all.scss +2 -0
  39. data/app/assets/stylesheets/minable-ui/tables/_tables-core.scss +16 -0
  40. data/app/assets/stylesheets/minable-ui/tables/_tables-settings.scss +9 -0
  41. data/features/step_definitions/minable_steps.rb +2 -2
  42. data/features/support/env.rb +4 -1
  43. data/features/support/minable_support.rb +3 -3
  44. data/lib/minable/generator.rb +13 -13
  45. data/lib/minable/version.rb +1 -1
  46. data/lib/minable.rb +3 -3
  47. data/lib/tasks/install.rake +9 -9
  48. data/minable.gemspec +10 -12
  49. data/readme.md +14 -32
  50. metadata +40 -32
  51. data/app/assets/stylesheets/_global.scss +0 -8
  52. data/app/assets/stylesheets/_minable.scss +0 -36
  53. data/app/assets/stylesheets/_settings.scss +0 -25
  54. data/app/assets/stylesheets/_shame.scss +0 -1
  55. data/app/assets/stylesheets/components/_all.scss +0 -6
  56. data/app/assets/stylesheets/components/_containers.scss +0 -1
  57. data/app/assets/stylesheets/components/_footer.scss +0 -1
  58. data/app/assets/stylesheets/components/_header.scss +0 -1
  59. data/app/assets/stylesheets/components/_typography.scss +0 -1
  60. data/app/assets/stylesheets/framework/grid/_grid-core.scss +0 -58
  61. data/app/assets/stylesheets/framework/grid/_grid-unit.scss +0 -195
  62. data/app/assets/stylesheets/modules/_all.scss +0 -1
  63. data/app/assets/stylesheets/templates/_404.scss +0 -1
  64. data/app/assets/stylesheets/templates/_all.scss +0 -3
  65. data/app/assets/stylesheets/templates/_home.scss +0 -1
@@ -1,195 +0,0 @@
1
- // Minable Grid Units
2
-
3
- // Sets default grid classes
4
- .min-u-1 {
5
- width: 100%;
6
- }
7
-
8
- .min-u-1-2 {
9
- width: 50%;
10
- *width: 49.969%;
11
- }
12
-
13
- .min-u-1-3 {
14
- width: 33.3333%;
15
- *width: 33.3023%;
16
- }
17
-
18
- .min-u-2-3 {
19
- width: 66.6667%;
20
- *width: 66.6357%;
21
- }
22
-
23
- .min-u-1-4 {
24
- width: 25%;
25
- *width: 24.969%;
26
- }
27
-
28
- .min-u-3-4 {
29
- width: 75%;
30
- *width: 74.969%;
31
- }
32
-
33
- .min-u-1-5 {
34
- width: 20%;
35
- *width: 19.969%;
36
- }
37
-
38
- .min-u-2-5 {
39
- width: 40%;
40
- *width: 39.969%;
41
- }
42
-
43
- .min-u-3-5 {
44
- width: 60%;
45
- *width: 59.969%;
46
- }
47
-
48
- .min-u-4-5 {
49
- width: 80%;
50
- *width: 79.969%;
51
- }
52
-
53
- .min-u-1-6 {
54
- width: 16.6667%;
55
- *width: 16.6357%;
56
- }
57
-
58
- .min-u-5-6 {
59
- width: 83.3333%;
60
- *width: 83.3023%;
61
- }
62
-
63
- .min-u-1-8 {
64
- width: 12.5%;
65
- *width: 12.469%;
66
- }
67
-
68
- .min-u-3-8 {
69
- width: 37.5%;
70
- *width: 37.469%;
71
- }
72
-
73
- .min-u-5-8 {
74
- width: 62.5%;
75
- *width: 62.469%;
76
- }
77
-
78
- .min-u-7-8 {
79
- width: 87.5%;
80
- *width: 87.469%;
81
- }
82
-
83
- .min-u-1-12 {
84
- width: 8.3333%;
85
- *width: 8.3023%;
86
- }
87
-
88
- .min-u-5-12 {
89
- width: 41.6667%;
90
- *width: 41.6357%;
91
- }
92
-
93
- .min-u-7-12 {
94
- width: 58.3333%;
95
- *width: 58.3023%;
96
- }
97
-
98
- .min-u-11-12 {
99
- width: 91.6667%;
100
- *width: 91.6357%;
101
- }
102
-
103
- // GRID EXTENDER
104
- // Loop through each defined breakpoint to generate our grids (Set in settings.scss).
105
- @if $breakpoints {
106
- @each $breakpoint in $breakpoints {
107
-
108
- // Get the breakpoint details.
109
- $breakpoint-name: nth($breakpoint,1);
110
- $breakpoint-value: strip-unit(nth($breakpoint,2)) / strip-unit($browser-default-font-size);
111
-
112
- // Define your grid.
113
- @media (max-width: #{$breakpoint-value}em) {
114
- .min-u-#{$breakpoint-name}-1 {
115
- width: 100%;
116
- }
117
- .min-u-#{$breakpoint-name}-1-2 {
118
- width: 50%;
119
- *width: 49.969%;
120
- }
121
- .min-u-#{$breakpoint-name}-1-3 {
122
- width: 33.33333%;
123
- *width: 33.3023%;
124
- }
125
- .min-u-#{$breakpoint-name}-2-3 {
126
- width: 66.66666%;
127
- *width: 66.6357%;
128
- }
129
- .min-u-#{$breakpoint-name}-1-4 {
130
- width: 25%;
131
- *width: 24.969%;
132
- }
133
- .min-u-#{$breakpoint-name}-3-4 {
134
- width: 75%;
135
- *width: 74.969%;
136
- }
137
- .min-u-#{$breakpoint-name}-1-5 {
138
- width: 20%;
139
- *width: 19.969%;
140
- }
141
- .min-u-#{$breakpoint-name}-2-5 {
142
- width: 40%;
143
- *width: 39.969%;
144
- }
145
- .min-u-#{$breakpoint-name}-3-5 {
146
- width: 60%;
147
- *width: 59.969%;
148
- }
149
- .min-u-#{$breakpoint-name}-4-5 {
150
- width: 80%;
151
- *width: 79.969%;
152
- }
153
- .min-u-#{$breakpoint-name}-1-6 {
154
- width: 16.666%;
155
- *width: 16.6357%;
156
- }
157
- .min-u-#{$breakpoint-name}-5-6 {
158
- width: 83.33%;
159
- *width: 83.3023%;
160
- }
161
- .min-u-#{$breakpoint-name}-1-8 {
162
- width: 12.5%;
163
- *width: 12.469%;
164
- }
165
- .min-u-#{$breakpoint-name}-3-8 {
166
- width: 37.5%;
167
- *width: 37.469%;
168
- }
169
- .min-u-#{$breakpoint-name}-5-8 {
170
- width: 62.5%;
171
- *width: 62.469%;
172
- }
173
- .min-u-#{$breakpoint-name}-7-8 {
174
- width: 87.5%;
175
- *width: 87.469%;
176
- }
177
- .min-u-#{$breakpoint-name}-1-12 {
178
- width: 8.3333%;
179
- *width: 8.3023%;
180
- }
181
- .min-u-#{$breakpoint-name}-5-12 {
182
- width: 41.6666%;
183
- *width: 41.6357%;
184
- }
185
- .min-u-#{$breakpoint-name}-7-12 {
186
- width: 58.3333%;
187
- *width: 58.3023%;
188
- }
189
- .min-u-#{$breakpoint-name}-11-12 {
190
- width: 91.6666%;
191
- *width: 91.6357%;
192
- }
193
- }
194
- };
195
- }
@@ -1 +0,0 @@
1
- // Use this to include styling for specific jQuery plugins etc
@@ -1 +0,0 @@
1
- // 404 page styling, make it pretty!
@@ -1,3 +0,0 @@
1
- // Templates are for indiviual page/template styling
2
-
3
- @import "home";
@@ -1 +0,0 @@
1
- // Homepage styling