dae-material 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (97) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +9 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +3 -0
  5. data/CODE_OF_CONDUCT.md +13 -0
  6. data/Gemfile +4 -0
  7. data/README.md +39 -0
  8. data/Rakefile +1 -0
  9. data/app/assets/fonts/material-design-icons/LICENSE.txt +428 -0
  10. data/app/assets/fonts/material-design-icons/Material-Design-Icons.eot +0 -0
  11. data/app/assets/fonts/material-design-icons/Material-Design-Icons.svg +751 -0
  12. data/app/assets/fonts/material-design-icons/Material-Design-Icons.ttf +0 -0
  13. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff +0 -0
  14. data/app/assets/fonts/material-design-icons/Material-Design-Icons.woff2 +0 -0
  15. data/app/assets/fonts/roboto/Roboto-Bold.ttf +0 -0
  16. data/app/assets/fonts/roboto/Roboto-Bold.woff +0 -0
  17. data/app/assets/fonts/roboto/Roboto-Bold.woff2 +0 -0
  18. data/app/assets/fonts/roboto/Roboto-Light.ttf +0 -0
  19. data/app/assets/fonts/roboto/Roboto-Light.woff +0 -0
  20. data/app/assets/fonts/roboto/Roboto-Light.woff2 +0 -0
  21. data/app/assets/fonts/roboto/Roboto-Medium.ttf +0 -0
  22. data/app/assets/fonts/roboto/Roboto-Medium.woff +0 -0
  23. data/app/assets/fonts/roboto/Roboto-Medium.woff2 +0 -0
  24. data/app/assets/fonts/roboto/Roboto-Regular.ttf +0 -0
  25. data/app/assets/fonts/roboto/Roboto-Regular.woff +0 -0
  26. data/app/assets/fonts/roboto/Roboto-Regular.woff2 +0 -0
  27. data/app/assets/fonts/roboto/Roboto-Thin.ttf +0 -0
  28. data/app/assets/fonts/roboto/Roboto-Thin.woff +0 -0
  29. data/app/assets/fonts/roboto/Roboto-Thin.woff2 +0 -0
  30. data/app/assets/javascripts/materialize-sprockets.js +27 -0
  31. data/app/assets/javascripts/materialize.js +6023 -0
  32. data/app/assets/javascripts/materialize/animation.js +9 -0
  33. data/app/assets/javascripts/materialize/buttons.js +35 -0
  34. data/app/assets/javascripts/materialize/cards.js +27 -0
  35. data/app/assets/javascripts/materialize/character_counter.js +59 -0
  36. data/app/assets/javascripts/materialize/collapsible.js +139 -0
  37. data/app/assets/javascripts/materialize/date_picker/picker.date.js +1430 -0
  38. data/app/assets/javascripts/materialize/date_picker/picker.js +1123 -0
  39. data/app/assets/javascripts/materialize/dropdown.js +176 -0
  40. data/app/assets/javascripts/materialize/forms.js +397 -0
  41. data/app/assets/javascripts/materialize/global.js +31 -0
  42. data/app/assets/javascripts/materialize/hammer.min.js +1 -0
  43. data/app/assets/javascripts/materialize/init.js +137 -0
  44. data/app/assets/javascripts/materialize/jquery.easing.1.3.js +205 -0
  45. data/app/assets/javascripts/materialize/jquery.hammer.js +33 -0
  46. data/app/assets/javascripts/materialize/jquery.timeago.min.js +1 -0
  47. data/app/assets/javascripts/materialize/leanModal.js +139 -0
  48. data/app/assets/javascripts/materialize/materialbox.js +249 -0
  49. data/app/assets/javascripts/materialize/parallax.js +58 -0
  50. data/app/assets/javascripts/materialize/prism.js +8 -0
  51. data/app/assets/javascripts/materialize/pushpin.js +62 -0
  52. data/app/assets/javascripts/materialize/scrollFire.js +69 -0
  53. data/app/assets/javascripts/materialize/scrollspy.js +284 -0
  54. data/app/assets/javascripts/materialize/sideNav.js +335 -0
  55. data/app/assets/javascripts/materialize/slider.js +263 -0
  56. data/app/assets/javascripts/materialize/tabs.js +129 -0
  57. data/app/assets/javascripts/materialize/toasts.js +121 -0
  58. data/app/assets/javascripts/materialize/tooltip.js +166 -0
  59. data/app/assets/javascripts/materialize/transitions.js +145 -0
  60. data/app/assets/javascripts/materialize/velocity.min.js +4 -0
  61. data/app/assets/javascripts/materialize/waves.js +338 -0
  62. data/app/assets/stylesheets/materialize.scss +38 -0
  63. data/app/assets/stylesheets/materialize/components/_buttons.scss +151 -0
  64. data/app/assets/stylesheets/materialize/components/_cards.scss +150 -0
  65. data/app/assets/stylesheets/materialize/components/_collapsible.scss +88 -0
  66. data/app/assets/stylesheets/materialize/components/_color.scss +412 -0
  67. data/app/assets/stylesheets/materialize/components/_dropdown.scss +38 -0
  68. data/app/assets/stylesheets/materialize/components/_form.scss +850 -0
  69. data/app/assets/stylesheets/materialize/components/_global.scss +682 -0
  70. data/app/assets/stylesheets/materialize/components/_grid.scss +118 -0
  71. data/app/assets/stylesheets/materialize/components/_icons-material-design.scss +783 -0
  72. data/app/assets/stylesheets/materialize/components/_materialbox.scss +41 -0
  73. data/app/assets/stylesheets/materialize/components/_mixins.scss +5 -0
  74. data/app/assets/stylesheets/materialize/components/_modal.scss +89 -0
  75. data/app/assets/stylesheets/materialize/components/_navbar.scss +143 -0
  76. data/app/assets/stylesheets/materialize/components/_normalize.scss +427 -0
  77. data/app/assets/stylesheets/materialize/components/_prefixer.scss +376 -0
  78. data/app/assets/stylesheets/materialize/components/_preloader.scss +332 -0
  79. data/app/assets/stylesheets/materialize/components/_roboto.scss +38 -0
  80. data/app/assets/stylesheets/materialize/components/_sideNav.scss +111 -0
  81. data/app/assets/stylesheets/materialize/components/_slider.scss +92 -0
  82. data/app/assets/stylesheets/materialize/components/_table_of_contents.scss +33 -0
  83. data/app/assets/stylesheets/materialize/components/_tabs.scss +42 -0
  84. data/app/assets/stylesheets/materialize/components/_toast.scss +63 -0
  85. data/app/assets/stylesheets/materialize/components/_tooltip.scss +34 -0
  86. data/app/assets/stylesheets/materialize/components/_typography.scss +56 -0
  87. data/app/assets/stylesheets/materialize/components/_variables.scss +143 -0
  88. data/app/assets/stylesheets/materialize/components/_waves.scss +167 -0
  89. data/app/assets/stylesheets/materialize/components/date_picker/_default.date.scss +435 -0
  90. data/app/assets/stylesheets/materialize/components/date_picker/_default.scss +201 -0
  91. data/app/assets/stylesheets/materialize/components/date_picker/_default.time.scss +125 -0
  92. data/bin/console +14 -0
  93. data/bin/setup +7 -0
  94. data/dae-material.gemspec +23 -0
  95. data/lib/dae/material.rb +7 -0
  96. data/lib/dae/material/version.rb +8 -0
  97. metadata +166 -0
@@ -0,0 +1,118 @@
1
+ .container {
2
+ padding: 0 $gutter-width;
3
+ margin: 0 auto;
4
+ max-width: 1280px;
5
+ width: 90%;
6
+ }
7
+ @media #{$medium-and-up} {
8
+ .container {
9
+ width: 85%;
10
+ }
11
+ }
12
+ @media #{$large-and-up} {
13
+ .container {
14
+ width: 70%;
15
+ }
16
+ }
17
+ .container .row {
18
+ margin-left: (-1 * $gutter-width / 2);
19
+ margin-right: (-1 * $gutter-width / 2);
20
+ }
21
+
22
+ .section {
23
+ padding-top: 1rem;
24
+ padding-bottom: 1rem;
25
+
26
+ &.no-pad {
27
+ padding: 0;
28
+ }
29
+ &.no-pad-bot {
30
+ padding-bottom: 0;
31
+ }
32
+ &.no-pad-top {
33
+ padding-top: 0;
34
+ }
35
+ }
36
+
37
+
38
+ .row {
39
+ margin-left: auto;
40
+ margin-right: auto;
41
+ margin-bottom: 20px;
42
+
43
+ // Clear floating children
44
+ &:after {
45
+ content: "";
46
+ display: table;
47
+ clear: both;
48
+ }
49
+
50
+ .col {
51
+ float: left;
52
+ @include box-sizing(border-box);
53
+ padding: 0 $gutter-width / 2;
54
+
55
+ $i: 1;
56
+ @while $i <= $num-cols {
57
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
58
+ &.s#{$i} {
59
+ width: $perc;
60
+ margin-left: 0;
61
+ }
62
+ $i: $i + 1;
63
+ }
64
+ $i: 1;
65
+ @while $i <= $num-cols {
66
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
67
+ &.offset-s#{$i} {
68
+ margin-left: $perc;
69
+ }
70
+ $i: $i + 1;
71
+ }
72
+
73
+ @media #{$medium-and-up} {
74
+
75
+ $i: 1;
76
+ @while $i <= $num-cols {
77
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
78
+ &.m#{$i} {
79
+ width: $perc;
80
+ margin-left: 0;
81
+ }
82
+ $i: $i + 1;
83
+ }
84
+ $i: 1;
85
+ @while $i <= $num-cols {
86
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
87
+ &.offset-m#{$i} {
88
+ margin-left: $perc;
89
+ }
90
+ $i: $i + 1;
91
+ }
92
+
93
+ }
94
+
95
+ @media #{$large-and-up} {
96
+
97
+ $i: 1;
98
+ @while $i <= $num-cols {
99
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
100
+ &.l#{$i} {
101
+ width: $perc;
102
+ margin-left: 0;
103
+ }
104
+ $i: $i + 1;
105
+ }
106
+ $i: 1;
107
+ @while $i <= $num-cols {
108
+ $perc: unquote((100 / ($num-cols / $i)) + "%");
109
+ &.offset-l#{$i} {
110
+ margin-left: $perc;
111
+ }
112
+ $i: $i + 1;
113
+ }
114
+
115
+ }
116
+
117
+ }
118
+ }
@@ -0,0 +1,783 @@
1
+ $font-mdi : 'Material-Design-Icons';
2
+ $mdi-prefix : 'mdi-';
3
+
4
+ @font-face {
5
+ font-family: "#{$font-mdi}";
6
+ src:font-url("#{$icons-font-path}#{$font-mdi}.eot?#iefix") format("embedded-opentype"),
7
+ font-url("#{$icons-font-path}#{$font-mdi}.woff2") format("woff2"),
8
+ font-url("#{$icons-font-path}#{$font-mdi}.woff") format("woff"),
9
+ font-url("#{$icons-font-path}#{$font-mdi}.ttf") format("truetype"),
10
+ font-url("#{$icons-font-path}#{$font-mdi}.svg##{$font-mdi}") format("svg");
11
+ font-weight: normal;
12
+ font-style: normal;
13
+ }
14
+
15
+ [class^="#{$mdi-prefix}"], [class*=" #{$mdi-prefix}"] {
16
+ font-family: "#{$font-mdi}";
17
+ speak: none;
18
+ font-style: normal;
19
+ font-weight: normal;
20
+ font-variant: normal;
21
+ text-transform: none;
22
+ text-rendering: auto;
23
+
24
+ /* Better Font Rendering =========== */
25
+ -webkit-font-smoothing: antialiased;
26
+ -moz-osx-font-smoothing: grayscale;
27
+ }
28
+
29
+
30
+ $mdi-list-icons: (
31
+ 'action-3d-rotation': \e600,
32
+ 'action-accessibility': \e601,
33
+ 'action-account-balance': \e602,
34
+ 'action-account-balance-wallet': \e603,
35
+ 'action-account-box': \e604,
36
+ 'action-account-child': \e605,
37
+ 'action-account-circle': \e606,
38
+ 'action-add-shopping-cart': \e607,
39
+ 'action-alarm': \e608,
40
+ 'action-alarm-add': \e609,
41
+ 'action-alarm-off': \e60a,
42
+ 'action-alarm-on': \e60b,
43
+ 'action-android': \e60c,
44
+ 'action-announcement': \e60d,
45
+ 'action-aspect-ratio': \e60e,
46
+ 'action-assessment': \e60f,
47
+ 'action-assignment': \e610,
48
+ 'action-assignment-ind': \e611,
49
+ 'action-assignment-late': \e612,
50
+ 'action-assignment-return': \e613,
51
+ 'action-assignment-returned': \e614,
52
+ 'action-assignment-turned-in': \e615,
53
+ 'action-autorenew': \e616,
54
+ 'action-backup': \e617,
55
+ 'action-book': \e618,
56
+ 'action-bookmark': \e619,
57
+ 'action-bookmark-outline': \e61a,
58
+ 'action-bug-report': \e61b,
59
+ 'action-cached': \e61c,
60
+ 'action-class': \e61d,
61
+ 'action-credit-card': \e61e,
62
+ 'action-dashboard': \e61f,
63
+ 'action-delete': \e620,
64
+ 'action-description': \e621,
65
+ 'action-dns': \e622,
66
+ 'action-done': \e623,
67
+ 'action-done-all': \e624,
68
+ 'action-event': \e625,
69
+ 'action-exit-to-app': \e626,
70
+ 'action-explore': \e627,
71
+ 'action-extension': \e628,
72
+ 'action-face-unlock': \e629,
73
+ 'action-favorite': \e62a,
74
+ 'action-favorite-outline': \e62b,
75
+ 'action-find-in-page': \e62c,
76
+ 'action-find-replace': \e62d,
77
+ 'action-flip-to-back': \e62e,
78
+ 'action-flip-to-front': \e62f,
79
+ 'action-get-app': \e630,
80
+ 'action-grade': \e631,
81
+ 'action-group-work': \e632,
82
+ 'action-help': \e633,
83
+ 'action-highlight-remove': \e634,
84
+ 'action-history': \e635,
85
+ 'action-home': \e636,
86
+ 'action-https': \e637,
87
+ 'action-info': \e638,
88
+ 'action-info-outline': \e639,
89
+ 'action-input': \e63a,
90
+ 'action-invert-colors': \e63b,
91
+ 'action-label': \e63c,
92
+ 'action-label-outline': \e63d,
93
+ 'action-language': \e63e,
94
+ 'action-launch': \e63f,
95
+ 'action-list': \e640,
96
+ 'action-lock': \e641,
97
+ 'action-lock-open': \e642,
98
+ 'action-lock-outline': \e643,
99
+ 'action-loyalty': \e644,
100
+ 'action-markunread-mailbox': \e645,
101
+ 'action-note-add': \e646,
102
+ 'action-open-in-browser': \e647,
103
+ 'action-open-in-new': \e648,
104
+ 'action-open-with': \e649,
105
+ 'action-pageview': \e64a,
106
+ 'action-payment': \e64b,
107
+ 'action-perm-camera-mic': \e64c,
108
+ 'action-perm-contact-cal': \e64d,
109
+ 'action-perm-data-setting': \e64e,
110
+ 'action-perm-device-info': \e64f,
111
+ 'action-perm-identity': \e650,
112
+ 'action-perm-media': \e651,
113
+ 'action-perm-phone-msg': \e652,
114
+ 'action-perm-scan-wifi': \e653,
115
+ 'action-picture-in-picture': \e654,
116
+ 'action-polymer': \e655,
117
+ 'action-print': \e656,
118
+ 'action-query-builder': \e657,
119
+ 'action-question-answer': \e658,
120
+ 'action-receipt': \e659,
121
+ 'action-redeem': \e65a,
122
+ 'action-report-problem': \e65b,
123
+ 'action-restore': \e65c,
124
+ 'action-room': \e65d,
125
+ 'action-schedule': \e65e,
126
+ 'action-search': \e65f,
127
+ 'action-settings': \e660,
128
+ 'action-settings-applications': \e661,
129
+ 'action-settings-backup-restore': \e662,
130
+ 'action-settings-bluetooth': \e663,
131
+ 'action-settings-cell': \e664,
132
+ 'action-settings-display': \e665,
133
+ 'action-settings-ethernet': \e666,
134
+ 'action-settings-input-antenna': \e667,
135
+ 'action-settings-input-component': \e668,
136
+ 'action-settings-input-composite': \e669,
137
+ 'action-settings-input-hdmi': \e66a,
138
+ 'action-settings-input-svideo': \e66b,
139
+ 'action-settings-overscan': \e66c,
140
+ 'action-settings-phone': \e66d,
141
+ 'action-settings-power': \e66e,
142
+ 'action-settings-remote': \e66f,
143
+ 'action-settings-voice': \e670,
144
+ 'action-shop': \e671,
145
+ 'action-shopping-basket': \e672,
146
+ 'action-shopping-cart': \e673,
147
+ 'action-shop-two': \e674,
148
+ 'action-speaker-notes': \e675,
149
+ 'action-spellcheck': \e676,
150
+ 'action-star-rate': \e677,
151
+ 'action-stars': \e678,
152
+ 'action-store': \e679,
153
+ 'action-subject': \e67a,
154
+ 'action-swap-horiz': \e67b,
155
+ 'action-swap-vert': \e67c,
156
+ 'action-swap-vert-circle': \e67d,
157
+ 'action-system-update-tv': \e67e,
158
+ 'action-tab': \e67f,
159
+ 'action-tab-unselected': \e680,
160
+ 'action-theaters': \e681,
161
+ 'action-thumb-down': \e682,
162
+ 'action-thumbs-up-down': \e683,
163
+ 'action-thumb-up': \e684,
164
+ 'action-toc': \e685,
165
+ 'action-today': \e686,
166
+ 'action-track-changes': \e687,
167
+ 'action-translate': \e688,
168
+ 'action-trending-down': \e689,
169
+ 'action-trending-neutral': \e68a,
170
+ 'action-trending-up': \e68b,
171
+ 'action-turned-in': \e68c,
172
+ 'action-turned-in-not': \e68d,
173
+ 'action-verified-user': \e68e,
174
+ 'action-view-agenda': \e68f,
175
+ 'action-view-array': \e690,
176
+ 'action-view-carousel': \e691,
177
+ 'action-view-column': \e692,
178
+ 'action-view-day': \e693,
179
+ 'action-view-headline': \e694,
180
+ 'action-view-list': \e695,
181
+ 'action-view-module': \e696,
182
+ 'action-view-quilt': \e697,
183
+ 'action-view-stream': \e698,
184
+ 'action-view-week': \e699,
185
+ 'action-visibility': \e69a,
186
+ 'action-visibility-off': \e69b,
187
+ 'action-wallet-giftcard': \e69c,
188
+ 'action-wallet-membership': \e69d,
189
+ 'action-wallet-travel': \e69e,
190
+ 'action-work': \e69f,
191
+ 'alert-error': \e6a0,
192
+ 'alert-warning': \e6a1,
193
+ 'av-album': \e6a2,
194
+ 'av-timer': \e6a3,
195
+ 'av-closed-caption': \e6a4,
196
+ 'av-equalizer': \e6a5,
197
+ 'av-explicit': \e6a6,
198
+ 'av-fast-forward': \e6a7,
199
+ 'av-fast-rewind': \e6a8,
200
+ 'av-games': \e6a9,
201
+ 'av-hearing': \e6aa,
202
+ 'av-high-quality': \e6ab,
203
+ 'av-loop': \e6ac,
204
+ 'av-mic': \e6ad,
205
+ 'av-mic-none': \e6ae,
206
+ 'av-mic-off': \e6af,
207
+ 'av-movie': \e6b0,
208
+ 'av-my-library-add': \e6b1,
209
+ 'av-my-library-books': \e6b2,
210
+ 'av-my-library-music': \e6b3,
211
+ 'av-new-releases': \e6b4,
212
+ 'av-not-interested': \e6b5,
213
+ 'av-pause': \e6b6,
214
+ 'av-pause-circle-fill': \e6b7,
215
+ 'av-pause-circle-outline': \e6b8,
216
+ 'av-play-arrow': \e6b9,
217
+ 'av-play-circle-fill': \e6ba,
218
+ 'av-play-circle-outline': \e6bb,
219
+ 'av-playlist-add': \e6bc,
220
+ 'av-play-shopping-bag': \e6bd,
221
+ 'av-queue': \e6be,
222
+ 'av-queue-music': \e6bf,
223
+ 'av-radio': \e6c0,
224
+ 'av-recent-actors': \e6c1,
225
+ 'av-repeat': \e6c2,
226
+ 'av-repeat-one': \e6c3,
227
+ 'av-replay': \e6c4,
228
+ 'av-shuffle': \e6c5,
229
+ 'av-skip-next': \e6c6,
230
+ 'av-skip-previous': \e6c7,
231
+ 'av-snooze': \e6c8,
232
+ 'av-stop': \e6c9,
233
+ 'av-subtitles': \e6ca,
234
+ 'av-surround-sound': \e6cb,
235
+ 'av-videocam': \e6cc,
236
+ 'av-videocam-off': \e6cd,
237
+ 'av-video-collection': \e6ce,
238
+ 'av-volume-down': \e6cf,
239
+ 'av-volume-mute': \e6d0,
240
+ 'av-volume-off': \e6d1,
241
+ 'av-volume-up': \e6d2,
242
+ 'av-web': \e6d3,
243
+ 'communication-business': \e6d4,
244
+ 'communication-call': \e6d5,
245
+ 'communication-call-end': \e6d6,
246
+ 'communication-call-made': \e6d7,
247
+ 'communication-call-merge': \e6d8,
248
+ 'communication-call-missed': \e6d9,
249
+ 'communication-call-received': \e6da,
250
+ 'communication-call-split': \e6db,
251
+ 'communication-chat': \e6dc,
252
+ 'communication-clear-all': \e6dd,
253
+ 'communication-comment': \e6de,
254
+ 'communication-contacts': \e6df,
255
+ 'communication-dialer-sip': \e6e0,
256
+ 'communication-dialpad': \e6e1,
257
+ 'communication-dnd-on': \e6e2,
258
+ 'communication-email': \e6e3,
259
+ 'communication-forum': \e6e4,
260
+ 'communication-import-export': \e6e5,
261
+ 'communication-invert-colors-off': \e6e6,
262
+ 'communication-invert-colors-on': \e6e7,
263
+ 'communication-live-help': \e6e8,
264
+ 'communication-location-off': \e6e9,
265
+ 'communication-location-on': \e6ea,
266
+ 'communication-message': \e6eb,
267
+ 'communication-messenger': \e6ec,
268
+ 'communication-no-sim': \e6ed,
269
+ 'communication-phone': \e6ee,
270
+ 'communication-portable-wifi-off': \e6ef,
271
+ 'communication-quick-contacts-dialer': \e6f0,
272
+ 'communication-quick-contacts-mail': \e6f1,
273
+ 'communication-ring-volume': \e6f2,
274
+ 'communication-stay-current-landscape': \e6f3,
275
+ 'communication-stay-current-portrait': \e6f4,
276
+ 'communication-stay-primary-landscape': \e6f5,
277
+ 'communication-stay-primary-portrait': \e6f6,
278
+ 'communication-swap-calls': \e6f7,
279
+ 'communication-textsms': \e6f8,
280
+ 'communication-voicemail': \e6f9,
281
+ 'communication-vpn-key': \e6fa,
282
+ 'content-add': \e6fb,
283
+ 'content-add-box': \e6fc,
284
+ 'content-add-circle': \e6fd,
285
+ 'content-add-circle-outline': \e6fe,
286
+ 'content-archive': \e6ff,
287
+ 'content-backspace': \e700,
288
+ 'content-block': \e701,
289
+ 'content-clear': \e702,
290
+ 'content-content-copy': \e703,
291
+ 'content-content-cut': \e704,
292
+ 'content-content-paste': \e705,
293
+ 'content-create': \e706,
294
+ 'content-drafts': \e707,
295
+ 'content-filter-list': \e708,
296
+ 'content-flag': \e709,
297
+ 'content-forward': \e70a,
298
+ 'content-gesture': \e70b,
299
+ 'content-inbox': \e70c,
300
+ 'content-link': \e70d,
301
+ 'content-mail': \e70e,
302
+ 'content-markunread': \e70f,
303
+ 'content-redo': \e710,
304
+ 'content-remove': \e711,
305
+ 'content-remove-circle': \e712,
306
+ 'content-remove-circle-outline': \e713,
307
+ 'content-reply': \e714,
308
+ 'content-reply-all': \e715,
309
+ 'content-report': \e716,
310
+ 'content-save': \e717,
311
+ 'content-select-all': \e718,
312
+ 'content-send': \e719,
313
+ 'content-sort': \e71a,
314
+ 'content-text-format': \e71b,
315
+ 'content-undo': \e71c,
316
+ 'device-access-alarm': \e71d,
317
+ 'device-access-alarms': \e71e,
318
+ 'device-access-time': \e71f,
319
+ 'device-add-alarm': \e720,
320
+ 'device-airplanemode-off': \e721,
321
+ 'device-airplanemode-on': \e722,
322
+ 'device-battery-20': \e723,
323
+ 'device-battery-30': \e724,
324
+ 'device-battery-50': \e725,
325
+ 'device-battery-60': \e726,
326
+ 'device-battery-80': \e727,
327
+ 'device-battery-90': \e728,
328
+ 'device-battery-alert': \e729,
329
+ 'device-battery-charging-20': \e72a,
330
+ 'device-battery-charging-30': \e72b,
331
+ 'device-battery-charging-50': \e72c,
332
+ 'device-battery-charging-60': \e72d,
333
+ 'device-battery-charging-80': \e72e,
334
+ 'device-battery-charging-90': \e72f,
335
+ 'device-battery-charging-full': \e730,
336
+ 'device-battery-full': \e731,
337
+ 'device-battery-std': \e732,
338
+ 'device-battery-unknown': \e733,
339
+ 'device-bluetooth': \e734,
340
+ 'device-bluetooth-connected': \e735,
341
+ 'device-bluetooth-disabled': \e736,
342
+ 'device-bluetooth-searching': \e737,
343
+ 'device-brightness-auto': \e738,
344
+ 'device-brightness-high': \e739,
345
+ 'device-brightness-low': \e73a,
346
+ 'device-brightness-medium': \e73b,
347
+ 'device-data-usage': \e73c,
348
+ 'device-developer-mode': \e73d,
349
+ 'device-devices': \e73e,
350
+ 'device-dvr': \e73f,
351
+ 'device-gps-fixed': \e740,
352
+ 'device-gps-not-fixed': \e741,
353
+ 'device-gps-off': \e742,
354
+ 'device-location-disabled': \e743,
355
+ 'device-location-searching': \e744,
356
+ 'device-multitrack-audio': \e745,
357
+ 'device-network-cell': \e746,
358
+ 'device-network-wifi': \e747,
359
+ 'device-nfc': \e748,
360
+ 'device-now-wallpaper': \e749,
361
+ 'device-now-widgets': \e74a,
362
+ 'device-screen-lock-landscape': \e74b,
363
+ 'device-screen-lock-portrait': \e74c,
364
+ 'device-screen-lock-rotation': \e74d,
365
+ 'device-screen-rotation': \e74e,
366
+ 'device-sd-storage': \e74f,
367
+ 'device-settings-system-daydream': \e750,
368
+ 'device-signal-cellular-0-bar': \e751,
369
+ 'device-signal-cellular-1-bar': \e752,
370
+ 'device-signal-cellular-2-bar': \e753,
371
+ 'device-signal-cellular-3-bar': \e754,
372
+ 'device-signal-cellular-4-bar': \e755,
373
+ 'device-signal-cellular-connected-no-internet-0-bar': \e756,
374
+ 'device-signal-cellular-connected-no-internet-1-bar': \e757,
375
+ 'device-signal-cellular-connected-no-internet-2-bar': \e758,
376
+ 'device-signal-cellular-connected-no-internet-3-bar': \e759,
377
+ 'device-signal-cellular-connected-no-internet-4-bar': \e75a,
378
+ 'device-signal-cellular-no-sim': \e75b,
379
+ 'device-signal-cellular-null': \e75c,
380
+ 'device-signal-cellular-off': \e75d,
381
+ 'device-signal-wifi-0-bar': \e75e,
382
+ 'device-signal-wifi-1-bar': \e75f,
383
+ 'device-signal-wifi-2-bar': \e760,
384
+ 'device-signal-wifi-3-bar': \e761,
385
+ 'device-signal-wifi-4-bar': \e762,
386
+ 'device-signal-wifi-off': \e763,
387
+ 'device-storage': \e764,
388
+ 'device-usb': \e765,
389
+ 'device-wifi-lock': \e766,
390
+ 'device-wifi-tethering': \e767,
391
+ 'editor-attach-file': \e768,
392
+ 'editor-attach-money': \e769,
393
+ 'editor-border-all': \e76a,
394
+ 'editor-border-bottom': \e76b,
395
+ 'editor-border-clear': \e76c,
396
+ 'editor-border-color': \e76d,
397
+ 'editor-border-horizontal': \e76e,
398
+ 'editor-border-inner': \e76f,
399
+ 'editor-border-left': \e770,
400
+ 'editor-border-outer': \e771,
401
+ 'editor-border-right': \e772,
402
+ 'editor-border-style': \e773,
403
+ 'editor-border-top': \e774,
404
+ 'editor-border-vertical': \e775,
405
+ 'editor-format-align-center': \e776,
406
+ 'editor-format-align-justify': \e777,
407
+ 'editor-format-align-left': \e778,
408
+ 'editor-format-align-right': \e779,
409
+ 'editor-format-bold': \e77a,
410
+ 'editor-format-clear': \e77b,
411
+ 'editor-format-color-fill': \e77c,
412
+ 'editor-format-color-reset': \e77d,
413
+ 'editor-format-color-text': \e77e,
414
+ 'editor-format-indent-decrease': \e77f,
415
+ 'editor-format-indent-increase': \e780,
416
+ 'editor-format-italic': \e781,
417
+ 'editor-format-line-spacing': \e782,
418
+ 'editor-format-list-bulleted': \e783,
419
+ 'editor-format-list-numbered': \e784,
420
+ 'editor-format-paint': \e785,
421
+ 'editor-format-quote': \e786,
422
+ 'editor-format-size': \e787,
423
+ 'editor-format-strikethrough': \e788,
424
+ 'editor-functions': \e789,
425
+ 'editor-format-textdirection-l-to-r': \e78a,
426
+ 'editor-format-underline': \e78b,
427
+ 'editor-format-textdirection-r-to-l': \e78c,
428
+ 'editor-insert-chart': \e78d,
429
+ 'editor-insert-comment': \e78e,
430
+ 'editor-insert-drive-file': \e78f,
431
+ 'editor-insert-emoticon': \e790,
432
+ 'editor-insert-invitation': \e791,
433
+ 'editor-insert-link': \e792,
434
+ 'editor-insert-photo': \e793,
435
+ 'editor-merge-type': \e794,
436
+ 'editor-mode-comment': \e795,
437
+ 'editor-mode-edit': \e796,
438
+ 'editor-publish': \e797,
439
+ 'editor-vertical-align-bottom': \e798,
440
+ 'editor-vertical-align-center': \e799,
441
+ 'editor-vertical-align-top': \e79a,
442
+ 'editor-wrap-text': \e79b,
443
+ 'file-attachment': \e79c,
444
+ 'file-cloud': \e79d,
445
+ 'file-cloud-circle': \e79e,
446
+ 'file-cloud-done': \e79f,
447
+ 'file-cloud-download': \e7a0,
448
+ 'file-cloud-off': \e7a1,
449
+ 'file-cloud-queue': \e7a2,
450
+ 'file-cloud-upload': \e7a3,
451
+ 'file-file-download': \e7a4,
452
+ 'file-file-upload': \e7a5,
453
+ 'file-folder': \e7a6,
454
+ 'file-folder-open': \e7a7,
455
+ 'file-folder-shared': \e7a8,
456
+ 'hardware-cast': \e7a9,
457
+ 'hardware-cast-connected': \e7aa,
458
+ 'hardware-computer': \e7ab,
459
+ 'hardware-desktop-mac': \e7ac,
460
+ 'hardware-desktop-windows': \e7ad,
461
+ 'hardware-dock': \e7ae,
462
+ 'hardware-gamepad': \e7af,
463
+ 'hardware-headset': \e7b0,
464
+ 'hardware-headset-mic': \e7b1,
465
+ 'hardware-keyboard': \e7b2,
466
+ 'hardware-keyboard-alt': \e7b3,
467
+ 'hardware-keyboard-arrow-down': \e7b4,
468
+ 'hardware-keyboard-arrow-left': \e7b5,
469
+ 'hardware-keyboard-arrow-right': \e7b6,
470
+ 'hardware-keyboard-arrow-up': \e7b7,
471
+ 'hardware-keyboard-backspace': \e7b8,
472
+ 'hardware-keyboard-capslock': \e7b9,
473
+ 'hardware-keyboard-control': \e7ba,
474
+ 'hardware-keyboard-hide': \e7bb,
475
+ 'hardware-keyboard-return': \e7bc,
476
+ 'hardware-keyboard-tab': \e7bd,
477
+ 'hardware-keyboard-voice': \e7be,
478
+ 'hardware-laptop': \e7bf,
479
+ 'hardware-laptop-chromebook': \e7c0,
480
+ 'hardware-laptop-mac': \e7c1,
481
+ 'hardware-laptop-windows': \e7c2,
482
+ 'hardware-memory': \e7c3,
483
+ 'hardware-mouse': \e7c4,
484
+ 'hardware-phone-android': \e7c5,
485
+ 'hardware-phone-iphone': \e7c6,
486
+ 'hardware-phonelink': \e7c7,
487
+ 'hardware-phonelink-off': \e7c8,
488
+ 'hardware-security': \e7c9,
489
+ 'hardware-sim-card': \e7ca,
490
+ 'hardware-smartphone': \e7cb,
491
+ 'hardware-speaker': \e7cc,
492
+ 'hardware-tablet': \e7cd,
493
+ 'hardware-tablet-android': \e7ce,
494
+ 'hardware-tablet-mac': \e7cf,
495
+ 'hardware-tv': \e7d0,
496
+ 'hardware-watch': \e7d1,
497
+ 'image-add-to-photos': \e7d2,
498
+ 'image-adjust': \e7d3,
499
+ 'image-assistant-photo': \e7d4,
500
+ 'image-audiotrack': \e7d5,
501
+ 'image-blur-circular': \e7d6,
502
+ 'image-blur-linear': \e7d7,
503
+ 'image-blur-off': \e7d8,
504
+ 'image-blur-on': \e7d9,
505
+ 'image-brightness-1': \e7da,
506
+ 'image-brightness-2': \e7db,
507
+ 'image-brightness-3': \e7dc,
508
+ 'image-brightness-4': \e7dd,
509
+ 'image-brightness-5': \e7de,
510
+ 'image-brightness-6': \e7df,
511
+ 'image-brightness-7': \e7e0,
512
+ 'image-brush': \e7e1,
513
+ 'image-camera': \e7e2,
514
+ 'image-camera-alt': \e7e3,
515
+ 'image-camera-front': \e7e4,
516
+ 'image-camera-rear': \e7e5,
517
+ 'image-camera-roll': \e7e6,
518
+ 'image-center-focus-strong': \e7e7,
519
+ 'image-center-focus-weak': \e7e8,
520
+ 'image-collections': \e7e9,
521
+ 'image-colorize': \e7ea,
522
+ 'image-color-lens': \e7eb,
523
+ 'image-compare': \e7ec,
524
+ 'image-control-point': \e7ed,
525
+ 'image-control-point-duplicate': \e7ee,
526
+ 'image-crop': \e7ef,
527
+ 'image-crop-3-2': \e7f0,
528
+ 'image-crop-5-4': \e7f1,
529
+ 'image-crop-7-5': \e7f2,
530
+ 'image-crop-16-9': \e7f3,
531
+ 'image-crop-din': \e7f4,
532
+ 'image-crop-free': \e7f5,
533
+ 'image-crop-landscape': \e7f6,
534
+ 'image-crop-original': \e7f7,
535
+ 'image-crop-portrait': \e7f8,
536
+ 'image-crop-square': \e7f9,
537
+ 'image-dehaze': \e7fa,
538
+ 'image-details': \e7fb,
539
+ 'image-edit': \e7fc,
540
+ 'image-exposure': \e7fd,
541
+ 'image-exposure-minus-1': \e7fe,
542
+ 'image-exposure-minus-2': \e7ff,
543
+ 'image-exposure-plus-1': \e800,
544
+ 'image-exposure-plus-2': \e801,
545
+ 'image-exposure-zero': \e802,
546
+ 'image-filter': \e803,
547
+ 'image-filter-1': \e804,
548
+ 'image-filter-2': \e805,
549
+ 'image-filter-3': \e806,
550
+ 'image-filter-4': \e807,
551
+ 'image-filter-5': \e808,
552
+ 'image-filter-6': \e809,
553
+ 'image-filter-7': \e80a,
554
+ 'image-filter-8': \e80b,
555
+ 'image-filter-9': \e80c,
556
+ 'image-filter-9-plus': \e80d,
557
+ 'image-filter-b-and-w': \e80e,
558
+ 'image-filter-center-focus': \e80f,
559
+ 'image-filter-drama': \e810,
560
+ 'image-filter-frames': \e811,
561
+ 'image-filter-hdr': \e812,
562
+ 'image-filter-none': \e813,
563
+ 'image-filter-tilt-shift': \e814,
564
+ 'image-filter-vintage': \e815,
565
+ 'image-flare': \e816,
566
+ 'image-flash-auto': \e817,
567
+ 'image-flash-off': \e818,
568
+ 'image-flash-on': \e819,
569
+ 'image-flip': \e81a,
570
+ 'image-gradient': \e81b,
571
+ 'image-grain': \e81c,
572
+ 'image-grid-off': \e81d,
573
+ 'image-grid-on': \e81e,
574
+ 'image-hdr-off': \e81f,
575
+ 'image-hdr-on': \e820,
576
+ 'image-hdr-strong': \e821,
577
+ 'image-hdr-weak': \e822,
578
+ 'image-healing': \e823,
579
+ 'image-image': \e824,
580
+ 'image-image-aspect-ratio': \e825,
581
+ 'image-iso': \e826,
582
+ 'image-landscape': \e827,
583
+ 'image-leak-add': \e828,
584
+ 'image-leak-remove': \e829,
585
+ 'image-lens': \e82a,
586
+ 'image-looks': \e82b,
587
+ 'image-looks-3': \e82c,
588
+ 'image-looks-4': \e82d,
589
+ 'image-looks-5': \e82e,
590
+ 'image-looks-6': \e82f,
591
+ 'image-looks-one': \e830,
592
+ 'image-looks-two': \e831,
593
+ 'image-loupe': \e832,
594
+ 'image-movie-creation': \e833,
595
+ 'image-nature': \e834,
596
+ 'image-nature-people': \e835,
597
+ 'image-navigate-before': \e836,
598
+ 'image-navigate-next': \e837,
599
+ 'image-palette': \e838,
600
+ 'image-panorama': \e839,
601
+ 'image-panorama-fisheye': \e83a,
602
+ 'image-panorama-horizontal': \e83b,
603
+ 'image-panorama-vertical': \e83c,
604
+ 'image-panorama-wide-angle': \e83d,
605
+ 'image-photo': \e83e,
606
+ 'image-photo-album': \e83f,
607
+ 'image-photo-camera': \e840,
608
+ 'image-photo-library': \e841,
609
+ 'image-portrait': \e842,
610
+ 'image-remove-red-eye': \e843,
611
+ 'image-rotate-left': \e844,
612
+ 'image-rotate-right': \e845,
613
+ 'image-slideshow': \e846,
614
+ 'image-straighten': \e847,
615
+ 'image-style': \e848,
616
+ 'image-switch-camera': \e849,
617
+ 'image-switch-video': \e84a,
618
+ 'image-tag-faces': \e84b,
619
+ 'image-texture': \e84c,
620
+ 'image-timelapse': \e84d,
621
+ 'image-timer': \e84e,
622
+ 'image-timer-3': \e84f,
623
+ 'image-timer-10': \e850,
624
+ 'image-timer-auto': \e851,
625
+ 'image-timer-off': \e852,
626
+ 'image-tonality': \e853,
627
+ 'image-transform': \e854,
628
+ 'image-tune': \e855,
629
+ 'image-wb-auto': \e856,
630
+ 'image-wb-cloudy': \e857,
631
+ 'image-wb-incandescent': \e858,
632
+ 'image-wb-irradescent': \e859,
633
+ 'image-wb-sunny': \e85a,
634
+ 'maps-beenhere': \e85b,
635
+ 'maps-directions': \e85c,
636
+ 'maps-directions-bike': \e85d,
637
+ 'maps-directions-bus': \e85e,
638
+ 'maps-directions-car': \e85f,
639
+ 'maps-directions-ferry': \e860,
640
+ 'maps-directions-subway': \e861,
641
+ 'maps-directions-train': \e862,
642
+ 'maps-directions-transit': \e863,
643
+ 'maps-directions-walk': \e864,
644
+ 'maps-flight': \e865,
645
+ 'maps-hotel': \e866,
646
+ 'maps-layers': \e867,
647
+ 'maps-layers-clear': \e868,
648
+ 'maps-local-airport': \e869,
649
+ 'maps-local-atm': \e86a,
650
+ 'maps-local-attraction': \e86b,
651
+ 'maps-local-bar': \e86c,
652
+ 'maps-local-cafe': \e86d,
653
+ 'maps-local-car-wash': \e86e,
654
+ 'maps-local-convenience-store': \e86f,
655
+ 'maps-local-drink': \e870,
656
+ 'maps-local-florist': \e871,
657
+ 'maps-local-gas-station': \e872,
658
+ 'maps-local-grocery-store': \e873,
659
+ 'maps-local-hospital': \e874,
660
+ 'maps-local-hotel': \e875,
661
+ 'maps-local-laundry-service': \e876,
662
+ 'maps-local-library': \e877,
663
+ 'maps-local-mall': \e878,
664
+ 'maps-local-movies': \e879,
665
+ 'maps-local-offer': \e87a,
666
+ 'maps-local-parking': \e87b,
667
+ 'maps-local-pharmacy': \e87c,
668
+ 'maps-local-phone': \e87d,
669
+ 'maps-local-pizza': \e87e,
670
+ 'maps-local-play': \e87f,
671
+ 'maps-local-post-office': \e880,
672
+ 'maps-local-print-shop': \e881,
673
+ 'maps-local-restaurant': \e882,
674
+ 'maps-local-see': \e883,
675
+ 'maps-local-shipping': \e884,
676
+ 'maps-local-taxi': \e885,
677
+ 'maps-location-history': \e886,
678
+ 'maps-map': \e887,
679
+ 'maps-my-location': \e888,
680
+ 'maps-navigation': \e889,
681
+ 'maps-pin-drop': \e88a,
682
+ 'maps-place': \e88b,
683
+ 'maps-rate-review': \e88c,
684
+ 'maps-restaurant-menu': \e88d,
685
+ 'maps-satellite': \e88e,
686
+ 'maps-store-mall-directory': \e88f,
687
+ 'maps-terrain': \e890,
688
+ 'maps-traffic': \e891,
689
+ 'navigation-apps': \e892,
690
+ 'navigation-arrow-back': \e893,
691
+ 'navigation-arrow-drop-down': \e894,
692
+ 'navigation-arrow-drop-down-circle': \e895,
693
+ 'navigation-arrow-drop-up': \e896,
694
+ 'navigation-arrow-forward': \e897,
695
+ 'navigation-cancel': \e898,
696
+ 'navigation-check': \e899,
697
+ 'navigation-chevron-left': \e89a,
698
+ 'navigation-chevron-right': \e89b,
699
+ 'navigation-close': \e89c,
700
+ 'navigation-expand-less': \e89d,
701
+ 'navigation-expand-more': \e89e,
702
+ 'navigation-fullscreen': \e89f,
703
+ 'navigation-fullscreen-exit': \e8a0,
704
+ 'navigation-menu': \e8a1,
705
+ 'navigation-more-horiz': \e8a2,
706
+ 'navigation-more-vert': \e8a3,
707
+ 'navigation-refresh': \e8a4,
708
+ 'navigation-unfold-less': \e8a5,
709
+ 'navigation-unfold-more': \e8a6,
710
+ 'notification-adb': \e8a7,
711
+ 'notification-bluetooth-audio': \e8a8,
712
+ 'notification-disc-full': \e8a9,
713
+ 'notification-dnd-forwardslash': \e8aa,
714
+ 'notification-do-not-disturb': \e8ab,
715
+ 'notification-drive-eta': \e8ac,
716
+ 'notification-event-available': \e8ad,
717
+ 'notification-event-busy': \e8ae,
718
+ 'notification-event-note': \e8af,
719
+ 'notification-folder-special': \e8b0,
720
+ 'notification-mms': \e8b1,
721
+ 'notification-more': \e8b2,
722
+ 'notification-network-locked': \e8b3,
723
+ 'notification-phone-bluetooth-speaker': \e8b4,
724
+ 'notification-phone-forwarded': \e8b5,
725
+ 'notification-phone-in-talk': \e8b6,
726
+ 'notification-phone-locked': \e8b7,
727
+ 'notification-phone-missed': \e8b8,
728
+ 'notification-phone-paused': \e8b9,
729
+ 'notification-play-download': \e8ba,
730
+ 'notification-play-install': \e8bb,
731
+ 'notification-sd-card': \e8bc,
732
+ 'notification-sim-card-alert': \e8bd,
733
+ 'notification-sms': \e8be,
734
+ 'notification-sms-failed': \e8bf,
735
+ 'notification-sync': \e8c0,
736
+ 'notification-sync-disabled': \e8c1,
737
+ 'notification-sync-problem': \e8c2,
738
+ 'notification-system-update': \e8c3,
739
+ 'notification-tap-and-play': \e8c4,
740
+ 'notification-time-to-leave': \e8c5,
741
+ 'notification-vibration': \e8c6,
742
+ 'notification-voice-chat': \e8c7,
743
+ 'notification-vpn-lock': \e8c8,
744
+ 'social-cake': \e8c9,
745
+ 'social-domain': \e8ca,
746
+ 'social-group': \e8cb,
747
+ 'social-group-add': \e8cc,
748
+ 'social-location-city': \e8cd,
749
+ 'social-mood': \e8ce,
750
+ 'social-notifications': \e8cf,
751
+ 'social-notifications-none': \e8d0,
752
+ 'social-notifications-off': \e8d1,
753
+ 'social-notifications-on': \e8d2,
754
+ 'social-notifications-paused': \e8d3,
755
+ 'social-pages': \e8d4,
756
+ 'social-party-mode': \e8d5,
757
+ 'social-people': \e8d6,
758
+ 'social-people-outline': \e8d7,
759
+ 'social-person': \e8d8,
760
+ 'social-person-add': \e8d9,
761
+ 'social-person-outline': \e8da,
762
+ 'social-plus-one': \e8db,
763
+ 'social-poll': \e8dc,
764
+ 'social-public': \e8dd,
765
+ 'social-school': \e8de,
766
+ 'social-share': \e8df,
767
+ 'social-whatshot': \e8e0,
768
+ 'toggle-check-box': \e8e1,
769
+ 'toggle-check-box-outline-blank': \e8e2,
770
+ 'toggle-radio-button-off': \e8e3,
771
+ 'toggle-radio-button-on': \e8e4
772
+ );
773
+
774
+ // remove after bug fix sass 3.3.x and add quote in $mdi-list-icons: ( 'foo': \exxx )
775
+ @function unicode($str){
776
+ @return unquote("\"") + $str + unquote("\"");
777
+ }
778
+
779
+ @each $mdi-icon-name, $mdi-icon-value in $mdi-list-icons {
780
+ .#{$mdi-prefix}#{$mdi-icon-name}:before {
781
+ content: unicode($mdi-icon-value);
782
+ }
783
+ }