Commit c5169e0ee67a0b5f71b5579ff338759545735698

Authored by Renato De Donato
1 parent a1a3bc73

a new hope

Showing 1346 changed files with 53186 additions and 79694 deletions

Too many changes.

To preserve performance only 100 of 1346 files are displayed.

bower_components/Materialize/.bower.json 100644 โ†’ 100755
... ... @@ -64,14 +64,15 @@
64 64 },
65 65 "devDependencies": {},
66 66 "homepage": "https://github.com/Dogfalo/materialize",
67   - "version": "0.97.5",
68   - "_release": "0.97.5",
  67 + "version": "0.97.1",
  68 + "_release": "0.97.1",
69 69 "_resolution": {
70 70 "type": "version",
71   - "tag": "v0.97.5",
72   - "commit": "dc69e030f1c3b4b0da5fbf0e29edac5d09e1829b"
  71 + "tag": "v0.97.1",
  72 + "commit": "634e7fde2086f59d1ec3fae68cf9f187c193fa89"
73 73 },
74 74 "_source": "git://github.com/Dogfalo/materialize.git",
75 75 "_target": "~0.97.1",
76   - "_originalSource": "materialize"
  76 + "_originalSource": "materialize",
  77 + "_direct": true
77 78 }
78 79 \ No newline at end of file
... ...
bower_components/Materialize/.npmignore deleted
1   -images/
2 0 \ No newline at end of file
bower_components/Materialize/.travis.yml 100644 โ†’ 100755
1 1 language: node_js
2   -node_js:
3   - - "0.12"
4   -before_install:
5   - - npm install -g grunt-cli
6 2 git:
7 3 depth: 10
  4 +node_js:
  5 + - "0.10"
  6 +before_install:
  7 + - npm install -g grunt
  8 + - npm install -g grunt-cli
8 9 \ No newline at end of file
... ...
bower_components/Materialize/CHANGELOG.md 100644 โ†’ 100755
bower_components/Materialize/CONTRIBUTING.md 100644 โ†’ 100755
... ... @@ -19,75 +19,3 @@
19 19 - Make your changes
20 20 - Submit a pull request with full remarks documenting your changes
21 21 - Pull request MAY then be accepted by project creators
22   -
23   -## Jasmine Testing Guide
24   -**References:**
25   -- [Jasmine Documentation](http://jasmine.github.io/2.0/introduction.html)
26   -- [Grunt Jasmine Plugin](https://github.com/gruntjs/grunt-contrib-jasmine)
27   -- [Example Jasmine Tests](https://github.com/Dogfalo/materialize/tree/master/tests/spec)
28   -- [Travis CI](https://travis-ci.org/Dogfalo/materialize)
29   -
30   -Before you start, make sure you install grunt and all its dependencies. To verify you have all the correct dependencies you can run `grunt travis` and it will run the tests. If you get an errors and have not made any changes, it means you have not installed the proper dependencies.
31   -
32   -Materialize uses Jasmine as the testing framework. We also include a jQuery library which allows you to write tests using jQuery syntax.
33   -
34   -### Starting Out
35   -
36   -First to familiarize yourself with how the tests are structured, you can take a look inside the `tests/` directory. Each component should have its own folder. Follow the file-naming conventions that are used in the existing tests.
37   -
38   -Before writing tests, make sure you are working off of a clean git branch of your fork. This will greatly simplify the Pull Request process.
39   -
40   -### Writing Tests
41   -
42   -Before writing tests, make sure you understand what the expected-behavior of the component actually is. Reading over the component code and documentation will greatly aid you in this regard.
43   -
44   -Use `describe` blocks to section disparate portions of tests and `it` blocks inside those to further break up tests into features. Inside `it` blocks, you can have multiple except statements. As a general testing principle, be sure to try and test both the case and its โ€œinverseโ€ to lessen the chance for false positives.
45   -
46   -Example:
47   -```javascript
48   -expect(toast.first('span').text()).toBe('I am toast content');
49   -expect(toast.first('span').text()).not.toBe('I am toast');
50   -```
51   -
52   -You can use beforeEach, and afterEach in either block to designate code that will execute before or after each item. This is useful if you need to setup some scenario for each test, or reset some things after each test.
53   -
54   -When writing expect statements (Jasmineโ€™s form of assert), it is very important to write an expected behavior string so in the event of an error, the test that failed is very clear.
55   -
56   -Example:
57   -```javascript
58   -expect(toast.length).toBe(0, 'because toast should be removed by now');
59   -```
60   -When this expect statement fails it will list the reason as โ€œbecause toast should be removed by nowโ€.
61   -
62   -Because our components are very front end heavy, familiarize yourself with jQuery ways of interacting with the dom and our components. You can use methods like [trigger](http://api.jquery.com/trigger/), to simulate certain events like the user clicking a button.
63   -
64   -We also understand that testing CSS properties is pretty tough so youโ€™ll have to be creative when writing good tests that ensure the styling is still working. Try and cover as many cases as you can but donโ€™t worry if there are some edge cases. You can add comments describing some problematic edge cases in TODOs so we know about them.
65   -
66   -### Submitting Your Pull Request
67   -
68   -Try and keep your commit history clean and concise. Once you submit your pull request, [Travis CI](https://travis-ci.org/Dogfalo/materialize) will automatically run your tests and will show a checkmark to show that all the tests have passed. Once this is done, weโ€™ll review your tests and code and make comments if there are issues or things we think could be improved. Then once everything looks good weโ€™ll merge the code in!
69   -
70   -
71   -### Useful Jasmine Tips
72   -
73   -1. To only run a specific spec at a time, to avoid wasting your time running all our other tests, you can set the flag `--filter`. For example:
74   - ```
75   - `grunt travis --filter=tabs`
76   - ```
77   -
78   - This would only run specs with tabs in its name.
79   -
80   -2. If you need a timeout in your test (waiting for some animation or action to be executed) you need to use the done callback. In your `it()` behavior function set done as an argument to your anonymous function. Then you can use javascriptโ€™s window `setTimeout`s normally. And when you want the test to finish just call the `done()` function. For example:
81   -
82   - ```javascript
83   - it ('should wait for a timeout', function(done) {
84   - // Execute action
85   - timeout(setTimeout(function() {
86   - // Wait a second
87   - // Test for result
88   - done();
89   - }, 1000);
90   - });
91   - ```
92   -
93   - **Note:** If you add done as a callback, and you donโ€™t call the `done()` function, it will stall forever and error after a max limit of around 5 seconds.
94 22 \ No newline at end of file
... ...
bower_components/Materialize/LICENSE 100644 โ†’ 100755
bower_components/Materialize/bin/materialize.css 100644 โ†’ 100755
Changes suppressed. Click to show
1 1 .materialize-red.lighten-5 {
2   - background-color: #fdeaeb !important;
3   -}
  2 + background-color: #fdeaeb !important; }
4 3  
5 4 .materialize-red-text.text-lighten-5 {
6   - color: #fdeaeb !important;
7   -}
  5 + color: #fdeaeb !important; }
8 6  
9 7 .materialize-red.lighten-4 {
10   - background-color: #f8c1c3 !important;
11   -}
  8 + background-color: #f8c1c3 !important; }
12 9  
13 10 .materialize-red-text.text-lighten-4 {
14   - color: #f8c1c3 !important;
15   -}
  11 + color: #f8c1c3 !important; }
16 12  
17 13 .materialize-red.lighten-3 {
18   - background-color: #f3989b !important;
19   -}
  14 + background-color: #f3989b !important; }
20 15  
21 16 .materialize-red-text.text-lighten-3 {
22   - color: #f3989b !important;
23   -}
  17 + color: #f3989b !important; }
24 18  
25 19 .materialize-red.lighten-2 {
26   - background-color: #ee6e73 !important;
27   -}
  20 + background-color: #ee6e73 !important; }
28 21  
29 22 .materialize-red-text.text-lighten-2 {
30   - color: #ee6e73 !important;
31   -}
  23 + color: #ee6e73 !important; }
32 24  
33 25 .materialize-red.lighten-1 {
34   - background-color: #ea454b !important;
35   -}
  26 + background-color: #ea454b !important; }
36 27  
37 28 .materialize-red-text.text-lighten-1 {
38   - color: #ea454b !important;
39   -}
  29 + color: #ea454b !important; }
40 30  
41 31 .materialize-red {
42   - background-color: #e51c23 !important;
43   -}
  32 + background-color: #e51c23 !important; }
44 33  
45 34 .materialize-red-text {
46   - color: #e51c23 !important;
47   -}
  35 + color: #e51c23 !important; }
48 36  
49 37 .materialize-red.darken-1 {
50   - background-color: #d0181e !important;
51   -}
  38 + background-color: #d0181e !important; }
52 39  
53 40 .materialize-red-text.text-darken-1 {
54   - color: #d0181e !important;
55   -}
  41 + color: #d0181e !important; }
56 42  
57 43 .materialize-red.darken-2 {
58   - background-color: #b9151b !important;
59   -}
  44 + background-color: #b9151b !important; }
60 45  
61 46 .materialize-red-text.text-darken-2 {
62   - color: #b9151b !important;
63   -}
  47 + color: #b9151b !important; }
64 48  
65 49 .materialize-red.darken-3 {
66   - background-color: #a21318 !important;
67   -}
  50 + background-color: #a21318 !important; }
68 51  
69 52 .materialize-red-text.text-darken-3 {
70   - color: #a21318 !important;
71   -}
  53 + color: #a21318 !important; }
72 54  
73 55 .materialize-red.darken-4 {
74   - background-color: #8b1014 !important;
75   -}
  56 + background-color: #8b1014 !important; }
76 57  
77 58 .materialize-red-text.text-darken-4 {
78   - color: #8b1014 !important;
79   -}
  59 + color: #8b1014 !important; }
80 60  
81 61 .red.lighten-5 {
82   - background-color: #FFEBEE !important;
83   -}
  62 + background-color: #FFEBEE !important; }
84 63  
85 64 .red-text.text-lighten-5 {
86   - color: #FFEBEE !important;
87   -}
  65 + color: #FFEBEE !important; }
88 66  
89 67 .red.lighten-4 {
90   - background-color: #FFCDD2 !important;
91   -}
  68 + background-color: #FFCDD2 !important; }
92 69  
93 70 .red-text.text-lighten-4 {
94   - color: #FFCDD2 !important;
95   -}
  71 + color: #FFCDD2 !important; }
96 72  
97 73 .red.lighten-3 {
98   - background-color: #EF9A9A !important;
99   -}
  74 + background-color: #EF9A9A !important; }
100 75  
101 76 .red-text.text-lighten-3 {
102   - color: #EF9A9A !important;
103   -}
  77 + color: #EF9A9A !important; }
104 78  
105 79 .red.lighten-2 {
106   - background-color: #E57373 !important;
107   -}
  80 + background-color: #E57373 !important; }
108 81  
109 82 .red-text.text-lighten-2 {
110   - color: #E57373 !important;
111   -}
  83 + color: #E57373 !important; }
112 84  
113 85 .red.lighten-1 {
114   - background-color: #EF5350 !important;
115   -}
  86 + background-color: #EF5350 !important; }
116 87  
117 88 .red-text.text-lighten-1 {
118   - color: #EF5350 !important;
119   -}
  89 + color: #EF5350 !important; }
120 90  
121 91 .red {
122   - background-color: #F44336 !important;
123   -}
  92 + background-color: #F44336 !important; }
124 93  
125 94 .red-text {
126   - color: #F44336 !important;
127   -}
  95 + color: #F44336 !important; }
128 96  
129 97 .red.darken-1 {
130   - background-color: #E53935 !important;
131   -}
  98 + background-color: #E53935 !important; }
132 99  
133 100 .red-text.text-darken-1 {
134   - color: #E53935 !important;
135   -}
  101 + color: #E53935 !important; }
136 102  
137 103 .red.darken-2 {
138   - background-color: #D32F2F !important;
139   -}
  104 + background-color: #D32F2F !important; }
140 105  
141 106 .red-text.text-darken-2 {
142   - color: #D32F2F !important;
143   -}
  107 + color: #D32F2F !important; }
144 108  
145 109 .red.darken-3 {
146   - background-color: #C62828 !important;
147   -}
  110 + background-color: #C62828 !important; }
148 111  
149 112 .red-text.text-darken-3 {
150   - color: #C62828 !important;
151   -}
  113 + color: #C62828 !important; }
152 114  
153 115 .red.darken-4 {
154   - background-color: #B71C1C !important;
155   -}
  116 + background-color: #B71C1C !important; }
156 117  
157 118 .red-text.text-darken-4 {
158   - color: #B71C1C !important;
159   -}
  119 + color: #B71C1C !important; }
160 120  
161 121 .red.accent-1 {
162   - background-color: #FF8A80 !important;
163   -}
  122 + background-color: #FF8A80 !important; }
164 123  
165 124 .red-text.text-accent-1 {
166   - color: #FF8A80 !important;
167   -}
  125 + color: #FF8A80 !important; }
168 126  
169 127 .red.accent-2 {
170   - background-color: #FF5252 !important;
171   -}
  128 + background-color: #FF5252 !important; }
172 129  
173 130 .red-text.text-accent-2 {
174   - color: #FF5252 !important;
175   -}
  131 + color: #FF5252 !important; }
176 132  
177 133 .red.accent-3 {
178   - background-color: #FF1744 !important;
179   -}
  134 + background-color: #FF1744 !important; }
180 135  
181 136 .red-text.text-accent-3 {
182   - color: #FF1744 !important;
183   -}
  137 + color: #FF1744 !important; }
184 138  
185 139 .red.accent-4 {
186   - background-color: #D50000 !important;
187   -}
  140 + background-color: #D50000 !important; }
188 141  
189 142 .red-text.text-accent-4 {
190   - color: #D50000 !important;
191   -}
  143 + color: #D50000 !important; }
192 144  
193 145 .pink.lighten-5 {
194   - background-color: #fce4ec !important;
195   -}
  146 + background-color: #fce4ec !important; }
196 147  
197 148 .pink-text.text-lighten-5 {
198   - color: #fce4ec !important;
199   -}
  149 + color: #fce4ec !important; }
200 150  
201 151 .pink.lighten-4 {
202   - background-color: #f8bbd0 !important;
203   -}
  152 + background-color: #f8bbd0 !important; }
204 153  
205 154 .pink-text.text-lighten-4 {
206   - color: #f8bbd0 !important;
207   -}
  155 + color: #f8bbd0 !important; }
208 156  
209 157 .pink.lighten-3 {
210   - background-color: #f48fb1 !important;
211   -}
  158 + background-color: #f48fb1 !important; }
212 159  
213 160 .pink-text.text-lighten-3 {
214   - color: #f48fb1 !important;
215   -}
  161 + color: #f48fb1 !important; }
216 162  
217 163 .pink.lighten-2 {
218   - background-color: #f06292 !important;
219   -}
  164 + background-color: #f06292 !important; }
220 165  
221 166 .pink-text.text-lighten-2 {
222   - color: #f06292 !important;
223   -}
  167 + color: #f06292 !important; }
224 168  
225 169 .pink.lighten-1 {
226   - background-color: #ec407a !important;
227   -}
  170 + background-color: #ec407a !important; }
228 171  
229 172 .pink-text.text-lighten-1 {
230   - color: #ec407a !important;
231   -}
  173 + color: #ec407a !important; }
232 174  
233 175 .pink {
234   - background-color: #e91e63 !important;
235   -}
  176 + background-color: #e91e63 !important; }
236 177  
237 178 .pink-text {
238   - color: #e91e63 !important;
239   -}
  179 + color: #e91e63 !important; }
240 180  
241 181 .pink.darken-1 {
242   - background-color: #d81b60 !important;
243   -}
  182 + background-color: #d81b60 !important; }
244 183  
245 184 .pink-text.text-darken-1 {
246   - color: #d81b60 !important;
247   -}
  185 + color: #d81b60 !important; }
248 186  
249 187 .pink.darken-2 {
250   - background-color: #c2185b !important;
251   -}
  188 + background-color: #c2185b !important; }
252 189  
253 190 .pink-text.text-darken-2 {
254   - color: #c2185b !important;
255   -}
  191 + color: #c2185b !important; }
256 192  
257 193 .pink.darken-3 {
258   - background-color: #ad1457 !important;
259   -}
  194 + background-color: #ad1457 !important; }
260 195  
261 196 .pink-text.text-darken-3 {
262   - color: #ad1457 !important;
263   -}
  197 + color: #ad1457 !important; }
264 198  
265 199 .pink.darken-4 {
266   - background-color: #880e4f !important;
267   -}
  200 + background-color: #880e4f !important; }
268 201  
269 202 .pink-text.text-darken-4 {
270   - color: #880e4f !important;
271   -}
  203 + color: #880e4f !important; }
272 204  
273 205 .pink.accent-1 {
274   - background-color: #ff80ab !important;
275   -}
  206 + background-color: #ff80ab !important; }
276 207  
277 208 .pink-text.text-accent-1 {
278   - color: #ff80ab !important;
279   -}
  209 + color: #ff80ab !important; }
280 210  
281 211 .pink.accent-2 {
282   - background-color: #ff4081 !important;
283   -}
  212 + background-color: #ff4081 !important; }
284 213  
285 214 .pink-text.text-accent-2 {
286   - color: #ff4081 !important;
287   -}
  215 + color: #ff4081 !important; }
288 216  
289 217 .pink.accent-3 {
290   - background-color: #f50057 !important;
291   -}
  218 + background-color: #f50057 !important; }
292 219  
293 220 .pink-text.text-accent-3 {
294   - color: #f50057 !important;
295   -}
  221 + color: #f50057 !important; }
296 222  
297 223 .pink.accent-4 {
298   - background-color: #c51162 !important;
299   -}
  224 + background-color: #c51162 !important; }
300 225  
301 226 .pink-text.text-accent-4 {
302   - color: #c51162 !important;
303   -}
  227 + color: #c51162 !important; }
304 228  
305 229 .purple.lighten-5 {
306   - background-color: #f3e5f5 !important;
307   -}
  230 + background-color: #f3e5f5 !important; }
308 231  
309 232 .purple-text.text-lighten-5 {
310   - color: #f3e5f5 !important;
311   -}
  233 + color: #f3e5f5 !important; }
312 234  
313 235 .purple.lighten-4 {
314   - background-color: #e1bee7 !important;
315   -}
  236 + background-color: #e1bee7 !important; }
316 237  
317 238 .purple-text.text-lighten-4 {
318   - color: #e1bee7 !important;
319   -}
  239 + color: #e1bee7 !important; }
320 240  
321 241 .purple.lighten-3 {
322   - background-color: #ce93d8 !important;
323   -}
  242 + background-color: #ce93d8 !important; }
324 243  
325 244 .purple-text.text-lighten-3 {
326   - color: #ce93d8 !important;
327   -}
  245 + color: #ce93d8 !important; }
328 246  
329 247 .purple.lighten-2 {
330   - background-color: #ba68c8 !important;
331   -}
  248 + background-color: #ba68c8 !important; }
332 249  
333 250 .purple-text.text-lighten-2 {
334   - color: #ba68c8 !important;
335   -}
  251 + color: #ba68c8 !important; }
336 252  
337 253 .purple.lighten-1 {
338   - background-color: #ab47bc !important;
339   -}
  254 + background-color: #ab47bc !important; }
340 255  
341 256 .purple-text.text-lighten-1 {
342   - color: #ab47bc !important;
343   -}
  257 + color: #ab47bc !important; }
344 258  
345 259 .purple {
346   - background-color: #9c27b0 !important;
347   -}
  260 + background-color: #9c27b0 !important; }
348 261  
349 262 .purple-text {
350   - color: #9c27b0 !important;
351   -}
  263 + color: #9c27b0 !important; }
352 264  
353 265 .purple.darken-1 {
354   - background-color: #8e24aa !important;
355   -}
  266 + background-color: #8e24aa !important; }
356 267  
357 268 .purple-text.text-darken-1 {
358   - color: #8e24aa !important;
359   -}
  269 + color: #8e24aa !important; }
360 270  
361 271 .purple.darken-2 {
362   - background-color: #7b1fa2 !important;
363   -}
  272 + background-color: #7b1fa2 !important; }
364 273  
365 274 .purple-text.text-darken-2 {
366   - color: #7b1fa2 !important;
367   -}
  275 + color: #7b1fa2 !important; }
368 276  
369 277 .purple.darken-3 {
370   - background-color: #6a1b9a !important;
371   -}
  278 + background-color: #6a1b9a !important; }
372 279  
373 280 .purple-text.text-darken-3 {
374   - color: #6a1b9a !important;
375   -}
  281 + color: #6a1b9a !important; }
376 282  
377 283 .purple.darken-4 {
378   - background-color: #4a148c !important;
379   -}
  284 + background-color: #4a148c !important; }
380 285  
381 286 .purple-text.text-darken-4 {
382   - color: #4a148c !important;
383   -}
  287 + color: #4a148c !important; }
384 288  
385 289 .purple.accent-1 {
386   - background-color: #ea80fc !important;
387   -}
  290 + background-color: #ea80fc !important; }
388 291  
389 292 .purple-text.text-accent-1 {
390   - color: #ea80fc !important;
391   -}
  293 + color: #ea80fc !important; }
392 294  
393 295 .purple.accent-2 {
394   - background-color: #e040fb !important;
395   -}
  296 + background-color: #e040fb !important; }
396 297  
397 298 .purple-text.text-accent-2 {
398   - color: #e040fb !important;
399   -}
  299 + color: #e040fb !important; }
400 300  
401 301 .purple.accent-3 {
402   - background-color: #d500f9 !important;
403   -}
  302 + background-color: #d500f9 !important; }
404 303  
405 304 .purple-text.text-accent-3 {
406   - color: #d500f9 !important;
407   -}
  305 + color: #d500f9 !important; }
408 306  
409 307 .purple.accent-4 {
410   - background-color: #aa00ff !important;
411   -}
  308 + background-color: #aa00ff !important; }
412 309  
413 310 .purple-text.text-accent-4 {
414   - color: #aa00ff !important;
415   -}
  311 + color: #aa00ff !important; }
416 312  
417 313 .deep-purple.lighten-5 {
418   - background-color: #ede7f6 !important;
419   -}
  314 + background-color: #ede7f6 !important; }
420 315  
421 316 .deep-purple-text.text-lighten-5 {
422   - color: #ede7f6 !important;
423   -}
  317 + color: #ede7f6 !important; }
424 318  
425 319 .deep-purple.lighten-4 {
426   - background-color: #d1c4e9 !important;
427   -}
  320 + background-color: #d1c4e9 !important; }
428 321  
429 322 .deep-purple-text.text-lighten-4 {
430   - color: #d1c4e9 !important;
431   -}
  323 + color: #d1c4e9 !important; }
432 324  
433 325 .deep-purple.lighten-3 {
434   - background-color: #b39ddb !important;
435   -}
  326 + background-color: #b39ddb !important; }
436 327  
437 328 .deep-purple-text.text-lighten-3 {
438   - color: #b39ddb !important;
439   -}
  329 + color: #b39ddb !important; }
440 330  
441 331 .deep-purple.lighten-2 {
442   - background-color: #9575cd !important;
443   -}
  332 + background-color: #9575cd !important; }
444 333  
445 334 .deep-purple-text.text-lighten-2 {
446   - color: #9575cd !important;
447   -}
  335 + color: #9575cd !important; }
448 336  
449 337 .deep-purple.lighten-1 {
450   - background-color: #7e57c2 !important;
451   -}
  338 + background-color: #7e57c2 !important; }
452 339  
453 340 .deep-purple-text.text-lighten-1 {
454   - color: #7e57c2 !important;
455   -}
  341 + color: #7e57c2 !important; }
456 342  
457 343 .deep-purple {
458   - background-color: #673ab7 !important;
459   -}
  344 + background-color: #673ab7 !important; }
460 345  
461 346 .deep-purple-text {
462   - color: #673ab7 !important;
463   -}
  347 + color: #673ab7 !important; }
464 348  
465 349 .deep-purple.darken-1 {
466   - background-color: #5e35b1 !important;
467   -}
  350 + background-color: #5e35b1 !important; }
468 351  
469 352 .deep-purple-text.text-darken-1 {
470   - color: #5e35b1 !important;
471   -}
  353 + color: #5e35b1 !important; }
472 354  
473 355 .deep-purple.darken-2 {
474   - background-color: #512da8 !important;
475   -}
  356 + background-color: #512da8 !important; }
476 357  
477 358 .deep-purple-text.text-darken-2 {
478   - color: #512da8 !important;
479   -}
  359 + color: #512da8 !important; }
480 360  
481 361 .deep-purple.darken-3 {
482   - background-color: #4527a0 !important;
483   -}
  362 + background-color: #4527a0 !important; }
484 363  
485 364 .deep-purple-text.text-darken-3 {
486   - color: #4527a0 !important;
487   -}
  365 + color: #4527a0 !important; }
488 366  
489 367 .deep-purple.darken-4 {
490   - background-color: #311b92 !important;
491   -}
  368 + background-color: #311b92 !important; }
492 369  
493 370 .deep-purple-text.text-darken-4 {
494   - color: #311b92 !important;
495   -}
  371 + color: #311b92 !important; }
496 372  
497 373 .deep-purple.accent-1 {
498   - background-color: #b388ff !important;
499   -}
  374 + background-color: #b388ff !important; }
500 375  
501 376 .deep-purple-text.text-accent-1 {
502   - color: #b388ff !important;
503   -}
  377 + color: #b388ff !important; }
504 378  
505 379 .deep-purple.accent-2 {
506   - background-color: #7c4dff !important;
507   -}
  380 + background-color: #7c4dff !important; }
508 381  
509 382 .deep-purple-text.text-accent-2 {
510   - color: #7c4dff !important;
511   -}
  383 + color: #7c4dff !important; }
512 384  
513 385 .deep-purple.accent-3 {
514   - background-color: #651fff !important;
515   -}
  386 + background-color: #651fff !important; }
516 387  
517 388 .deep-purple-text.text-accent-3 {
518   - color: #651fff !important;
519   -}
  389 + color: #651fff !important; }
520 390  
521 391 .deep-purple.accent-4 {
522   - background-color: #6200ea !important;
523   -}
  392 + background-color: #6200ea !important; }
524 393  
525 394 .deep-purple-text.text-accent-4 {
526   - color: #6200ea !important;
527   -}
  395 + color: #6200ea !important; }
528 396  
529 397 .indigo.lighten-5 {
530   - background-color: #e8eaf6 !important;
531   -}
  398 + background-color: #e8eaf6 !important; }
532 399  
533 400 .indigo-text.text-lighten-5 {
534   - color: #e8eaf6 !important;
535   -}
  401 + color: #e8eaf6 !important; }
536 402  
537 403 .indigo.lighten-4 {
538   - background-color: #c5cae9 !important;
539   -}
  404 + background-color: #c5cae9 !important; }
540 405  
541 406 .indigo-text.text-lighten-4 {
542   - color: #c5cae9 !important;
543   -}
  407 + color: #c5cae9 !important; }
544 408  
545 409 .indigo.lighten-3 {
546   - background-color: #9fa8da !important;
547   -}
  410 + background-color: #9fa8da !important; }
548 411  
549 412 .indigo-text.text-lighten-3 {
550   - color: #9fa8da !important;
551   -}
  413 + color: #9fa8da !important; }
552 414  
553 415 .indigo.lighten-2 {
554   - background-color: #7986cb !important;
555   -}
  416 + background-color: #7986cb !important; }
556 417  
557 418 .indigo-text.text-lighten-2 {
558   - color: #7986cb !important;
559   -}
  419 + color: #7986cb !important; }
560 420  
561 421 .indigo.lighten-1 {
562   - background-color: #5c6bc0 !important;
563   -}
  422 + background-color: #5c6bc0 !important; }
564 423  
565 424 .indigo-text.text-lighten-1 {
566   - color: #5c6bc0 !important;
567   -}
  425 + color: #5c6bc0 !important; }
568 426  
569 427 .indigo {
570   - background-color: #3f51b5 !important;
571   -}
  428 + background-color: #3f51b5 !important; }
572 429  
573 430 .indigo-text {
574   - color: #3f51b5 !important;
575   -}
  431 + color: #3f51b5 !important; }
576 432  
577 433 .indigo.darken-1 {
578   - background-color: #3949ab !important;
579   -}
  434 + background-color: #3949ab !important; }
580 435  
581 436 .indigo-text.text-darken-1 {
582   - color: #3949ab !important;
583   -}
  437 + color: #3949ab !important; }
584 438  
585 439 .indigo.darken-2 {
586   - background-color: #303f9f !important;
587   -}
  440 + background-color: #303f9f !important; }
588 441  
589 442 .indigo-text.text-darken-2 {
590   - color: #303f9f !important;
591   -}
  443 + color: #303f9f !important; }
592 444  
593 445 .indigo.darken-3 {
594   - background-color: #283593 !important;
595   -}
  446 + background-color: #283593 !important; }
596 447  
597 448 .indigo-text.text-darken-3 {
598   - color: #283593 !important;
599   -}
  449 + color: #283593 !important; }
600 450  
601 451 .indigo.darken-4 {
602   - background-color: #1a237e !important;
603   -}
  452 + background-color: #1a237e !important; }
604 453  
605 454 .indigo-text.text-darken-4 {
606   - color: #1a237e !important;
607   -}
  455 + color: #1a237e !important; }
608 456  
609 457 .indigo.accent-1 {
610   - background-color: #8c9eff !important;
611   -}
  458 + background-color: #8c9eff !important; }
612 459  
613 460 .indigo-text.text-accent-1 {
614   - color: #8c9eff !important;
615   -}
  461 + color: #8c9eff !important; }
616 462  
617 463 .indigo.accent-2 {
618   - background-color: #536dfe !important;
619   -}
  464 + background-color: #536dfe !important; }
620 465  
621 466 .indigo-text.text-accent-2 {
622   - color: #536dfe !important;
623   -}
  467 + color: #536dfe !important; }
624 468  
625 469 .indigo.accent-3 {
626   - background-color: #3d5afe !important;
627   -}
  470 + background-color: #3d5afe !important; }
628 471  
629 472 .indigo-text.text-accent-3 {
630   - color: #3d5afe !important;
631   -}
  473 + color: #3d5afe !important; }
632 474  
633 475 .indigo.accent-4 {
634   - background-color: #304ffe !important;
635   -}
  476 + background-color: #304ffe !important; }
636 477  
637 478 .indigo-text.text-accent-4 {
638   - color: #304ffe !important;
639   -}
  479 + color: #304ffe !important; }
640 480  
641 481 .blue.lighten-5 {
642   - background-color: #E3F2FD !important;
643   -}
  482 + background-color: #E3F2FD !important; }
644 483  
645 484 .blue-text.text-lighten-5 {
646   - color: #E3F2FD !important;
647   -}
  485 + color: #E3F2FD !important; }
648 486  
649 487 .blue.lighten-4 {
650   - background-color: #BBDEFB !important;
651   -}
  488 + background-color: #BBDEFB !important; }
652 489  
653 490 .blue-text.text-lighten-4 {
654   - color: #BBDEFB !important;
655   -}
  491 + color: #BBDEFB !important; }
656 492  
657 493 .blue.lighten-3 {
658   - background-color: #90CAF9 !important;
659   -}
  494 + background-color: #90CAF9 !important; }
660 495  
661 496 .blue-text.text-lighten-3 {
662   - color: #90CAF9 !important;
663   -}
  497 + color: #90CAF9 !important; }
664 498  
665 499 .blue.lighten-2 {
666   - background-color: #64B5F6 !important;
667   -}
  500 + background-color: #64B5F6 !important; }
668 501  
669 502 .blue-text.text-lighten-2 {
670   - color: #64B5F6 !important;
671   -}
  503 + color: #64B5F6 !important; }
672 504  
673 505 .blue.lighten-1 {
674   - background-color: #42A5F5 !important;
675   -}
  506 + background-color: #42A5F5 !important; }
676 507  
677 508 .blue-text.text-lighten-1 {
678   - color: #42A5F5 !important;
679   -}
  509 + color: #42A5F5 !important; }
680 510  
681 511 .blue {
682   - background-color: #2196F3 !important;
683   -}
  512 + background-color: #2196F3 !important; }
684 513  
685 514 .blue-text {
686   - color: #2196F3 !important;
687   -}
  515 + color: #2196F3 !important; }
688 516  
689 517 .blue.darken-1 {
690   - background-color: #1E88E5 !important;
691   -}
  518 + background-color: #1E88E5 !important; }
692 519  
693 520 .blue-text.text-darken-1 {
694   - color: #1E88E5 !important;
695   -}
  521 + color: #1E88E5 !important; }
696 522  
697 523 .blue.darken-2 {
698   - background-color: #1976D2 !important;
699   -}
  524 + background-color: #1976D2 !important; }
700 525  
701 526 .blue-text.text-darken-2 {
702   - color: #1976D2 !important;
703   -}
  527 + color: #1976D2 !important; }
704 528  
705 529 .blue.darken-3 {
706   - background-color: #1565C0 !important;
707   -}
  530 + background-color: #1565C0 !important; }
708 531  
709 532 .blue-text.text-darken-3 {
710   - color: #1565C0 !important;
711   -}
  533 + color: #1565C0 !important; }
712 534  
713 535 .blue.darken-4 {
714   - background-color: #0D47A1 !important;
715   -}
  536 + background-color: #0D47A1 !important; }
716 537  
717 538 .blue-text.text-darken-4 {
718   - color: #0D47A1 !important;
719   -}
  539 + color: #0D47A1 !important; }
720 540  
721 541 .blue.accent-1 {
722   - background-color: #82B1FF !important;
723   -}
  542 + background-color: #82B1FF !important; }
724 543  
725 544 .blue-text.text-accent-1 {
726   - color: #82B1FF !important;
727   -}
  545 + color: #82B1FF !important; }
728 546  
729 547 .blue.accent-2 {
730   - background-color: #448AFF !important;
731   -}
  548 + background-color: #448AFF !important; }
732 549  
733 550 .blue-text.text-accent-2 {
734   - color: #448AFF !important;
735   -}
  551 + color: #448AFF !important; }
736 552  
737 553 .blue.accent-3 {
738   - background-color: #2979FF !important;
739   -}
  554 + background-color: #2979FF !important; }
740 555  
741 556 .blue-text.text-accent-3 {
742   - color: #2979FF !important;
743   -}
  557 + color: #2979FF !important; }
744 558  
745 559 .blue.accent-4 {
746   - background-color: #2962FF !important;
747   -}
  560 + background-color: #2962FF !important; }
748 561  
749 562 .blue-text.text-accent-4 {
750   - color: #2962FF !important;
751   -}
  563 + color: #2962FF !important; }
752 564  
753 565 .light-blue.lighten-5 {
754   - background-color: #e1f5fe !important;
755   -}
  566 + background-color: #e1f5fe !important; }
756 567  
757 568 .light-blue-text.text-lighten-5 {
758   - color: #e1f5fe !important;
759   -}
  569 + color: #e1f5fe !important; }
760 570  
761 571 .light-blue.lighten-4 {
762   - background-color: #b3e5fc !important;
763   -}
  572 + background-color: #b3e5fc !important; }
764 573  
765 574 .light-blue-text.text-lighten-4 {
766   - color: #b3e5fc !important;
767   -}
  575 + color: #b3e5fc !important; }
768 576  
769 577 .light-blue.lighten-3 {
770   - background-color: #81d4fa !important;
771   -}
  578 + background-color: #81d4fa !important; }
772 579  
773 580 .light-blue-text.text-lighten-3 {
774   - color: #81d4fa !important;
775   -}
  581 + color: #81d4fa !important; }
776 582  
777 583 .light-blue.lighten-2 {
778   - background-color: #4fc3f7 !important;
779   -}
  584 + background-color: #4fc3f7 !important; }
780 585  
781 586 .light-blue-text.text-lighten-2 {
782   - color: #4fc3f7 !important;
783   -}
  587 + color: #4fc3f7 !important; }
784 588  
785 589 .light-blue.lighten-1 {
786   - background-color: #29b6f6 !important;
787   -}
  590 + background-color: #29b6f6 !important; }
788 591  
789 592 .light-blue-text.text-lighten-1 {
790   - color: #29b6f6 !important;
791   -}
  593 + color: #29b6f6 !important; }
792 594  
793 595 .light-blue {
794   - background-color: #03a9f4 !important;
795   -}
  596 + background-color: #03a9f4 !important; }
796 597  
797 598 .light-blue-text {
798   - color: #03a9f4 !important;
799   -}
  599 + color: #03a9f4 !important; }
800 600  
801 601 .light-blue.darken-1 {
802   - background-color: #039be5 !important;
803   -}
  602 + background-color: #039be5 !important; }
804 603  
805 604 .light-blue-text.text-darken-1 {
806   - color: #039be5 !important;
807   -}
  605 + color: #039be5 !important; }
808 606  
809 607 .light-blue.darken-2 {
810   - background-color: #0288d1 !important;
811   -}
  608 + background-color: #0288d1 !important; }
812 609  
813 610 .light-blue-text.text-darken-2 {
814   - color: #0288d1 !important;
815   -}
  611 + color: #0288d1 !important; }
816 612  
817 613 .light-blue.darken-3 {
818   - background-color: #0277bd !important;
819   -}
  614 + background-color: #0277bd !important; }
820 615  
821 616 .light-blue-text.text-darken-3 {
822   - color: #0277bd !important;
823   -}
  617 + color: #0277bd !important; }
824 618  
825 619 .light-blue.darken-4 {
826   - background-color: #01579b !important;
827   -}
  620 + background-color: #01579b !important; }
828 621  
829 622 .light-blue-text.text-darken-4 {
830   - color: #01579b !important;
831   -}
  623 + color: #01579b !important; }
832 624  
833 625 .light-blue.accent-1 {
834   - background-color: #80d8ff !important;
835   -}
  626 + background-color: #80d8ff !important; }
836 627  
837 628 .light-blue-text.text-accent-1 {
838   - color: #80d8ff !important;
839   -}
  629 + color: #80d8ff !important; }
840 630  
841 631 .light-blue.accent-2 {
842   - background-color: #40c4ff !important;
843   -}
  632 + background-color: #40c4ff !important; }
844 633  
845 634 .light-blue-text.text-accent-2 {
846   - color: #40c4ff !important;
847   -}
  635 + color: #40c4ff !important; }
848 636  
849 637 .light-blue.accent-3 {
850   - background-color: #00b0ff !important;
851   -}
  638 + background-color: #00b0ff !important; }
852 639  
853 640 .light-blue-text.text-accent-3 {
854   - color: #00b0ff !important;
855   -}
  641 + color: #00b0ff !important; }
856 642  
857 643 .light-blue.accent-4 {
858   - background-color: #0091ea !important;
859   -}
  644 + background-color: #0091ea !important; }
860 645  
861 646 .light-blue-text.text-accent-4 {
862   - color: #0091ea !important;
863   -}
  647 + color: #0091ea !important; }
864 648  
865 649 .cyan.lighten-5 {
866   - background-color: #e0f7fa !important;
867   -}
  650 + background-color: #e0f7fa !important; }
868 651  
869 652 .cyan-text.text-lighten-5 {
870   - color: #e0f7fa !important;
871   -}
  653 + color: #e0f7fa !important; }
872 654  
873 655 .cyan.lighten-4 {
874   - background-color: #b2ebf2 !important;
875   -}
  656 + background-color: #b2ebf2 !important; }
876 657  
877 658 .cyan-text.text-lighten-4 {
878   - color: #b2ebf2 !important;
879   -}
  659 + color: #b2ebf2 !important; }
880 660  
881 661 .cyan.lighten-3 {
882   - background-color: #80deea !important;
883   -}
  662 + background-color: #80deea !important; }
884 663  
885 664 .cyan-text.text-lighten-3 {
886   - color: #80deea !important;
887   -}
  665 + color: #80deea !important; }
888 666  
889 667 .cyan.lighten-2 {
890   - background-color: #4dd0e1 !important;
891   -}
  668 + background-color: #4dd0e1 !important; }
892 669  
893 670 .cyan-text.text-lighten-2 {
894   - color: #4dd0e1 !important;
895   -}
  671 + color: #4dd0e1 !important; }
896 672  
897 673 .cyan.lighten-1 {
898   - background-color: #26c6da !important;
899   -}
  674 + background-color: #26c6da !important; }
900 675  
901 676 .cyan-text.text-lighten-1 {
902   - color: #26c6da !important;
903   -}
  677 + color: #26c6da !important; }
904 678  
905 679 .cyan {
906   - background-color: #00bcd4 !important;
907   -}
  680 + background-color: #00bcd4 !important; }
908 681  
909 682 .cyan-text {
910   - color: #00bcd4 !important;
911   -}
  683 + color: #00bcd4 !important; }
912 684  
913 685 .cyan.darken-1 {
914   - background-color: #00acc1 !important;
915   -}
  686 + background-color: #00acc1 !important; }
916 687  
917 688 .cyan-text.text-darken-1 {
918   - color: #00acc1 !important;
919   -}
  689 + color: #00acc1 !important; }
920 690  
921 691 .cyan.darken-2 {
922   - background-color: #0097a7 !important;
923   -}
  692 + background-color: #0097a7 !important; }
924 693  
925 694 .cyan-text.text-darken-2 {
926   - color: #0097a7 !important;
927   -}
  695 + color: #0097a7 !important; }
928 696  
929 697 .cyan.darken-3 {
930   - background-color: #00838f !important;
931   -}
  698 + background-color: #00838f !important; }
932 699  
933 700 .cyan-text.text-darken-3 {
934   - color: #00838f !important;
935   -}
  701 + color: #00838f !important; }
936 702  
937 703 .cyan.darken-4 {
938   - background-color: #006064 !important;
939   -}
  704 + background-color: #006064 !important; }
940 705  
941 706 .cyan-text.text-darken-4 {
942   - color: #006064 !important;
943   -}
  707 + color: #006064 !important; }
944 708  
945 709 .cyan.accent-1 {
946   - background-color: #84ffff !important;
947   -}
  710 + background-color: #84ffff !important; }
948 711  
949 712 .cyan-text.text-accent-1 {
950   - color: #84ffff !important;
951   -}
  713 + color: #84ffff !important; }
952 714  
953 715 .cyan.accent-2 {
954   - background-color: #18ffff !important;
955   -}
  716 + background-color: #18ffff !important; }
956 717  
957 718 .cyan-text.text-accent-2 {
958   - color: #18ffff !important;
959   -}
  719 + color: #18ffff !important; }
960 720  
961 721 .cyan.accent-3 {
962   - background-color: #00e5ff !important;
963   -}
  722 + background-color: #00e5ff !important; }
964 723  
965 724 .cyan-text.text-accent-3 {
966   - color: #00e5ff !important;
967   -}
  725 + color: #00e5ff !important; }
968 726  
969 727 .cyan.accent-4 {
970   - background-color: #00b8d4 !important;
971   -}
  728 + background-color: #00b8d4 !important; }
972 729  
973 730 .cyan-text.text-accent-4 {
974   - color: #00b8d4 !important;
975   -}
  731 + color: #00b8d4 !important; }
976 732  
977 733 .teal.lighten-5 {
978   - background-color: #e0f2f1 !important;
979   -}
  734 + background-color: #e0f2f1 !important; }
980 735  
981 736 .teal-text.text-lighten-5 {
982   - color: #e0f2f1 !important;
983   -}
  737 + color: #e0f2f1 !important; }
984 738  
985 739 .teal.lighten-4 {
986   - background-color: #b2dfdb !important;
987   -}
  740 + background-color: #b2dfdb !important; }
988 741  
989 742 .teal-text.text-lighten-4 {
990   - color: #b2dfdb !important;
991   -}
  743 + color: #b2dfdb !important; }
992 744  
993 745 .teal.lighten-3 {
994   - background-color: #80cbc4 !important;
995   -}
  746 + background-color: #80cbc4 !important; }
996 747  
997 748 .teal-text.text-lighten-3 {
998   - color: #80cbc4 !important;
999   -}
  749 + color: #80cbc4 !important; }
1000 750  
1001 751 .teal.lighten-2 {
1002   - background-color: #4db6ac !important;
1003   -}
  752 + background-color: #4db6ac !important; }
1004 753  
1005 754 .teal-text.text-lighten-2 {
1006   - color: #4db6ac !important;
1007   -}
  755 + color: #4db6ac !important; }
1008 756  
1009 757 .teal.lighten-1 {
1010   - background-color: #26a69a !important;
1011   -}
  758 + background-color: #26a69a !important; }
1012 759  
1013 760 .teal-text.text-lighten-1 {
1014   - color: #26a69a !important;
1015   -}
  761 + color: #26a69a !important; }
1016 762  
1017 763 .teal {
1018   - background-color: #009688 !important;
1019   -}
  764 + background-color: #009688 !important; }
1020 765  
1021 766 .teal-text {
1022   - color: #009688 !important;
1023   -}
  767 + color: #009688 !important; }
1024 768  
1025 769 .teal.darken-1 {
1026   - background-color: #00897b !important;
1027   -}
  770 + background-color: #00897b !important; }
1028 771  
1029 772 .teal-text.text-darken-1 {
1030   - color: #00897b !important;
1031   -}
  773 + color: #00897b !important; }
1032 774  
1033 775 .teal.darken-2 {
1034   - background-color: #00796b !important;
1035   -}
  776 + background-color: #00796b !important; }
1036 777  
1037 778 .teal-text.text-darken-2 {
1038   - color: #00796b !important;
1039   -}
  779 + color: #00796b !important; }