materialize-sass 0.97.8 → 1.0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. checksums.yaml +5 -5
  2. data/.gitattributes +1 -0
  3. data/.gitignore +1 -0
  4. data/README.md +34 -32
  5. data/Rakefile +38 -21
  6. data/assets/javascripts/materialize/anime.min.js +417 -0
  7. data/assets/javascripts/materialize/autocomplete.js +504 -0
  8. data/assets/javascripts/materialize/buttons.js +409 -0
  9. data/assets/javascripts/materialize/cards.js +34 -0
  10. data/assets/javascripts/materialize/carousel.js +797 -0
  11. data/assets/javascripts/materialize/cash.js +990 -0
  12. data/assets/javascripts/materialize/characterCounter.js +180 -0
  13. data/assets/javascripts/materialize/chips.js +564 -0
  14. data/assets/javascripts/materialize/collapsible.js +337 -0
  15. data/assets/javascripts/materialize/component.js +57 -0
  16. data/assets/javascripts/materialize/datepicker.js +935 -0
  17. data/assets/javascripts/materialize/dropdown.js +659 -0
  18. data/assets/javascripts/materialize/extras/nouislider.js +2147 -0
  19. data/assets/javascripts/materialize/extras/nouislider.min.js +1 -0
  20. data/assets/javascripts/materialize/forms.js +244 -0
  21. data/assets/javascripts/materialize/global.js +408 -0
  22. data/assets/javascripts/materialize/materialbox.js +513 -0
  23. data/assets/javascripts/materialize/modal.js +449 -0
  24. data/assets/javascripts/materialize/parallax.js +173 -0
  25. data/assets/javascripts/materialize/pushpin.js +179 -0
  26. data/assets/javascripts/materialize/range.js +310 -0
  27. data/assets/javascripts/materialize/scrollspy.js +328 -0
  28. data/assets/javascripts/materialize/select.js +497 -0
  29. data/assets/javascripts/materialize/sidenav.js +655 -0
  30. data/assets/javascripts/materialize/slider.js +424 -0
  31. data/assets/javascripts/materialize/tabs.js +476 -0
  32. data/assets/javascripts/materialize/tapTarget.js +364 -0
  33. data/assets/javascripts/materialize/timepicker.js +647 -0
  34. data/assets/javascripts/materialize/toasts.js +355 -0
  35. data/assets/javascripts/materialize/tooltip.js +351 -0
  36. data/{app/assets → assets}/javascripts/materialize/waves.js +42 -47
  37. data/{app/assets → assets}/javascripts/materialize-sprockets.js +12 -13
  38. data/assets/javascripts/materialize.js +12374 -0
  39. data/assets/stylesheets/materialize/components/_badges.scss +55 -0
  40. data/{app/assets → assets}/stylesheets/materialize/components/_buttons.scss +99 -58
  41. data/{app/assets → assets}/stylesheets/materialize/components/_cards.scss +14 -6
  42. data/{app/assets → assets}/stylesheets/materialize/components/_carousel.scss +12 -7
  43. data/{app/assets → assets}/stylesheets/materialize/components/_chips.scss +13 -6
  44. data/{app/assets → assets}/stylesheets/materialize/components/_collapsible.scss +16 -15
  45. data/assets/stylesheets/materialize/components/_color-classes.scss +32 -0
  46. data/{app/assets/stylesheets/materialize/components/_color.scss → assets/stylesheets/materialize/components/_color-variables.scss} +2 -44
  47. data/assets/stylesheets/materialize/components/_datepicker.scss +191 -0
  48. data/{app/assets → assets}/stylesheets/materialize/components/_dropdown.scss +35 -15
  49. data/{app/assets → assets}/stylesheets/materialize/components/_global.scss +96 -125
  50. data/{app/assets → assets}/stylesheets/materialize/components/_grid.scss +45 -36
  51. data/{app/assets → assets}/stylesheets/materialize/components/_icons-material-design.scss +0 -0
  52. data/{app/assets → assets}/stylesheets/materialize/components/_materialbox.scss +13 -12
  53. data/{app/assets → assets}/stylesheets/materialize/components/_modal.scss +7 -3
  54. data/{app/assets → assets}/stylesheets/materialize/components/_navbar.scss +29 -11
  55. data/assets/stylesheets/materialize/components/_normalize.scss +447 -0
  56. data/{app/assets → assets}/stylesheets/materialize/components/_preloader.scss +2 -2
  57. data/assets/stylesheets/materialize/components/_pulse.scss +34 -0
  58. data/{app/assets/stylesheets/materialize/components/_sideNav.scss → assets/stylesheets/materialize/components/_sidenav.scss} +47 -47
  59. data/{app/assets → assets}/stylesheets/materialize/components/_slider.scss +0 -0
  60. data/{app/assets → assets}/stylesheets/materialize/components/_table_of_contents.scss +5 -5
  61. data/{app/assets → assets}/stylesheets/materialize/components/_tabs.scss +10 -10
  62. data/assets/stylesheets/materialize/components/_tapTarget.scss +103 -0
  63. data/assets/stylesheets/materialize/components/_timepicker.scss +183 -0
  64. data/{app/assets → assets}/stylesheets/materialize/components/_toast.scss +7 -14
  65. data/{app/assets → assets}/stylesheets/materialize/components/_tooltip.scss +3 -3
  66. data/assets/stylesheets/materialize/components/_transitions.scss +13 -0
  67. data/{app/assets → assets}/stylesheets/materialize/components/_typography.scss +8 -9
  68. data/{app/assets → assets}/stylesheets/materialize/components/_variables.scss +65 -29
  69. data/assets/stylesheets/materialize/components/_waves.scss +114 -0
  70. data/{app/assets → assets}/stylesheets/materialize/components/forms/_checkboxes.scss +26 -46
  71. data/{app/assets → assets}/stylesheets/materialize/components/forms/_file-input.scss +6 -0
  72. data/{app/assets → assets}/stylesheets/materialize/components/forms/_forms.scss +0 -0
  73. data/{app/assets → assets}/stylesheets/materialize/components/forms/_input-fields.scss +131 -63
  74. data/assets/stylesheets/materialize/components/forms/_radio-buttons.scss +115 -0
  75. data/{app/assets → assets}/stylesheets/materialize/components/forms/_range.scss +35 -33
  76. data/{app/assets → assets}/stylesheets/materialize/components/forms/_select.scss +88 -19
  77. data/{app/assets → assets}/stylesheets/materialize/components/forms/_switches.scss +32 -21
  78. data/assets/stylesheets/materialize/extras/nouislider.css +406 -0
  79. data/{app/assets → assets}/stylesheets/materialize.scss +10 -9
  80. data/lib/materialize-sass/engine.rb +9 -7
  81. data/lib/materialize-sass/helpers.rb +38 -0
  82. data/lib/materialize-sass/version.rb +1 -1
  83. data/lib/materialize-sass.rb +13 -28
  84. data/materialize-sass.gemspec +5 -5
  85. metadata +97 -119
  86. data/app/assets/fonts/roboto/Roboto-Bold.eot +0 -0
  87. data/app/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  88. data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  89. data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  90. data/app/assets/fonts/roboto/Roboto-Light.eot +0 -0
  91. data/app/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  92. data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
  93. data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  94. data/app/assets/fonts/roboto/Roboto-Medium.eot +0 -0
  95. data/app/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  96. data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  97. data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  98. data/app/assets/fonts/roboto/Roboto-Regular.eot +0 -0
  99. data/app/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  100. data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  101. data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  102. data/app/assets/fonts/roboto/Roboto-Thin.eot +0 -0
  103. data/app/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  104. data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  105. data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  106. data/app/assets/javascripts/materialize/animation.js +0 -9
  107. data/app/assets/javascripts/materialize/buttons.js +0 -267
  108. data/app/assets/javascripts/materialize/cards.js +0 -26
  109. data/app/assets/javascripts/materialize/carousel.js +0 -454
  110. data/app/assets/javascripts/materialize/character_counter.js +0 -72
  111. data/app/assets/javascripts/materialize/chips.js +0 -289
  112. data/app/assets/javascripts/materialize/collapsible.js +0 -160
  113. data/app/assets/javascripts/materialize/date_picker/picker.date.js +0 -1430
  114. data/app/assets/javascripts/materialize/date_picker/picker.js +0 -1123
  115. data/app/assets/javascripts/materialize/dropdown.js +0 -265
  116. data/app/assets/javascripts/materialize/extras/nouislider.js +0 -1666
  117. data/app/assets/javascripts/materialize/extras/nouislider.min.js +0 -1
  118. data/app/assets/javascripts/materialize/forms.js +0 -682
  119. data/app/assets/javascripts/materialize/global.js +0 -98
  120. data/app/assets/javascripts/materialize/hammer.min.js +0 -1
  121. data/app/assets/javascripts/materialize/init.js +0 -174
  122. data/app/assets/javascripts/materialize/initial.js +0 -11
  123. data/app/assets/javascripts/materialize/jquery.easing.1.3.js +0 -205
  124. data/app/assets/javascripts/materialize/jquery.hammer.js +0 -33
  125. data/app/assets/javascripts/materialize/jquery.timeago.min.js +0 -1
  126. data/app/assets/javascripts/materialize/materialbox.js +0 -269
  127. data/app/assets/javascripts/materialize/modal.js +0 -184
  128. data/app/assets/javascripts/materialize/parallax.js +0 -58
  129. data/app/assets/javascripts/materialize/prism.js +0 -8
  130. data/app/assets/javascripts/materialize/pushpin.js +0 -71
  131. data/app/assets/javascripts/materialize/scrollFire.js +0 -48
  132. data/app/assets/javascripts/materialize/scrollspy.js +0 -284
  133. data/app/assets/javascripts/materialize/sideNav.js +0 -370
  134. data/app/assets/javascripts/materialize/slider.js +0 -321
  135. data/app/assets/javascripts/materialize/tabs.js +0 -164
  136. data/app/assets/javascripts/materialize/toasts.js +0 -137
  137. data/app/assets/javascripts/materialize/tooltip.js +0 -236
  138. data/app/assets/javascripts/materialize/transitions.js +0 -169
  139. data/app/assets/javascripts/materialize/velocity.min.js +0 -5
  140. data/app/assets/javascripts/materialize.js +0 -5
  141. data/app/assets/stylesheets/materialize/components/_mixins.scss +0 -5
  142. data/app/assets/stylesheets/materialize/components/_normalize.scss +0 -424
  143. data/app/assets/stylesheets/materialize/components/_prefixer.scss +0 -384
  144. data/app/assets/stylesheets/materialize/components/_roboto.scss +0 -49
  145. data/app/assets/stylesheets/materialize/components/_waves.scss +0 -177
  146. data/app/assets/stylesheets/materialize/components/date_picker/_default.date.scss +0 -435
  147. data/app/assets/stylesheets/materialize/components/date_picker/_default.scss +0 -201
  148. data/app/assets/stylesheets/materialize/components/date_picker/_default.time.scss +0 -125
  149. data/app/assets/stylesheets/materialize/components/forms/_radio-buttons.scss +0 -117
  150. data/app/assets/stylesheets/materialize/extras/nouislider.css +0 -259
@@ -1,384 +0,0 @@
1
- //---------------------------------------------------
2
- // Sass Prefixer
3
- // -------------------------------------------------
4
- // TABLE OF CONTENTS
5
- // (*) denotes a syntax-sugar helper
6
- // -------------------------------------------------
7
- //
8
- // animation($args)
9
- // animation-delay($delay)
10
- // animation-direction($direction)
11
- // animation-duration($duration)
12
- // animation-fill-mode($mode)
13
- // animation-iteration-count($count)
14
- // animation-name($name)
15
- // animation-play-state($state)
16
- // animation-timing-function($function)
17
- // background-size($args)
18
- // inner-shadow($args) *
19
- // box-sizing($args)
20
- // border-box() *
21
- // content-box() *
22
- // columns($args)
23
- // column-count($count)
24
- // column-gap($gap)
25
- // column-rule($args)
26
- // column-width($width)
27
- // flexbox()
28
- // flex($args)
29
- // order($args)
30
- // align($args)
31
- // justify-content($args)
32
- // gradient($default,$start,$stop) *
33
- // linear-gradient-top($default,$color1,$stop1,$color2,$stop2,[$color3,$stop3,$color4,$stop4])*
34
- // linear-gradient-left($default,$color1,$stop1,$color2,$stop2,[$color3,$stop3,$color4,$stop4])*
35
- // perspective($pixels)
36
- // transform($args)
37
- // transform-origin($args)
38
- // transform-style($style)
39
- // rotate($deg)
40
- // scale($factor)
41
- // translate($x,$y)
42
- // translate3d($x,$y,$z)
43
- // translateHardware($x,$y) *
44
- // text-shadow($args)
45
- // transition($args)
46
- // transition-delay($delay)
47
- // transition-duration($duration)
48
- // transition-property($property)
49
- // transition-timing-function($function)
50
-
51
-
52
- // Animation
53
-
54
- // @mixin animation($args) {
55
- // -webkit-animation: $args;
56
- // -moz-animation: $args;
57
- // -ms-animation: $args;
58
- // -o-animation: $args;
59
- // animation: $args;
60
- // }
61
- // @mixin animation-delay($delay) {
62
- // -webkit-animation-delay: $delay;
63
- // -moz-animation-delay: $delay;
64
- // -ms-animation-delay: $delay;
65
- // -o-animation-delay: $delay;
66
- // animation-delay: $delay;
67
- // }
68
- // @mixin animation-direction($direction) {
69
- // -webkit-animation-direction: $direction;
70
- // -moz-animation-direction: $direction;
71
- // -ms-animation-direction: $direction;
72
- // -o-animation-direction: $direction;
73
- // }
74
- // @mixin animation-duration($duration) {
75
- // -webkit-animation-duration: $duration;
76
- // -moz-animation-duration: $duration;
77
- // -ms-animation-duration: $duration;
78
- // -o-animation-duration: $duration;
79
- // }
80
- // @mixin animation-fill-mode($mode) {
81
- // -webkit-animation-fill-mode: $mode;
82
- // -moz-animation-fill-mode: $mode;
83
- // -ms-animation-fill-mode: $mode;
84
- // -o-animation-fill-mode: $mode;
85
- // animation-fill-mode: $mode;
86
- // }
87
- // @mixin animation-iteration-count($count) {
88
- // -webkit-animation-iteration-count: $count;
89
- // -moz-animation-iteration-count: $count;
90
- // -ms-animation-iteration-count: $count;
91
- // -o-animation-iteration-count: $count;
92
- // animation-iteration-count: $count;
93
- // }
94
- // @mixin animation-name($name) {
95
- // -webkit-animation-name: $name;
96
- // -moz-animation-name: $name;
97
- // -ms-animation-name: $name;
98
- // -o-animation-name: $name;
99
- // animation-name: $name;
100
- // }
101
- // @mixin animation-play-state($state) {
102
- // -webkit-animation-play-state: $state;
103
- // -moz-animation-play-state: $state;
104
- // -ms-animation-play-state: $state;
105
- // -o-animation-play-state: $state;
106
- // animation-play-state: $state;
107
- // }
108
- // @mixin animation-timing-function($function) {
109
- // -webkit-animation-timing-function: $function;
110
- // -moz-animation-timing-function: $function;
111
- // -ms-animation-timing-function: $function;
112
- // -o-animation-timing-function: $function;
113
- // animation-timing-function: $function;
114
- // }
115
-
116
- // Keyframes
117
- // @mixin keyframes($animation-name) {
118
- // @-webkit-keyframes #{$animation-name} {
119
- // @content;
120
- // }
121
- // @-moz-keyframes #{$animation-name} {
122
- // @content;
123
- // }
124
- // @keyframes #{$animation-name} {
125
- // @content;
126
- // }
127
- // }
128
-
129
- // Backface-visibility
130
-
131
- // @mixin backface-visibility($args) {
132
- // -webkit-backface-visibility: $args;
133
- // -moz-backface-visibility: $args;
134
- // -ms-backface-visibility: $args;
135
- // backface-visibility: $args;
136
- // }
137
-
138
-
139
- // Background Size
140
-
141
- // @mixin background-size($args) {
142
- // -webkit-background-size: $args;
143
- // background-size: $args;
144
- // }
145
-
146
- // Box Sizing
147
-
148
- // @mixin box-sizing($args) {
149
- // -webkit-box-sizing: $args;
150
- // -moz-box-sizing: $args;
151
- // box-sizing: $args;
152
- // }
153
- // @mixin border-box(){
154
- // @include box-sizing(border-box);
155
- // }
156
- // @mixin content-box(){
157
- // @include box-sizing(content-box);
158
- // }
159
-
160
-
161
- // Columns
162
-
163
- // @mixin columns($args) {
164
- // -webkit-columns: $args;
165
- // -moz-columns: $args;
166
- // columns: $args;
167
- // }
168
- // @mixin column-count($count) {
169
- // -webkit-column-count: $count;
170
- // -moz-column-count: $count;
171
- // column-count: $count;
172
- // }
173
- // @mixin column-gap($gap) {
174
- // -webkit-column-gap: $gap;
175
- // -moz-column-gap: $gap;
176
- // column-gap: $gap;
177
- // }
178
- // @mixin column-width($width) {
179
- // -webkit-column-width: $width;
180
- // -moz-column-width: $width;
181
- // column-width: $width;
182
- // }
183
- // @mixin column-rule($args) {
184
- // -webkit-column-rule: $args;
185
- // -moz-column-rule: $args;
186
- // column-rule: $args;
187
- // }
188
-
189
- // Filter
190
- // @mixin filter($args) {
191
- // -webkit-filter: $args;
192
- // -moz-filter: $args;
193
- // -o-filter: $args;
194
- // -ms-filter: $args;
195
- // }
196
-
197
- // Flexbox
198
- // @mixin flexbox() {
199
- // display: -webkit-box;
200
- // display: -moz-box;
201
- // display: -ms-flexbox;
202
- // display: -webkit-flex;
203
- // display: flex;
204
- // }
205
- // @mixin flex($values) {
206
- // -webkit-box-flex: $values;
207
- // -moz-box-flex: $values;
208
- // -webkit-flex: $values;
209
- // -ms-flex: $values;
210
- // flex: $values;
211
- // }
212
- // @mixin order($val) {
213
- // -webkit-box-ordinal-group: $val;
214
- // -moz-box-ordinal-group: $val;
215
- // -ms-flex-order: $val;
216
- // -webkit-order: $val;
217
- // order: $val;
218
- // }
219
- // @mixin align($align) {
220
- // -webkit-flex-align: $align;
221
- // -ms-flex-align: $align;
222
- // -webkit-align-items: $align;
223
- // align-items: $align;
224
- // }
225
- // @mixin justify-content($val) {
226
- // -webkit-justify-content: $val;
227
- // justify-content: $val;
228
- // }
229
- // Gradients
230
-
231
- // @mixin gradient($default: #F5F5F5, $start: #EEE, $stop: #FFF) {
232
- // @include linear-gradient-top($default,$start,0%,$stop,100%);
233
- // }
234
- // @mixin linear-gradient-top($default,$color1,$stop1,$color2,$stop2) {
235
- // background-color: $default;
236
- // background-image: -webkit-gradient(linear, left top, left bottom, color-stop($stop1, $color1), color-stop($stop2 $color2));
237
- // background-image: -webkit-linear-gradient(top, $color1 $stop1, $color2 $stop2);
238
- // background-image: -moz-linear-gradient(top, $color1 $stop1, $color2 $stop2);
239
- // background-image: -ms-linear-gradient(top, $color1 $stop1, $color2 $stop2);
240
- // background-image: -o-linear-gradient(top, $color1 $stop1, $color2 $stop2);
241
- // background-image: linear-gradient(top, $color1 $stop1, $color2 $stop2);
242
- // }
243
- // @mixin linear-gradient-top2($default,$color1,$stop1,$color2,$stop2,$color3,$stop3) {
244
- // background-color: $default;
245
- // background-image: -webkit-gradient(linear, left top, left bottom, color-stop($stop1, $color1), color-stop($stop2 $color2), color-stop($stop3 $color3));
246
- // background-image: -webkit-linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3);
247
- // background-image: -moz-linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3);
248
- // background-image: -ms-linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3);
249
- // background-image: -o-linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3);
250
- // background-image: linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3);
251
- // }
252
- // @mixin linear-gradient-top3($default,$color1,$stop1,$color2,$stop2,$color3,$stop3,$color4,$stop4) {
253
- // background-color: $default;
254
- // background-image: -webkit-gradient(linear, left top, left bottom, color-stop($stop1, $color1), color-stop($stop2 $color2), color-stop($stop3 $color3), color-stop($stop4 $color4));
255
- // background-image: -webkit-linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
256
- // background-image: -moz-linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
257
- // background-image: -ms-linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
258
- // background-image: -o-linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
259
- // background-image: linear-gradient(top, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
260
- // }
261
- // @mixin linear-gradient-left($default,$color1,$stop1,$color2,$stop2) {
262
- // background-color: $default;
263
- // background-image: -webkit-gradient(linear, left top, left top, color-stop($stop1, $color1), color-stop($stop2 $color2));
264
- // background-image: -webkit-linear-gradient(left, $color1 $stop1, $color2 $stop2);
265
- // background-image: -moz-linear-gradient(left, $color1 $stop1, $color2 $stop2);
266
- // background-image: -ms-linear-gradient(left, $color1 $stop1, $color2 $stop2);
267
- // background-image: -o-linear-gradient(left, $color1 $stop1, $color2 $stop2);
268
- // background-image: linear-gradient(left, $color1 $stop1, $color2 $stop2);
269
- // }
270
- // @mixin linear-gradient-left2($default,$color1,$stop1,$color2,$stop2,$color3,$stop3) {
271
- // background-color: $default;
272
- // background-image: -webkit-gradient(linear, left top, left top, color-stop($stop1, $color1), color-stop($stop2 $color2), color-stop($stop3 $color3));
273
- // background-image: -webkit-linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3);
274
- // background-image: -moz-linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3);
275
- // background-image: -ms-linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3);
276
- // background-image: -o-linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3);
277
- // background-image: linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3);
278
- // }
279
- // @mixin linear-gradient-left3($default,$color1,$stop1,$color2,$stop2,$color3,$stop3,$color4,$stop4) {
280
- // background-color: $default;
281
- // background-image: -webkit-gradient(linear, left top, left top, color-stop($stop1, $color1), color-stop($stop2 $color2), color-stop($stop3 $color3), color-stop($stop4 $color4));
282
- // background-image: -webkit-linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
283
- // background-image: -moz-linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
284
- // background-image: -ms-linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
285
- // background-image: -o-linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
286
- // background-image: linear-gradient(left, $color1 $stop1, $color2 $stop2, $color3 $stop3, $color4 $stop4);
287
- // }
288
-
289
- // Perspective
290
- @mixin perspective($pixels) {
291
- perspective: $pixels;
292
- -webkit-perspective: $pixels;
293
- }
294
-
295
-
296
- // Text Shadow
297
-
298
- // @mixin text-shadow($args) {
299
- // text-shadow: $args;
300
- // }
301
-
302
-
303
- // Transforms
304
-
305
- // @mixin transform($args) {
306
- // -webkit-transform: $args;
307
- // -moz-transform: $args;
308
- // -ms-transform: $args;
309
- // -o-transform: $args;
310
- // transform: $args;
311
- // }
312
- // @mixin transform-origin($args) {
313
- // -webkit-transform-origin: $args;
314
- // -moz-transform-origin: $args;
315
- // -ms-transform-origin: $args;
316
- // -o-transform-origin: $args;
317
- // transform-origin: $args;
318
- // }
319
- // @mixin transform-style($style) {
320
- // -webkit-transform-style: $style;
321
- // -moz-transform-style: $style;
322
- // -ms-transform-style: $style;
323
- // -o-transform-style: $style;
324
- // transform-style: $style;
325
- // }
326
- // @mixin rotate($deg:45deg){
327
- // @include transform(rotate($deg));
328
- // }
329
- // @mixin scale($factor:.5){
330
- // @include transform(scale($factor));
331
- // }
332
- // @mixin translate($x,$y){
333
- // @include transform(translate($x,$y));
334
- // }
335
- // @mixin translate3d($x,$y,$z) {
336
- // @include transform(translate3d($x,$y,$z));
337
- // }
338
- // @mixin translateHardware($x,$y) {
339
- // @include translate($x,$y);
340
- // -webkit-transform: translate3d($x,$y,0);
341
- // -moz-transform: translate3d($x,$y,0);
342
- // -o-transform: translate3d($x,$y,0);
343
- // -ms-transform: translate3d($x,$y,0);
344
- // transform: translate3d($x,$y,0);
345
- // }
346
-
347
-
348
- // Transitions
349
-
350
- // @mixin transition($args:200ms) {
351
- // -webkit-transition: $args;
352
- // -moz-transition: $args;
353
- // -o-transition: $args;
354
- // -ms-transition: $args;
355
- // transition: $args;
356
- // }
357
- // @mixin transition-delay($delay:0) {
358
- // -webkit-transition-delay: $delay;
359
- // -moz-transition-delay: $delay;
360
- // -o-transition-delay: $delay;
361
- // -ms-transition-delay: $delay;
362
- // transition-delay: $delay;
363
- // }
364
- // @mixin transition-duration($duration:200ms) {
365
- // -webkit-transition-duration: $duration;
366
- // -moz-transition-duration: $duration;
367
- // -o-transition-duration: $duration;
368
- // -ms-transition-duration: $duration;
369
- // transition-duration: $duration;
370
- // }
371
- // @mixin transition-property($property:all) {
372
- // -webkit-transition-property: $property;
373
- // -moz-transition-property: $property;
374
- // -o-transition-property: $property;
375
- // -ms-transition-property: $property;
376
- // transition-property: $property;
377
- // }
378
- // @mixin transition-timing-function($function:ease) {
379
- // -webkit-transition-timing-function: $function;
380
- // -moz-transition-timing-function: $function;
381
- // -o-transition-timing-function: $function;
382
- // -ms-transition-timing-function: $function;
383
- // transition-timing-function: $function;
384
- // }
@@ -1,49 +0,0 @@
1
- @font-face {
2
- font-family: "Roboto";
3
- src: local(Roboto Thin), font-url('#{$roboto-font-path}Roboto-Thin.eot');
4
- src: font-url("#{$roboto-font-path}Roboto-Thin.eot?#iefix") format('embedded-opentype'),
5
- font-url("#{$roboto-font-path}Roboto-Thin.woff2") format("woff2"),
6
- font-url("#{$roboto-font-path}Roboto-Thin.woff") format("woff"),
7
- font-url("#{$roboto-font-path}Roboto-Thin.ttf") format("truetype");
8
-
9
- font-weight: 200;
10
- }
11
- @font-face {
12
- font-family: "Roboto";
13
- src: local(Roboto Light), font-url('#{$roboto-font-path}Roboto-Light.eot');
14
- src: font-url("#{$roboto-font-path}Roboto-Light.eot?#iefix") format('embedded-opentype'),
15
- font-url("#{$roboto-font-path}Roboto-Light.woff2") format("woff2"),
16
- font-url("#{$roboto-font-path}Roboto-Light.woff") format("woff"),
17
- font-url("#{$roboto-font-path}Roboto-Light.ttf") format("truetype");
18
- font-weight: 300;
19
- }
20
-
21
- @font-face {
22
- font-family: "Roboto";
23
- src: local(Roboto Regular), font-url('#{$roboto-font-path}Roboto-Regular.eot');
24
- src: font-url("#{$roboto-font-path}Roboto-Regular.eot?#iefix") format('embedded-opentype'),
25
- font-url("#{$roboto-font-path}Roboto-Regular.woff2") format("woff2"),
26
- font-url("#{$roboto-font-path}Roboto-Regular.woff") format("woff"),
27
- font-url("#{$roboto-font-path}Roboto-Regular.ttf") format("truetype");
28
- font-weight: 400;
29
- }
30
-
31
- @font-face {
32
- font-family: "Roboto";
33
- src: font-url('#{$roboto-font-path}Roboto-Medium.eot');
34
- src: font-url("#{$roboto-font-path}Roboto-Medium.eot?#iefix") format('embedded-opentype'),
35
- font-url("#{$roboto-font-path}Roboto-Medium.woff2") format("woff2"),
36
- font-url("#{$roboto-font-path}Roboto-Medium.woff") format("woff"),
37
- font-url("#{$roboto-font-path}Roboto-Medium.ttf") format("truetype");
38
- font-weight: 500;
39
- }
40
-
41
- @font-face {
42
- font-family: "Roboto";
43
- src: font-url('#{$roboto-font-path}Roboto-Bold.eot');
44
- src: font-url("#{$roboto-font-path}Roboto-Bold.eot?#iefix") format('embedded-opentype'),
45
- font-url("#{$roboto-font-path}Roboto-Bold.woff2") format("woff2"),
46
- font-url("#{$roboto-font-path}Roboto-Bold.woff") format("woff"),
47
- font-url("#{$roboto-font-path}Roboto-Bold.ttf") format("truetype");
48
- font-weight: 700;
49
- }
@@ -1,177 +0,0 @@
1
-
2
- /*!
3
- * Waves v0.6.0
4
- * http://fian.my.id/Waves
5
- *
6
- * Copyright 2014 Alfiana E. Sibuea and other contributors
7
- * Released under the MIT license
8
- * https://github.com/fians/Waves/blob/master/LICENSE
9
- */
10
-
11
-
12
- .waves-effect {
13
- position: relative;
14
- cursor: pointer;
15
- display: inline-block;
16
- overflow: hidden;
17
- -webkit-user-select: none;
18
- -moz-user-select: none;
19
- -ms-user-select: none;
20
- user-select: none;
21
- -webkit-tap-highlight-color: transparent;
22
- // white-space: nowrap;
23
- // outline: 0;
24
-
25
- vertical-align: middle;
26
- // cursor: pointer;
27
- // border: none;
28
- // outline: none;
29
- // color: inherit;
30
- // background-color: rgba(0, 0, 0, 0);
31
- // font-size: 1em;
32
- // line-height:1em;
33
- // text-align: center;
34
- // text-decoration: none;
35
- z-index: 1;
36
- will-change: opacity, transform;
37
- transition: .3s ease-out;
38
-
39
- .waves-ripple {
40
- position: absolute;
41
- border-radius: 50%;
42
- width: 20px;
43
- height: 20px;
44
- margin-top:-10px;
45
- margin-left:-10px;
46
- opacity: 0;
47
-
48
- background: rgba(0,0,0,0.2);
49
- // $gradient: rgba(0,0,0,0.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%;
50
- // background: -webkit-radial-gradient($gradient);
51
- // background: -o-radial-gradient($gradient);
52
- // background: -moz-radial-gradient($gradient);
53
- // background: radial-gradient($gradient);
54
- transition: all 0.7s ease-out;
55
- transition-property: transform, opacity;
56
- transform: scale(0);
57
- pointer-events: none;
58
- }
59
-
60
- // Waves Colors
61
- &.waves-light .waves-ripple {
62
- background-color: rgba(255, 255, 255, 0.45);
63
- }
64
-
65
- &.waves-red .waves-ripple {
66
- background-color: rgba(244, 67, 54, .70);
67
- }
68
- &.waves-yellow .waves-ripple {
69
- background-color: rgba(255, 235, 59, .70);
70
- }
71
- &.waves-orange .waves-ripple {
72
- background-color: rgba(255, 152, 0, .70);
73
- }
74
- &.waves-purple .waves-ripple {
75
- background-color: rgba(156, 39, 176, 0.70);
76
- }
77
- &.waves-green .waves-ripple {
78
- background-color: rgba(76, 175, 80, 0.70);
79
- }
80
- &.waves-teal .waves-ripple {
81
- background-color: rgba(0, 150, 136, 0.70);
82
- }
83
-
84
- // Style input button bug.
85
- input[type="button"], input[type="reset"], input[type="submit"] {
86
- border: 0;
87
- font-style: normal;
88
- font-size: inherit;
89
- text-transform: inherit;
90
- background: none;
91
- }
92
-
93
- img {
94
- position: relative;
95
- z-index: -1;
96
- }
97
- }
98
-
99
- .waves-notransition {
100
- transition: none #{"!important"};
101
- }
102
-
103
- .waves-circle {
104
- transform: translateZ(0);
105
- -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
106
- }
107
-
108
- // .waves-button,
109
- // .waves-button:hover,
110
- // .waves-button:visited,
111
- // .waves-button-input {
112
- // white-space: nowrap;
113
- // vertical-align: middle;
114
- // cursor: pointer;
115
- // border: none;
116
- // outline: none;
117
- // color: inherit;
118
- // background-color: rgba(0, 0, 0, 0);
119
- // font-size: 1em;
120
- // line-height:1em;
121
- // text-align: center;
122
- // text-decoration: none;
123
- // z-index: 1;
124
- // }
125
-
126
- // .waves-button {
127
- // padding: 0.85em 1.1em;
128
- // border-radius: 0.2em;
129
- // }
130
-
131
- // .waves-button-input {
132
- // margin: 0;
133
- // padding: 0.85em 1.1em;
134
- // }
135
-
136
- .waves-input-wrapper {
137
- border-radius: 0.2em;
138
- vertical-align: bottom;
139
-
140
- // &.waves-button {
141
- // padding: 0;
142
- // }
143
-
144
- .waves-button-input {
145
- position: relative;
146
- top: 0;
147
- left: 0;
148
- z-index: 1;
149
- }
150
- }
151
-
152
- .waves-circle {
153
- text-align: center;
154
- width: 2.5em;
155
- height: 2.5em;
156
- line-height: 2.5em;
157
- border-radius: 50%;
158
- -webkit-mask-image: none;
159
- }
160
-
161
- // .waves-float {
162
- // -webkit-mask-image: none;
163
- // @include box-shadow(0px 1px 1.5px 1px rgba(0, 0, 0, 0.12));
164
-
165
- // &:active {
166
- // @include box-shadow(0px 8px 20px 1px rgba(0, 0, 0, 0.30));
167
- // }
168
- // }
169
-
170
- .waves-block {
171
- display: block;
172
- }
173
-
174
- /* Firefox Bug: link not triggered */
175
- .waves-effect .waves-ripple {
176
- z-index: -1;
177
- }