blaze-css-rails 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +914 -0
  3. data/app/assets/stylesheets/animations.alerts.scss +73 -0
  4. data/app/assets/stylesheets/animations.bubbles.scss +31 -0
  5. data/app/assets/stylesheets/animations.calendars.scss +31 -0
  6. data/app/assets/stylesheets/animations.drawers.scss +13 -0
  7. data/app/assets/stylesheets/animations.hints.scss +5 -0
  8. data/app/assets/stylesheets/animations.menus.scss +31 -0
  9. data/app/assets/stylesheets/animations.modals.scss +31 -0
  10. data/app/assets/stylesheets/animations.navs.scss +19 -0
  11. data/app/assets/stylesheets/animations.overlays.scss +15 -0
  12. data/app/assets/stylesheets/animations.ranges.scss +13 -0
  13. data/app/assets/stylesheets/animations.tabs.scss +19 -0
  14. data/app/assets/stylesheets/animations.toasts.scss +33 -0
  15. data/app/assets/stylesheets/animations.toggles.scss +31 -0
  16. data/app/assets/stylesheets/animations.trees.scss +47 -0
  17. data/app/assets/stylesheets/blaze.animations.scss +14 -0
  18. data/app/assets/stylesheets/blaze.scss +35 -0
  19. data/app/assets/stylesheets/components.addresses.scss +9 -0
  20. data/app/assets/stylesheets/components.alerts.scss +21 -0
  21. data/app/assets/stylesheets/components.badges.scss +25 -0
  22. data/app/assets/stylesheets/components.bubbles.scss +22 -0
  23. data/app/assets/stylesheets/components.buttons.scss +80 -0
  24. data/app/assets/stylesheets/components.calendars.scss +50 -0
  25. data/app/assets/stylesheets/components.cards.scss +92 -0
  26. data/app/assets/stylesheets/components.drawers.scss +81 -0
  27. data/app/assets/stylesheets/components.headings.scss +33 -0
  28. data/app/assets/stylesheets/components.hints.scss +23 -0
  29. data/app/assets/stylesheets/components.inputs.scss +283 -0
  30. data/app/assets/stylesheets/components.links.scss +10 -0
  31. data/app/assets/stylesheets/components.lists.scss +57 -0
  32. data/app/assets/stylesheets/components.menus.scss +51 -0
  33. data/app/assets/stylesheets/components.modals.scss +53 -0
  34. data/app/assets/stylesheets/components.navs.scss +104 -0
  35. data/app/assets/stylesheets/components.overlays.scss +17 -0
  36. data/app/assets/stylesheets/components.pagination.scss +33 -0
  37. data/app/assets/stylesheets/components.ranges.scss +86 -0
  38. data/app/assets/stylesheets/components.tables.scss +53 -0
  39. data/app/assets/stylesheets/components.tabs.scss +45 -0
  40. data/app/assets/stylesheets/components.tags.scss +25 -0
  41. data/app/assets/stylesheets/components.toasts.scss +41 -0
  42. data/app/assets/stylesheets/components.toggles.scss +49 -0
  43. data/app/assets/stylesheets/components.tooltips.scss +21 -0
  44. data/app/assets/stylesheets/components.trees.scss +21 -0
  45. data/app/assets/stylesheets/components.typography.scss +73 -0
  46. data/app/assets/stylesheets/generic.global.scss +3 -0
  47. data/app/assets/stylesheets/mixins/_animations.alerts.scss +54 -0
  48. data/app/assets/stylesheets/mixins/_animations.bubbles.scss +54 -0
  49. data/app/assets/stylesheets/mixins/_animations.calendars.scss +46 -0
  50. data/app/assets/stylesheets/mixins/_animations.drawers.scss +15 -0
  51. data/app/assets/stylesheets/mixins/_animations.hints.scss +5 -0
  52. data/app/assets/stylesheets/mixins/_animations.menus.scss +46 -0
  53. data/app/assets/stylesheets/mixins/_animations.modals.scss +54 -0
  54. data/app/assets/stylesheets/mixins/_animations.navs.scss +15 -0
  55. data/app/assets/stylesheets/mixins/_animations.overlays.scss +28 -0
  56. data/app/assets/stylesheets/mixins/_animations.ranges.scss +43 -0
  57. data/app/assets/stylesheets/mixins/_animations.tabs.scss +15 -0
  58. data/app/assets/stylesheets/mixins/_animations.toasts.scss +45 -0
  59. data/app/assets/stylesheets/mixins/_animations.toggles.scss +29 -0
  60. data/app/assets/stylesheets/mixins/_animations.trees.scss +42 -0
  61. data/app/assets/stylesheets/mixins/_components.addresses.scss +12 -0
  62. data/app/assets/stylesheets/mixins/_components.alerts.scss +30 -0
  63. data/app/assets/stylesheets/mixins/_components.badges.scss +33 -0
  64. data/app/assets/stylesheets/mixins/_components.bubbles.scss +59 -0
  65. data/app/assets/stylesheets/mixins/_components.buttons.scss +197 -0
  66. data/app/assets/stylesheets/mixins/_components.calendars.scss +81 -0
  67. data/app/assets/stylesheets/mixins/_components.cards.scss +122 -0
  68. data/app/assets/stylesheets/mixins/_components.drawers.scss +116 -0
  69. data/app/assets/stylesheets/mixins/_components.headings.scss +39 -0
  70. data/app/assets/stylesheets/mixins/_components.hints.scss +25 -0
  71. data/app/assets/stylesheets/mixins/_components.inputs.scss +283 -0
  72. data/app/assets/stylesheets/mixins/_components.links.scss +44 -0
  73. data/app/assets/stylesheets/mixins/_components.lists.scss +53 -0
  74. data/app/assets/stylesheets/mixins/_components.menus.scss +63 -0
  75. data/app/assets/stylesheets/mixins/_components.modals.scss +63 -0
  76. data/app/assets/stylesheets/mixins/_components.navs.scss +165 -0
  77. data/app/assets/stylesheets/mixins/_components.overlays.scss +30 -0
  78. data/app/assets/stylesheets/mixins/_components.pagination.scss +45 -0
  79. data/app/assets/stylesheets/mixins/_components.ranges.scss +90 -0
  80. data/app/assets/stylesheets/mixins/_components.tables.scss +85 -0
  81. data/app/assets/stylesheets/mixins/_components.tabs.scss +53 -0
  82. data/app/assets/stylesheets/mixins/_components.tags.scss +41 -0
  83. data/app/assets/stylesheets/mixins/_components.toasts.scss +62 -0
  84. data/app/assets/stylesheets/mixins/_components.toggles.scss +75 -0
  85. data/app/assets/stylesheets/mixins/_components.tooltips.scss +89 -0
  86. data/app/assets/stylesheets/mixins/_components.trees.scss +39 -0
  87. data/app/assets/stylesheets/mixins/_components.typography.scss +101 -0
  88. data/app/assets/stylesheets/mixins/_generic.global.scss +15 -0
  89. data/app/assets/stylesheets/mixins/_objects.containers.scss +13 -0
  90. data/app/assets/stylesheets/mixins/_objects.grid.scss +104 -0
  91. data/app/assets/stylesheets/mixins/_objects.images.scss +5 -0
  92. data/app/assets/stylesheets/mixins/_objects.panels.scss +23 -0
  93. data/app/assets/stylesheets/mixins/_settings.animations.scss +5 -0
  94. data/app/assets/stylesheets/mixins/_settings.global.scss +876 -0
  95. data/app/assets/stylesheets/mixins/_tools.mediaqueries.scss +73 -0
  96. data/app/assets/stylesheets/mixins/_utilities.alignment.scss +24 -0
  97. data/app/assets/stylesheets/mixins/_utilities.boxing.scss +125 -0
  98. data/app/assets/stylesheets/objects.containers.scss +6 -0
  99. data/app/assets/stylesheets/objects.grid.responsive.scss +124 -0
  100. data/app/assets/stylesheets/objects.grid.scss +62 -0
  101. data/app/assets/stylesheets/objects.images.scss +5 -0
  102. data/app/assets/stylesheets/objects.panels.scss +17 -0
  103. data/app/assets/stylesheets/themes/blaze.example.scss +7 -0
  104. data/app/assets/stylesheets/utilities.alignment.scss +22 -0
  105. data/app/assets/stylesheets/utilities.boxing.scss +101 -0
  106. data/lib/blaze-css-rails.rb +2 -0
  107. data/lib/blaze-css-rails/engine.rb +6 -0
  108. data/lib/blaze-css-rails/version.rb +6 -0
  109. metadata +201 -0
@@ -0,0 +1,22 @@
1
+ @import "mixins/utilities.alignment";
2
+
3
+ .u-centered {
4
+ @include centered;
5
+ }
6
+
7
+ .u-center-block {
8
+ @include center-block;
9
+ }
10
+
11
+ .u-center-block__content,
12
+ .u-absolute-center {
13
+ @include center-block__content;
14
+ }
15
+
16
+ .u-center-block__content--vertical {
17
+ @include center-block__content--vertical;
18
+ }
19
+
20
+ .u-center-block__content--horizontal {
21
+ @include center-block__content--horizontal;
22
+ }
@@ -0,0 +1,101 @@
1
+ @import "mixins/utilities.boxing";
2
+
3
+ .u-no-overflow {
4
+ @include no-overflow;
5
+ }
6
+
7
+ .u-letter-box--super {
8
+ @include letter-box--super;
9
+ }
10
+
11
+ .u-letter-box--xlarge {
12
+ @include letter-box--xlarge;
13
+ }
14
+
15
+ .u-letter-box--large {
16
+ @include letter-box--large;
17
+ }
18
+
19
+ .u-letter-box--medium {
20
+ @include letter-box--medium;
21
+ }
22
+
23
+ .u-letter-box--small {
24
+ @include letter-box--small;
25
+ }
26
+
27
+ .u-letter-box--xsmall {
28
+ @include letter-box--xsmall;
29
+ }
30
+
31
+ .u-letter-box--tiny {
32
+ @include letter-box--tiny;
33
+ }
34
+
35
+ .u-letter-box--none {
36
+ @include letter-box--none;
37
+ }
38
+
39
+ .u-pillar-box--super {
40
+ @include pillar-box--super;
41
+ }
42
+
43
+ .u-pillar-box--xlarge {
44
+ @include pillar-box--xlarge;
45
+ }
46
+
47
+ .u-pillar-box--large {
48
+ @include pillar-box--large;
49
+ }
50
+
51
+ .u-pillar-box--medium {
52
+ @include pillar-box--medium;
53
+ }
54
+
55
+ .u-pillar-box--small {
56
+ @include pillar-box--small;
57
+ }
58
+
59
+ .u-pillar-box--xsmall {
60
+ @include pillar-box--xsmall;
61
+ }
62
+
63
+ .u-pillar-box--tiny {
64
+ @include pillar-box--tiny;
65
+ }
66
+
67
+ .u-pillar-box--none {
68
+ @include pillar-box--none;
69
+ }
70
+
71
+ .u-window-box--super {
72
+ @include window-box--super;
73
+ }
74
+
75
+ .u-window-box--xlarge {
76
+ @include window-box--xlarge;
77
+ }
78
+
79
+ .u-window-box--large {
80
+ @include window-box--large;
81
+ }
82
+
83
+ .u-window-box--medium {
84
+ @include window-box--medium;
85
+ }
86
+
87
+ .u-window-box--small {
88
+ @include window-box--small;
89
+ }
90
+
91
+ .u-window-box--xsmall {
92
+ @include window-box--xsmall;
93
+ }
94
+
95
+ .u-window-box--tiny {
96
+ @include window-box--tiny;
97
+ }
98
+
99
+ .u-window-box--none {
100
+ @include window-box--none;
101
+ }
@@ -0,0 +1,2 @@
1
+ require "blaze-css-rails/version"
2
+ require "blaze-css-rails/engine" if defined?(::Rails)
@@ -0,0 +1,6 @@
1
+ module BlazeCss
2
+ module Rails
3
+ class Engine < ::Rails::Engine
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,6 @@
1
+ module BlazeCss
2
+ module Rails
3
+ BLAZE_CSS_VERSION = "3.0.0"
4
+ VERSION = "0.0.1"
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,201 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: blaze-css-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - andrewtpoe
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-10-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railties
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '3.2'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.1'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '3.2'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.1'
33
+ - !ruby/object:Gem::Dependency
34
+ name: activesupport
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '0'
40
+ type: :development
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: sass-rails
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
54
+ type: :development
55
+ prerelease: false
56
+ version_requirements: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ description: Blaze CSS is the best CSS framework I have ever used. It is simple, small,
62
+ and elegant. This gem combines the elegance of Blaze CSS with the power of the Rails
63
+ asset pipeline.
64
+ email:
65
+ - andrewtpoe@gmail.com
66
+ executables: []
67
+ extensions: []
68
+ extra_rdoc_files: []
69
+ files:
70
+ - README.md
71
+ - app/assets/stylesheets/animations.alerts.scss
72
+ - app/assets/stylesheets/animations.bubbles.scss
73
+ - app/assets/stylesheets/animations.calendars.scss
74
+ - app/assets/stylesheets/animations.drawers.scss
75
+ - app/assets/stylesheets/animations.hints.scss
76
+ - app/assets/stylesheets/animations.menus.scss
77
+ - app/assets/stylesheets/animations.modals.scss
78
+ - app/assets/stylesheets/animations.navs.scss
79
+ - app/assets/stylesheets/animations.overlays.scss
80
+ - app/assets/stylesheets/animations.ranges.scss
81
+ - app/assets/stylesheets/animations.tabs.scss
82
+ - app/assets/stylesheets/animations.toasts.scss
83
+ - app/assets/stylesheets/animations.toggles.scss
84
+ - app/assets/stylesheets/animations.trees.scss
85
+ - app/assets/stylesheets/blaze.animations.scss
86
+ - app/assets/stylesheets/blaze.scss
87
+ - app/assets/stylesheets/components.addresses.scss
88
+ - app/assets/stylesheets/components.alerts.scss
89
+ - app/assets/stylesheets/components.badges.scss
90
+ - app/assets/stylesheets/components.bubbles.scss
91
+ - app/assets/stylesheets/components.buttons.scss
92
+ - app/assets/stylesheets/components.calendars.scss
93
+ - app/assets/stylesheets/components.cards.scss
94
+ - app/assets/stylesheets/components.drawers.scss
95
+ - app/assets/stylesheets/components.headings.scss
96
+ - app/assets/stylesheets/components.hints.scss
97
+ - app/assets/stylesheets/components.inputs.scss
98
+ - app/assets/stylesheets/components.links.scss
99
+ - app/assets/stylesheets/components.lists.scss
100
+ - app/assets/stylesheets/components.menus.scss
101
+ - app/assets/stylesheets/components.modals.scss
102
+ - app/assets/stylesheets/components.navs.scss
103
+ - app/assets/stylesheets/components.overlays.scss
104
+ - app/assets/stylesheets/components.pagination.scss
105
+ - app/assets/stylesheets/components.ranges.scss
106
+ - app/assets/stylesheets/components.tables.scss
107
+ - app/assets/stylesheets/components.tabs.scss
108
+ - app/assets/stylesheets/components.tags.scss
109
+ - app/assets/stylesheets/components.toasts.scss
110
+ - app/assets/stylesheets/components.toggles.scss
111
+ - app/assets/stylesheets/components.tooltips.scss
112
+ - app/assets/stylesheets/components.trees.scss
113
+ - app/assets/stylesheets/components.typography.scss
114
+ - app/assets/stylesheets/generic.global.scss
115
+ - app/assets/stylesheets/mixins/_animations.alerts.scss
116
+ - app/assets/stylesheets/mixins/_animations.bubbles.scss
117
+ - app/assets/stylesheets/mixins/_animations.calendars.scss
118
+ - app/assets/stylesheets/mixins/_animations.drawers.scss
119
+ - app/assets/stylesheets/mixins/_animations.hints.scss
120
+ - app/assets/stylesheets/mixins/_animations.menus.scss
121
+ - app/assets/stylesheets/mixins/_animations.modals.scss
122
+ - app/assets/stylesheets/mixins/_animations.navs.scss
123
+ - app/assets/stylesheets/mixins/_animations.overlays.scss
124
+ - app/assets/stylesheets/mixins/_animations.ranges.scss
125
+ - app/assets/stylesheets/mixins/_animations.tabs.scss
126
+ - app/assets/stylesheets/mixins/_animations.toasts.scss
127
+ - app/assets/stylesheets/mixins/_animations.toggles.scss
128
+ - app/assets/stylesheets/mixins/_animations.trees.scss
129
+ - app/assets/stylesheets/mixins/_components.addresses.scss
130
+ - app/assets/stylesheets/mixins/_components.alerts.scss
131
+ - app/assets/stylesheets/mixins/_components.badges.scss
132
+ - app/assets/stylesheets/mixins/_components.bubbles.scss
133
+ - app/assets/stylesheets/mixins/_components.buttons.scss
134
+ - app/assets/stylesheets/mixins/_components.calendars.scss
135
+ - app/assets/stylesheets/mixins/_components.cards.scss
136
+ - app/assets/stylesheets/mixins/_components.drawers.scss
137
+ - app/assets/stylesheets/mixins/_components.headings.scss
138
+ - app/assets/stylesheets/mixins/_components.hints.scss
139
+ - app/assets/stylesheets/mixins/_components.inputs.scss
140
+ - app/assets/stylesheets/mixins/_components.links.scss
141
+ - app/assets/stylesheets/mixins/_components.lists.scss
142
+ - app/assets/stylesheets/mixins/_components.menus.scss
143
+ - app/assets/stylesheets/mixins/_components.modals.scss
144
+ - app/assets/stylesheets/mixins/_components.navs.scss
145
+ - app/assets/stylesheets/mixins/_components.overlays.scss
146
+ - app/assets/stylesheets/mixins/_components.pagination.scss
147
+ - app/assets/stylesheets/mixins/_components.ranges.scss
148
+ - app/assets/stylesheets/mixins/_components.tables.scss
149
+ - app/assets/stylesheets/mixins/_components.tabs.scss
150
+ - app/assets/stylesheets/mixins/_components.tags.scss
151
+ - app/assets/stylesheets/mixins/_components.toasts.scss
152
+ - app/assets/stylesheets/mixins/_components.toggles.scss
153
+ - app/assets/stylesheets/mixins/_components.tooltips.scss
154
+ - app/assets/stylesheets/mixins/_components.trees.scss
155
+ - app/assets/stylesheets/mixins/_components.typography.scss
156
+ - app/assets/stylesheets/mixins/_generic.global.scss
157
+ - app/assets/stylesheets/mixins/_objects.containers.scss
158
+ - app/assets/stylesheets/mixins/_objects.grid.scss
159
+ - app/assets/stylesheets/mixins/_objects.images.scss
160
+ - app/assets/stylesheets/mixins/_objects.panels.scss
161
+ - app/assets/stylesheets/mixins/_settings.animations.scss
162
+ - app/assets/stylesheets/mixins/_settings.global.scss
163
+ - app/assets/stylesheets/mixins/_tools.mediaqueries.scss
164
+ - app/assets/stylesheets/mixins/_utilities.alignment.scss
165
+ - app/assets/stylesheets/mixins/_utilities.boxing.scss
166
+ - app/assets/stylesheets/objects.containers.scss
167
+ - app/assets/stylesheets/objects.grid.responsive.scss
168
+ - app/assets/stylesheets/objects.grid.scss
169
+ - app/assets/stylesheets/objects.images.scss
170
+ - app/assets/stylesheets/objects.panels.scss
171
+ - app/assets/stylesheets/themes/blaze.example.scss
172
+ - app/assets/stylesheets/utilities.alignment.scss
173
+ - app/assets/stylesheets/utilities.boxing.scss
174
+ - lib/blaze-css-rails.rb
175
+ - lib/blaze-css-rails/engine.rb
176
+ - lib/blaze-css-rails/version.rb
177
+ homepage: https://github.com/andrewtpoe/blaze-css-rails
178
+ licenses:
179
+ - MIT
180
+ metadata: {}
181
+ post_install_message:
182
+ rdoc_options: []
183
+ require_paths:
184
+ - lib
185
+ required_ruby_version: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - ">="
188
+ - !ruby/object:Gem::Version
189
+ version: 1.9.3
190
+ required_rubygems_version: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ requirements: []
196
+ rubyforge_project:
197
+ rubygems_version: 2.5.1
198
+ signing_key:
199
+ specification_version: 4
200
+ summary: an asset gemification of the Blaze CSS library
201
+ test_files: []