materialize-rails 0.97.5.custom1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +1 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +63 -0
- data/Rakefile +1 -0
- data/lib/materialize-rails.rb +25 -0
- data/lib/materialize-rails/engine.rb +14 -0
- data/lib/materialize-rails/version.rb +3 -0
- data/materialize-rails.gemspec +25 -0
- data/vendor/assets/fonts/materialize/material-design-icons/LICENSE.txt +428 -0
- data/vendor/assets/fonts/materialize/material-design-icons/Material-Design-Icons.eot +0 -0
- data/vendor/assets/fonts/materialize/material-design-icons/Material-Design-Icons.svg +769 -0
- data/vendor/assets/fonts/materialize/material-design-icons/Material-Design-Icons.ttf +0 -0
- data/vendor/assets/fonts/materialize/material-design-icons/Material-Design-Icons.woff +0 -0
- data/vendor/assets/fonts/materialize/material-design-icons/Material-Design-Icons.woff2 +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Bold.eot +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Bold.ttf +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Bold.woff +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Bold.woff2 +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Light.eot +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Light.ttf +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Light.woff +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Light.woff2 +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Medium.eot +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Medium.ttf +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Medium.woff +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Medium.woff2 +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Regular.eot +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Regular.ttf +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Regular.woff +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Regular.woff2 +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Thin.eot +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Thin.ttf +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Thin.woff +0 -0
- data/vendor/assets/fonts/materialize/roboto/Roboto-Thin.woff2 +0 -0
- data/vendor/assets/javascripts/materialize.js +30 -0
- data/vendor/assets/javascripts/materialize/animation.js +9 -0
- data/vendor/assets/javascripts/materialize/buttons.js +91 -0
- data/vendor/assets/javascripts/materialize/cards.js +29 -0
- data/vendor/assets/javascripts/materialize/carousel.js +350 -0
- data/vendor/assets/javascripts/materialize/character_counter.js +59 -0
- data/vendor/assets/javascripts/materialize/chips.js +9 -0
- data/vendor/assets/javascripts/materialize/collapsible.js +137 -0
- data/vendor/assets/javascripts/materialize/date_picker/picker.date.js +1430 -0
- data/vendor/assets/javascripts/materialize/date_picker/picker.js +1123 -0
- data/vendor/assets/javascripts/materialize/dropdown.js +228 -0
- data/vendor/assets/javascripts/materialize/forms.js +581 -0
- data/vendor/assets/javascripts/materialize/global.js +45 -0
- data/vendor/assets/javascripts/materialize/hammer.min.js +1 -0
- data/vendor/assets/javascripts/materialize/initial.js +11 -0
- data/vendor/assets/javascripts/materialize/jquery.easing.1.3.js +205 -0
- data/vendor/assets/javascripts/materialize/jquery.hammer.js +33 -0
- data/vendor/assets/javascripts/materialize/leanModal.js +178 -0
- data/vendor/assets/javascripts/materialize/materialbox.js +269 -0
- data/vendor/assets/javascripts/materialize/parallax.js +58 -0
- data/vendor/assets/javascripts/materialize/pushpin.js +62 -0
- data/vendor/assets/javascripts/materialize/scrollFire.js +44 -0
- data/vendor/assets/javascripts/materialize/scrollspy.js +285 -0
- data/vendor/assets/javascripts/materialize/sideNav.js +315 -0
- data/vendor/assets/javascripts/materialize/slider.js +321 -0
- data/vendor/assets/javascripts/materialize/tabs.js +129 -0
- data/vendor/assets/javascripts/materialize/toasts.js +136 -0
- data/vendor/assets/javascripts/materialize/tooltip.js +203 -0
- data/vendor/assets/javascripts/materialize/transitions.js +154 -0
- data/vendor/assets/javascripts/materialize/velocity.min.js +5 -0
- data/vendor/assets/javascripts/materialize/waves.js +338 -0
- data/vendor/assets/stylesheets/components/_buttons.scss +181 -0
- data/vendor/assets/stylesheets/components/_cards.scss +134 -0
- data/vendor/assets/stylesheets/components/_carousel.scss +34 -0
- data/vendor/assets/stylesheets/components/_chips.scss +27 -0
- data/vendor/assets/stylesheets/components/_collapsible.scss +85 -0
- data/vendor/assets/stylesheets/components/_color.scss +412 -0
- data/vendor/assets/stylesheets/components/_dropdown.scss +57 -0
- data/vendor/assets/stylesheets/components/_form.scss +918 -0
- data/vendor/assets/stylesheets/components/_global.scss +766 -0
- data/vendor/assets/stylesheets/components/_grid.scss +146 -0
- data/vendor/assets/stylesheets/components/_icons-material-design.scss +3263 -0
- data/vendor/assets/stylesheets/components/_materialbox.scss +42 -0
- data/vendor/assets/stylesheets/components/_mixins.scss +5 -0
- data/vendor/assets/stylesheets/components/_modal.scss +90 -0
- data/vendor/assets/stylesheets/components/_navbar.scss +171 -0
- data/vendor/assets/stylesheets/components/_normalize.scss +427 -0
- data/vendor/assets/stylesheets/components/_prefixer.scss +384 -0
- data/vendor/assets/stylesheets/components/_preloader.scss +334 -0
- data/vendor/assets/stylesheets/components/_roboto.scss +49 -0
- data/vendor/assets/stylesheets/components/_sideNav.scss +112 -0
- data/vendor/assets/stylesheets/components/_slider.scss +92 -0
- data/vendor/assets/stylesheets/components/_table_of_contents.scss +33 -0
- data/vendor/assets/stylesheets/components/_tabs.scss +56 -0
- data/vendor/assets/stylesheets/components/_toast.scss +65 -0
- data/vendor/assets/stylesheets/components/_tooltip.scss +33 -0
- data/vendor/assets/stylesheets/components/_typography.scss +61 -0
- data/vendor/assets/stylesheets/components/_variables.scss +161 -0
- data/vendor/assets/stylesheets/components/_waves.scss +173 -0
- data/vendor/assets/stylesheets/components/date_picker/_default.date.scss +435 -0
- data/vendor/assets/stylesheets/components/date_picker/_default.scss +201 -0
- data/vendor/assets/stylesheets/components/date_picker/_default.time.scss +125 -0
- data/vendor/assets/stylesheets/materialize.scss +40 -0
- metadata +199 -0
@@ -0,0 +1,146 @@
|
|
1
|
+
.container {
|
2
|
+
margin: 0 auto;
|
3
|
+
max-width: 1280px;
|
4
|
+
width: 90%;
|
5
|
+
}
|
6
|
+
@media #{$medium-and-up} {
|
7
|
+
.container {
|
8
|
+
width: 85%;
|
9
|
+
}
|
10
|
+
}
|
11
|
+
@media #{$large-and-up} {
|
12
|
+
.container {
|
13
|
+
width: 70%;
|
14
|
+
}
|
15
|
+
}
|
16
|
+
.container .row {
|
17
|
+
margin-left: (-1 * $gutter-width / 2);
|
18
|
+
margin-right: (-1 * $gutter-width / 2);
|
19
|
+
}
|
20
|
+
|
21
|
+
.section {
|
22
|
+
padding-top: 1rem;
|
23
|
+
padding-bottom: 1rem;
|
24
|
+
|
25
|
+
&.no-pad {
|
26
|
+
padding: 0;
|
27
|
+
}
|
28
|
+
&.no-pad-bot {
|
29
|
+
padding-bottom: 0;
|
30
|
+
}
|
31
|
+
&.no-pad-top {
|
32
|
+
padding-top: 0;
|
33
|
+
}
|
34
|
+
}
|
35
|
+
|
36
|
+
|
37
|
+
.row {
|
38
|
+
margin-left: auto;
|
39
|
+
margin-right: auto;
|
40
|
+
margin-bottom: 20px;
|
41
|
+
|
42
|
+
// Clear floating children
|
43
|
+
&:after {
|
44
|
+
content: "";
|
45
|
+
display: table;
|
46
|
+
clear: both;
|
47
|
+
}
|
48
|
+
|
49
|
+
.col {
|
50
|
+
float: left;
|
51
|
+
box-sizing: border-box;
|
52
|
+
padding: 0 $gutter-width / 2;
|
53
|
+
|
54
|
+
&[class*="push-"],
|
55
|
+
&[class*="pull-"] {
|
56
|
+
position: relative;
|
57
|
+
}
|
58
|
+
|
59
|
+
$i: 1;
|
60
|
+
@while $i <= $num-cols {
|
61
|
+
$perc: unquote((100 / ($num-cols / $i)) + "%");
|
62
|
+
&.s#{$i} {
|
63
|
+
width: $perc;
|
64
|
+
margin-left: auto;
|
65
|
+
left: auto;
|
66
|
+
right: auto;
|
67
|
+
}
|
68
|
+
$i: $i + 1;
|
69
|
+
}
|
70
|
+
|
71
|
+
$i: 1;
|
72
|
+
@while $i <= $num-cols {
|
73
|
+
$perc: unquote((100 / ($num-cols / $i)) + "%");
|
74
|
+
&.offset-s#{$i} {
|
75
|
+
margin-left: $perc;
|
76
|
+
}
|
77
|
+
&.pull-s#{$i} {
|
78
|
+
right: $perc;
|
79
|
+
}
|
80
|
+
&.push-s#{$i} {
|
81
|
+
left: $perc;
|
82
|
+
}
|
83
|
+
$i: $i + 1;
|
84
|
+
}
|
85
|
+
|
86
|
+
@media #{$medium-and-up} {
|
87
|
+
|
88
|
+
$i: 1;
|
89
|
+
@while $i <= $num-cols {
|
90
|
+
$perc: unquote((100 / ($num-cols / $i)) + "%");
|
91
|
+
&.m#{$i} {
|
92
|
+
width: $perc;
|
93
|
+
margin-left: auto;
|
94
|
+
left: auto;
|
95
|
+
right: auto;
|
96
|
+
}
|
97
|
+
$i: $i + 1
|
98
|
+
}
|
99
|
+
|
100
|
+
$i: 1;
|
101
|
+
@while $i <= $num-cols {
|
102
|
+
$perc: unquote((100 / ($num-cols / $i)) + "%");
|
103
|
+
&.offset-m#{$i} {
|
104
|
+
margin-left: $perc;
|
105
|
+
}
|
106
|
+
&.pull-m#{$i} {
|
107
|
+
right: $perc;
|
108
|
+
}
|
109
|
+
&.push-m#{$i} {
|
110
|
+
left: $perc;
|
111
|
+
}
|
112
|
+
$i: $i + 1;
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
@media #{$large-and-up} {
|
117
|
+
|
118
|
+
$i: 1;
|
119
|
+
@while $i <= $num-cols {
|
120
|
+
$perc: unquote((100 / ($num-cols / $i)) + "%");
|
121
|
+
&.l#{$i} {
|
122
|
+
width: $perc;
|
123
|
+
margin-left: auto;
|
124
|
+
left: auto;
|
125
|
+
right: auto;
|
126
|
+
}
|
127
|
+
$i: $i + 1;
|
128
|
+
}
|
129
|
+
|
130
|
+
$i: 1;
|
131
|
+
@while $i <= $num-cols {
|
132
|
+
$perc: unquote((100 / ($num-cols / $i)) + "%");
|
133
|
+
&.offset-l#{$i} {
|
134
|
+
margin-left: $perc;
|
135
|
+
}
|
136
|
+
&.pull-l#{$i} {
|
137
|
+
right: $perc;
|
138
|
+
}
|
139
|
+
&.push-l#{$i} {
|
140
|
+
left: $perc;
|
141
|
+
}
|
142
|
+
$i: $i + 1;
|
143
|
+
}
|
144
|
+
}
|
145
|
+
}
|
146
|
+
}
|
@@ -0,0 +1,3263 @@
|
|
1
|
+
/* This is needed for some mobile phones to display the Google Icon font properly */
|
2
|
+
.material-icons {
|
3
|
+
text-rendering: optimizeLegibility;
|
4
|
+
font-feature-settings: 'liga';
|
5
|
+
}
|
6
|
+
|
7
|
+
$font-mdi : 'Material-Design-Icons';
|
8
|
+
$mdi-prefix : 'mdi-';
|
9
|
+
|
10
|
+
@font-face {
|
11
|
+
font-family: "#{$font-mdi}";
|
12
|
+
src:font-url("#{$icons-font-path}#{$font-mdi}.eot?#iefix") format("embedded-opentype"),
|
13
|
+
font-url("#{$icons-font-path}#{$font-mdi}.woff2") format("woff2"),
|
14
|
+
font-url("#{$icons-font-path}#{$font-mdi}.woff") format("woff"),
|
15
|
+
font-url("#{$icons-font-path}#{$font-mdi}.ttf") format("truetype"),
|
16
|
+
font-url("#{$icons-font-path}#{$font-mdi}.svg##{$font-mdi}") format("svg");
|
17
|
+
font-weight: normal;
|
18
|
+
font-style: normal;
|
19
|
+
}
|
20
|
+
|
21
|
+
[class^="mdi-"], [class*="mdi-"] {
|
22
|
+
speak: none;
|
23
|
+
display: inline-block;
|
24
|
+
font-family: "Material-Design-Icons";
|
25
|
+
font-style: normal;
|
26
|
+
font-weight: normal;
|
27
|
+
font-variant: normal;
|
28
|
+
text-rendering: auto;
|
29
|
+
/* Better Font Rendering =========== */
|
30
|
+
-webkit-font-smoothing: antialiased;
|
31
|
+
-moz-osx-font-smoothing: grayscale;
|
32
|
+
transform: translate(0, 0);
|
33
|
+
&:before {
|
34
|
+
display: inline-block;
|
35
|
+
speak: none;
|
36
|
+
text-decoration: inherit;
|
37
|
+
}
|
38
|
+
&.pull-left {
|
39
|
+
margin-right: .3em;
|
40
|
+
}
|
41
|
+
&.pull-right{
|
42
|
+
margin-left: .3em;
|
43
|
+
}
|
44
|
+
&.mdi-lg:before, &.mdi-lg:after {
|
45
|
+
font-size: 1.33333333em;
|
46
|
+
line-height: 0.75em;
|
47
|
+
vertical-align: -15%;
|
48
|
+
}
|
49
|
+
&.mdi-2x:before, &.mdi-2x:after {
|
50
|
+
font-size: 2em;
|
51
|
+
}
|
52
|
+
&.mdi-3x:before, &.mdi-3x:after {
|
53
|
+
font-size: 3em;
|
54
|
+
}
|
55
|
+
&.mdi-4x:before, &.mdi-4x:after {
|
56
|
+
font-size: 4em;
|
57
|
+
}
|
58
|
+
&.mdi-5x:before, &.mdi-5x:after {
|
59
|
+
font-size: 5em;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
[class^="mdi-device-signal-cellular-"],
|
64
|
+
[class^="mdi-device-battery-"],
|
65
|
+
[class^="mdi-device-battery-charging-"],
|
66
|
+
[class^="mdi-device-signal-cellular-connected-no-internet-"],
|
67
|
+
[class^="mdi-device-signal-wifi-"],
|
68
|
+
[class^="mdi-device-signal-wifi-statusbar-not-connected"],
|
69
|
+
.mdi-device-network-wifi{
|
70
|
+
&:after {
|
71
|
+
opacity: .3;
|
72
|
+
position: absolute;
|
73
|
+
left: 0;
|
74
|
+
top: 0;
|
75
|
+
z-index: 1;
|
76
|
+
display: inline-block;
|
77
|
+
speak: none;
|
78
|
+
text-decoration: inherit;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
|
82
|
+
[class^="mdi-device-signal-cellular-"]:after {content:"\e758";}
|
83
|
+
[class^="mdi-device-battery-"]:after {content:"\e735";}
|
84
|
+
[class^="mdi-device-battery-charging-"]:after {content:"\e733";}
|
85
|
+
[class^="mdi-device-signal-cellular-connected-no-internet-"]:after {content:"\e75d";}
|
86
|
+
[class^="mdi-device-signal-wifi-"]:after, .mdi-device-network-wifi:after {content:"\e765";}
|
87
|
+
[class^="mdi-device-signal-wifi-statusbasr-not-connected"]:after {content:"\e8f7";}
|
88
|
+
|
89
|
+
.mdi-device-signal-cellular-off, .mdi-device-signal-cellular-null, .mdi-device-signal-cellular-no-sim, .mdi-device-signal-wifi-off, .mdi-device-signal-wifi-4-bar, .mdi-device-signal-cellular-4-bar, .mdi-device-battery-alert, .mdi-device-signal-cellular-connected-no-internet-4-bar, .mdi-device-battery-std, .mdi-device-battery-full .mdi-device-battery-unknown {
|
90
|
+
&:after {
|
91
|
+
content: "";
|
92
|
+
}
|
93
|
+
}
|
94
|
+
|
95
|
+
.mdi-fw {
|
96
|
+
width: 1.28571429em;
|
97
|
+
text-align: center;
|
98
|
+
}
|
99
|
+
.mdi-ul {
|
100
|
+
padding-left: 0;
|
101
|
+
margin-left: 2.14285714em;
|
102
|
+
list-style-type: none;
|
103
|
+
}
|
104
|
+
.mdi-ul > li {
|
105
|
+
position: relative;
|
106
|
+
}
|
107
|
+
.mdi-li {
|
108
|
+
position: absolute;
|
109
|
+
left: -2.14285714em;
|
110
|
+
width: 2.14285714em;
|
111
|
+
top: 0.14285714em;
|
112
|
+
text-align: center;
|
113
|
+
}
|
114
|
+
.mdi-li.mdi-lg {
|
115
|
+
left: -1.85714286em;
|
116
|
+
}
|
117
|
+
.mdi-border {
|
118
|
+
padding: .2em .25em .15em;
|
119
|
+
border: solid 0.08em #eeeeee;
|
120
|
+
border-radius: .1em;
|
121
|
+
}
|
122
|
+
|
123
|
+
.mdi-spin {
|
124
|
+
-webkit-animation: mdi-spin 2s infinite linear;
|
125
|
+
animation: mdi-spin 2s infinite linear;
|
126
|
+
-webkit-transform-origin: 50% 50%;
|
127
|
+
-moz-transform-origin: 50% 50%;
|
128
|
+
-o-transform-origin: 50% 50%;
|
129
|
+
transform-origin: 50% 50%;
|
130
|
+
}
|
131
|
+
.mdi-pulse {
|
132
|
+
-webkit-animation: mdi-spin 1s steps(8) infinite;
|
133
|
+
animation: mdi-spin 1s steps(8) infinite ;
|
134
|
+
-webkit-transform-origin: 50% 50%;
|
135
|
+
-moz-transform-origin: 50% 50%;
|
136
|
+
-o-transform-origin: 50% 50%;
|
137
|
+
transform-origin: 50% 50%;
|
138
|
+
}
|
139
|
+
@-webkit-keyframes mdi-spin {
|
140
|
+
0% {
|
141
|
+
-webkit-transform: rotate(0deg);
|
142
|
+
transform: rotate(0deg);
|
143
|
+
}
|
144
|
+
100% {
|
145
|
+
-webkit-transform: rotate(359deg);
|
146
|
+
transform: rotate(359deg);
|
147
|
+
}
|
148
|
+
}
|
149
|
+
@keyframes mdi-spin {
|
150
|
+
0% {
|
151
|
+
-webkit-transform: rotate(0deg);
|
152
|
+
transform: rotate(0deg);
|
153
|
+
}
|
154
|
+
100% {
|
155
|
+
-webkit-transform: rotate(359deg);
|
156
|
+
transform: rotate(359deg);
|
157
|
+
}
|
158
|
+
}
|
159
|
+
.mdi-rotate-90 {
|
160
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
161
|
+
-webkit-transform: rotate(90deg);
|
162
|
+
-ms-transform: rotate(90deg);
|
163
|
+
transform: rotate(90deg);
|
164
|
+
}
|
165
|
+
.mdi-rotate-180 {
|
166
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
167
|
+
-webkit-transform: rotate(180deg);
|
168
|
+
-ms-transform: rotate(180deg);
|
169
|
+
transform: rotate(180deg);
|
170
|
+
}
|
171
|
+
.mdi-rotate-270 {
|
172
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
173
|
+
-webkit-transform: rotate(270deg);
|
174
|
+
-ms-transform: rotate(270deg);
|
175
|
+
transform: rotate(270deg);
|
176
|
+
}
|
177
|
+
.mdi-flip-horizontal {
|
178
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
179
|
+
-webkit-transform: scale(-1, 1);
|
180
|
+
-ms-transform: scale(-1, 1);
|
181
|
+
transform: scale(-1, 1);
|
182
|
+
}
|
183
|
+
.mdi-flip-vertical {
|
184
|
+
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
185
|
+
-webkit-transform: scale(1, -1);
|
186
|
+
-ms-transform: scale(1, -1);
|
187
|
+
transform: scale(1, -1);
|
188
|
+
}
|
189
|
+
:root .mdi-rotate-90,
|
190
|
+
:root .mdi-rotate-180,
|
191
|
+
:root .mdi-rotate-270,
|
192
|
+
:root .mdi-flip-horizontal,
|
193
|
+
:root .mdi-flip-vertical {
|
194
|
+
filter: none;
|
195
|
+
}
|
196
|
+
.mdi-stack {
|
197
|
+
position: relative;
|
198
|
+
display: inline-block;
|
199
|
+
width: 2em;
|
200
|
+
height: 2em;
|
201
|
+
line-height: 2em;
|
202
|
+
vertical-align: middle;
|
203
|
+
}
|
204
|
+
.mdi-stack-1x,
|
205
|
+
.mdi-stack-2x {
|
206
|
+
position: absolute;
|
207
|
+
left: 0;
|
208
|
+
width: 100%;
|
209
|
+
text-align: center;
|
210
|
+
}
|
211
|
+
.mdi-stack-1x {
|
212
|
+
line-height: inherit;
|
213
|
+
}
|
214
|
+
.mdi-stack-2x {
|
215
|
+
font-size: 2em;
|
216
|
+
}
|
217
|
+
.mdi-inverse {
|
218
|
+
color: #ffffff;
|
219
|
+
}
|
220
|
+
|
221
|
+
|
222
|
+
/* Start Icons */
|
223
|
+
|
224
|
+
|
225
|
+
.mdi-action-3d-rotation:before {
|
226
|
+
content: "\e600";
|
227
|
+
}
|
228
|
+
|
229
|
+
.mdi-action-accessibility:before {
|
230
|
+
content: "\e601";
|
231
|
+
}
|
232
|
+
|
233
|
+
.mdi-action-account-balance-wallet:before {
|
234
|
+
content: "\e602";
|
235
|
+
}
|
236
|
+
|
237
|
+
.mdi-action-account-balance:before {
|
238
|
+
content: "\e603";
|
239
|
+
}
|
240
|
+
|
241
|
+
.mdi-action-account-box:before {
|
242
|
+
content: "\e604";
|
243
|
+
}
|
244
|
+
|
245
|
+
.mdi-action-account-child:before {
|
246
|
+
content: "\e605";
|
247
|
+
}
|
248
|
+
|
249
|
+
.mdi-action-account-circle:before {
|
250
|
+
content: "\e606";
|
251
|
+
}
|
252
|
+
|
253
|
+
.mdi-action-add-shopping-cart:before {
|
254
|
+
content: "\e607";
|
255
|
+
}
|
256
|
+
|
257
|
+
.mdi-action-alarm-add:before {
|
258
|
+
content: "\e608";
|
259
|
+
}
|
260
|
+
|
261
|
+
.mdi-action-alarm-off:before {
|
262
|
+
content: "\e609";
|
263
|
+
}
|
264
|
+
|
265
|
+
.mdi-action-alarm-on:before {
|
266
|
+
content: "\e60a";
|
267
|
+
}
|
268
|
+
|
269
|
+
.mdi-action-alarm:before {
|
270
|
+
content: "\e60b";
|
271
|
+
}
|
272
|
+
|
273
|
+
.mdi-action-android:before {
|
274
|
+
content: "\e60c";
|
275
|
+
}
|
276
|
+
|
277
|
+
.mdi-action-announcement:before {
|
278
|
+
content: "\e60d";
|
279
|
+
}
|
280
|
+
|
281
|
+
.mdi-action-aspect-ratio:before {
|
282
|
+
content: "\e60e";
|
283
|
+
}
|
284
|
+
|
285
|
+
.mdi-action-assessment:before {
|
286
|
+
content: "\e60f";
|
287
|
+
}
|
288
|
+
|
289
|
+
.mdi-action-assignment-ind:before {
|
290
|
+
content: "\e610";
|
291
|
+
}
|
292
|
+
|
293
|
+
.mdi-action-assignment-late:before {
|
294
|
+
content: "\e611";
|
295
|
+
}
|
296
|
+
|
297
|
+
.mdi-action-assignment-return:before {
|
298
|
+
content: "\e612";
|
299
|
+
}
|
300
|
+
|
301
|
+
.mdi-action-assignment-returned:before {
|
302
|
+
content: "\e613";
|
303
|
+
}
|
304
|
+
|
305
|
+
.mdi-action-assignment-turned-in:before {
|
306
|
+
content: "\e614";
|
307
|
+
}
|
308
|
+
|
309
|
+
.mdi-action-assignment:before {
|
310
|
+
content: "\e615";
|
311
|
+
}
|
312
|
+
|
313
|
+
.mdi-action-autorenew:before {
|
314
|
+
content: "\e616";
|
315
|
+
}
|
316
|
+
|
317
|
+
.mdi-action-backup:before {
|
318
|
+
content: "\e617";
|
319
|
+
}
|
320
|
+
|
321
|
+
.mdi-action-book:before {
|
322
|
+
content: "\e618";
|
323
|
+
}
|
324
|
+
|
325
|
+
.mdi-action-bookmark-outline:before {
|
326
|
+
content: "\e619";
|
327
|
+
}
|
328
|
+
|
329
|
+
.mdi-action-bookmark:before {
|
330
|
+
content: "\e61a";
|
331
|
+
}
|
332
|
+
|
333
|
+
.mdi-action-bug-report:before {
|
334
|
+
content: "\e61b";
|
335
|
+
}
|
336
|
+
|
337
|
+
.mdi-action-cached:before {
|
338
|
+
content: "\e61c";
|
339
|
+
}
|
340
|
+
|
341
|
+
.mdi-action-check-circle:before {
|
342
|
+
content: "\e61d";
|
343
|
+
}
|
344
|
+
|
345
|
+
.mdi-action-class:before {
|
346
|
+
content: "\e61e";
|
347
|
+
}
|
348
|
+
|
349
|
+
.mdi-action-credit-card:before {
|
350
|
+
content: "\e61f";
|
351
|
+
}
|
352
|
+
|
353
|
+
.mdi-action-dashboard:before {
|
354
|
+
content: "\e620";
|
355
|
+
}
|
356
|
+
|
357
|
+
.mdi-action-delete:before {
|
358
|
+
content: "\e621";
|
359
|
+
}
|
360
|
+
|
361
|
+
.mdi-action-description:before {
|
362
|
+
content: "\e622";
|
363
|
+
}
|
364
|
+
|
365
|
+
.mdi-action-dns:before {
|
366
|
+
content: "\e623";
|
367
|
+
}
|
368
|
+
|
369
|
+
.mdi-action-done-all:before {
|
370
|
+
content: "\e624";
|
371
|
+
}
|
372
|
+
|
373
|
+
.mdi-action-done:before {
|
374
|
+
content: "\e625";
|
375
|
+
}
|
376
|
+
|
377
|
+
.mdi-action-event:before {
|
378
|
+
content: "\e626";
|
379
|
+
}
|
380
|
+
|
381
|
+
.mdi-action-exit-to-app:before {
|
382
|
+
content: "\e627";
|
383
|
+
}
|
384
|
+
|
385
|
+
.mdi-action-explore:before {
|
386
|
+
content: "\e628";
|
387
|
+
}
|
388
|
+
|
389
|
+
.mdi-action-extension:before {
|
390
|
+
content: "\e629";
|
391
|
+
}
|
392
|
+
|
393
|
+
.mdi-action-face-unlock:before {
|
394
|
+
content: "\e62a";
|
395
|
+
}
|
396
|
+
|
397
|
+
.mdi-action-favorite-outline:before {
|
398
|
+
content: "\e62b";
|
399
|
+
}
|
400
|
+
|
401
|
+
.mdi-action-favorite:before {
|
402
|
+
content: "\e62c";
|
403
|
+
}
|
404
|
+
|
405
|
+
.mdi-action-find-in-page:before {
|
406
|
+
content: "\e62d";
|
407
|
+
}
|
408
|
+
|
409
|
+
.mdi-action-find-replace:before {
|
410
|
+
content: "\e62e";
|
411
|
+
}
|
412
|
+
|
413
|
+
.mdi-action-flip-to-back:before {
|
414
|
+
content: "\e62f";
|
415
|
+
}
|
416
|
+
|
417
|
+
.mdi-action-flip-to-front:before {
|
418
|
+
content: "\e630";
|
419
|
+
}
|
420
|
+
|
421
|
+
.mdi-action-get-app:before {
|
422
|
+
content: "\e631";
|
423
|
+
}
|
424
|
+
|
425
|
+
.mdi-action-grade:before {
|
426
|
+
content: "\e632";
|
427
|
+
}
|
428
|
+
|
429
|
+
.mdi-action-group-work:before {
|
430
|
+
content: "\e633";
|
431
|
+
}
|
432
|
+
|
433
|
+
.mdi-action-help:before {
|
434
|
+
content: "\e634";
|
435
|
+
}
|
436
|
+
|
437
|
+
.mdi-action-highlight-remove:before {
|
438
|
+
content: "\e635";
|
439
|
+
}
|
440
|
+
|
441
|
+
.mdi-action-history:before {
|
442
|
+
content: "\e636";
|
443
|
+
}
|
444
|
+
|
445
|
+
.mdi-action-home:before {
|
446
|
+
content: "\e637";
|
447
|
+
}
|
448
|
+
|
449
|
+
.mdi-action-https:before {
|
450
|
+
content: "\e638";
|
451
|
+
}
|
452
|
+
|
453
|
+
.mdi-action-info-outline:before {
|
454
|
+
content: "\e639";
|
455
|
+
}
|
456
|
+
|
457
|
+
.mdi-action-info:before {
|
458
|
+
content: "\e63a";
|
459
|
+
}
|
460
|
+
|
461
|
+
.mdi-action-input:before {
|
462
|
+
content: "\e63b";
|
463
|
+
}
|
464
|
+
|
465
|
+
.mdi-action-invert-colors:before {
|
466
|
+
content: "\e63c";
|
467
|
+
}
|
468
|
+
|
469
|
+
.mdi-action-label-outline:before {
|
470
|
+
content: "\e63d";
|
471
|
+
}
|
472
|
+
|
473
|
+
.mdi-action-label:before {
|
474
|
+
content: "\e63e";
|
475
|
+
}
|
476
|
+
|
477
|
+
.mdi-action-language:before {
|
478
|
+
content: "\e63f";
|
479
|
+
}
|
480
|
+
|
481
|
+
.mdi-action-launch:before {
|
482
|
+
content: "\e640";
|
483
|
+
}
|
484
|
+
|
485
|
+
.mdi-action-list:before {
|
486
|
+
content: "\e641";
|
487
|
+
}
|
488
|
+
|
489
|
+
.mdi-action-lock-open:before {
|
490
|
+
content: "\e642";
|
491
|
+
}
|
492
|
+
|
493
|
+
.mdi-action-lock-outline:before {
|
494
|
+
content: "\e643";
|
495
|
+
}
|
496
|
+
|
497
|
+
.mdi-action-lock:before {
|
498
|
+
content: "\e644";
|
499
|
+
}
|
500
|
+
|
501
|
+
.mdi-action-loyalty:before {
|
502
|
+
content: "\e645";
|
503
|
+
}
|
504
|
+
|
505
|
+
.mdi-action-markunread-mailbox:before {
|
506
|
+
content: "\e646";
|
507
|
+
}
|
508
|
+
|
509
|
+
.mdi-action-note-add:before {
|
510
|
+
content: "\e647";
|
511
|
+
}
|
512
|
+
|
513
|
+
.mdi-action-open-in-browser:before {
|
514
|
+
content: "\e648";
|
515
|
+
}
|
516
|
+
|
517
|
+
.mdi-action-open-in-new:before {
|
518
|
+
content: "\e649";
|
519
|
+
}
|
520
|
+
|
521
|
+
.mdi-action-open-with:before {
|
522
|
+
content: "\e64a";
|
523
|
+
}
|
524
|
+
|
525
|
+
.mdi-action-pageview:before {
|
526
|
+
content: "\e64b";
|
527
|
+
}
|
528
|
+
|
529
|
+
.mdi-action-payment:before {
|
530
|
+
content: "\e64c";
|
531
|
+
}
|
532
|
+
|
533
|
+
.mdi-action-perm-camera-mic:before {
|
534
|
+
content: "\e64d";
|
535
|
+
}
|
536
|
+
|
537
|
+
.mdi-action-perm-contact-cal:before {
|
538
|
+
content: "\e64e";
|
539
|
+
}
|
540
|
+
|
541
|
+
.mdi-action-perm-data-setting:before {
|
542
|
+
content: "\e64f";
|
543
|
+
}
|
544
|
+
|
545
|
+
.mdi-action-perm-device-info:before {
|
546
|
+
content: "\e650";
|
547
|
+
}
|
548
|
+
|
549
|
+
.mdi-action-perm-identity:before {
|
550
|
+
content: "\e651";
|
551
|
+
}
|
552
|
+
|
553
|
+
.mdi-action-perm-media:before {
|
554
|
+
content: "\e652";
|
555
|
+
}
|
556
|
+
|
557
|
+
.mdi-action-perm-phone-msg:before {
|
558
|
+
content: "\e653";
|
559
|
+
}
|
560
|
+
|
561
|
+
.mdi-action-perm-scan-wifi:before {
|
562
|
+
content: "\e654";
|
563
|
+
}
|
564
|
+
|
565
|
+
.mdi-action-picture-in-picture:before {
|
566
|
+
content: "\e655";
|
567
|
+
}
|
568
|
+
|
569
|
+
.mdi-action-polymer:before {
|
570
|
+
content: "\e656";
|
571
|
+
}
|
572
|
+
|
573
|
+
.mdi-action-print:before {
|
574
|
+
content: "\e657";
|
575
|
+
}
|
576
|
+
|
577
|
+
.mdi-action-query-builder:before {
|
578
|
+
content: "\e658";
|
579
|
+
}
|
580
|
+
|
581
|
+
.mdi-action-question-answer:before {
|
582
|
+
content: "\e659";
|
583
|
+
}
|
584
|
+
|
585
|
+
.mdi-action-receipt:before {
|
586
|
+
content: "\e65a";
|
587
|
+
}
|
588
|
+
|
589
|
+
.mdi-action-redeem:before {
|
590
|
+
content: "\e65b";
|
591
|
+
}
|
592
|
+
|
593
|
+
.mdi-action-reorder:before {
|
594
|
+
content: "\e65c";
|
595
|
+
}
|
596
|
+
|
597
|
+
.mdi-action-report-problem:before {
|
598
|
+
content: "\e65d";
|
599
|
+
}
|
600
|
+
|
601
|
+
.mdi-action-restore:before {
|
602
|
+
content: "\e65e";
|
603
|
+
}
|
604
|
+
|
605
|
+
.mdi-action-room:before {
|
606
|
+
content: "\e65f";
|
607
|
+
}
|
608
|
+
|
609
|
+
.mdi-action-schedule:before {
|
610
|
+
content: "\e660";
|
611
|
+
}
|
612
|
+
|
613
|
+
.mdi-action-search:before {
|
614
|
+
content: "\e661";
|
615
|
+
}
|
616
|
+
|
617
|
+
.mdi-action-settings-applications:before {
|
618
|
+
content: "\e662";
|
619
|
+
}
|
620
|
+
|
621
|
+
.mdi-action-settings-backup-restore:before {
|
622
|
+
content: "\e663";
|
623
|
+
}
|
624
|
+
|
625
|
+
.mdi-action-settings-bluetooth:before {
|
626
|
+
content: "\e664";
|
627
|
+
}
|
628
|
+
|
629
|
+
.mdi-action-settings-cell:before {
|
630
|
+
content: "\e665";
|
631
|
+
}
|
632
|
+
|
633
|
+
.mdi-action-settings-display:before {
|
634
|
+
content: "\e666";
|
635
|
+
}
|
636
|
+
|
637
|
+
.mdi-action-settings-ethernet:before {
|
638
|
+
content: "\e667";
|
639
|
+
}
|
640
|
+
|
641
|
+
.mdi-action-settings-input-antenna:before {
|
642
|
+
content: "\e668";
|
643
|
+
}
|
644
|
+
|
645
|
+
.mdi-action-settings-input-component:before {
|
646
|
+
content: "\e669";
|
647
|
+
}
|
648
|
+
|
649
|
+
.mdi-action-settings-input-composite:before {
|
650
|
+
content: "\e66a";
|
651
|
+
}
|
652
|
+
|
653
|
+
.mdi-action-settings-input-hdmi:before {
|
654
|
+
content: "\e66b";
|
655
|
+
}
|
656
|
+
|
657
|
+
.mdi-action-settings-input-svideo:before {
|
658
|
+
content: "\e66c";
|
659
|
+
}
|
660
|
+
|
661
|
+
.mdi-action-settings-overscan:before {
|
662
|
+
content: "\e66d";
|
663
|
+
}
|
664
|
+
|
665
|
+
.mdi-action-settings-phone:before {
|
666
|
+
content: "\e66e";
|
667
|
+
}
|
668
|
+
|
669
|
+
.mdi-action-settings-power:before {
|
670
|
+
content: "\e66f";
|
671
|
+
}
|
672
|
+
|
673
|
+
.mdi-action-settings-remote:before {
|
674
|
+
content: "\e670";
|
675
|
+
}
|
676
|
+
|
677
|
+
.mdi-action-settings-voice:before {
|
678
|
+
content: "\e671";
|
679
|
+
}
|
680
|
+
|
681
|
+
.mdi-action-settings:before {
|
682
|
+
content: "\e672";
|
683
|
+
}
|
684
|
+
|
685
|
+
.mdi-action-shop-two:before {
|
686
|
+
content: "\e673";
|
687
|
+
}
|
688
|
+
|
689
|
+
.mdi-action-shop:before {
|
690
|
+
content: "\e674";
|
691
|
+
}
|
692
|
+
|
693
|
+
.mdi-action-shopping-basket:before {
|
694
|
+
content: "\e675";
|
695
|
+
}
|
696
|
+
|
697
|
+
.mdi-action-shopping-cart:before {
|
698
|
+
content: "\e676";
|
699
|
+
}
|
700
|
+
|
701
|
+
.mdi-action-speaker-notes:before {
|
702
|
+
content: "\e677";
|
703
|
+
}
|
704
|
+
|
705
|
+
.mdi-action-spellcheck:before {
|
706
|
+
content: "\e678";
|
707
|
+
}
|
708
|
+
|
709
|
+
.mdi-action-star-rate:before {
|
710
|
+
content: "\e679";
|
711
|
+
}
|
712
|
+
|
713
|
+
.mdi-action-stars:before {
|
714
|
+
content: "\e67a";
|
715
|
+
}
|
716
|
+
|
717
|
+
.mdi-action-store:before {
|
718
|
+
content: "\e67b";
|
719
|
+
}
|
720
|
+
|
721
|
+
.mdi-action-subject:before {
|
722
|
+
content: "\e67c";
|
723
|
+
}
|
724
|
+
|
725
|
+
.mdi-action-supervisor-account:before {
|
726
|
+
content: "\e67d";
|
727
|
+
}
|
728
|
+
|
729
|
+
.mdi-action-swap-horiz:before {
|
730
|
+
content: "\e67e";
|
731
|
+
}
|
732
|
+
|
733
|
+
.mdi-action-swap-vert-circle:before {
|
734
|
+
content: "\e67f";
|
735
|
+
}
|
736
|
+
|
737
|
+
.mdi-action-swap-vert:before {
|
738
|
+
content: "\e680";
|
739
|
+
}
|
740
|
+
|
741
|
+
.mdi-action-system-update-tv:before {
|
742
|
+
content: "\e681";
|
743
|
+
}
|
744
|
+
|
745
|
+
.mdi-action-tab-unselected:before {
|
746
|
+
content: "\e682";
|
747
|
+
}
|
748
|
+
|
749
|
+
.mdi-action-tab:before {
|
750
|
+
content: "\e683";
|
751
|
+
}
|
752
|
+
|
753
|
+
.mdi-action-theaters:before {
|
754
|
+
content: "\e684";
|
755
|
+
}
|
756
|
+
|
757
|
+
.mdi-action-thumb-down:before {
|
758
|
+
content: "\e685";
|
759
|
+
}
|
760
|
+
|
761
|
+
.mdi-action-thumb-up:before {
|
762
|
+
content: "\e686";
|
763
|
+
}
|
764
|
+
|
765
|
+
.mdi-action-thumbs-up-down:before {
|
766
|
+
content: "\e687";
|
767
|
+
}
|
768
|
+
|
769
|
+
.mdi-action-toc:before {
|
770
|
+
content: "\e688";
|
771
|
+
}
|
772
|
+
|
773
|
+
.mdi-action-today:before {
|
774
|
+
content: "\e689";
|
775
|
+
}
|
776
|
+
|
777
|
+
.mdi-action-track-changes:before {
|
778
|
+
content: "\e68a";
|
779
|
+
}
|
780
|
+
|
781
|
+
.mdi-action-translate:before {
|
782
|
+
content: "\e68b";
|
783
|
+
}
|
784
|
+
|
785
|
+
.mdi-action-trending-down:before {
|
786
|
+
content: "\e68c";
|
787
|
+
}
|
788
|
+
|
789
|
+
.mdi-action-trending-neutral:before {
|
790
|
+
content: "\e68d";
|
791
|
+
}
|
792
|
+
|
793
|
+
.mdi-action-trending-up:before {
|
794
|
+
content: "\e68e";
|
795
|
+
}
|
796
|
+
|
797
|
+
.mdi-action-turned-in-not:before {
|
798
|
+
content: "\e68f";
|
799
|
+
}
|
800
|
+
|
801
|
+
.mdi-action-turned-in:before {
|
802
|
+
content: "\e690";
|
803
|
+
}
|
804
|
+
|
805
|
+
.mdi-action-verified-user:before {
|
806
|
+
content: "\e691";
|
807
|
+
}
|
808
|
+
|
809
|
+
.mdi-action-view-agenda:before {
|
810
|
+
content: "\e692";
|
811
|
+
}
|
812
|
+
|
813
|
+
.mdi-action-view-array:before {
|
814
|
+
content: "\e693";
|
815
|
+
}
|
816
|
+
|
817
|
+
.mdi-action-view-carousel:before {
|
818
|
+
content: "\e694";
|
819
|
+
}
|
820
|
+
|
821
|
+
.mdi-action-view-column:before {
|
822
|
+
content: "\e695";
|
823
|
+
}
|
824
|
+
|
825
|
+
.mdi-action-view-day:before {
|
826
|
+
content: "\e696";
|
827
|
+
}
|
828
|
+
|
829
|
+
.mdi-action-view-headline:before {
|
830
|
+
content: "\e697";
|
831
|
+
}
|
832
|
+
|
833
|
+
.mdi-action-view-list:before {
|
834
|
+
content: "\e698";
|
835
|
+
}
|
836
|
+
|
837
|
+
.mdi-action-view-module:before {
|
838
|
+
content: "\e699";
|
839
|
+
}
|
840
|
+
|
841
|
+
.mdi-action-view-quilt:before {
|
842
|
+
content: "\e69a";
|
843
|
+
}
|
844
|
+
|
845
|
+
.mdi-action-view-stream:before {
|
846
|
+
content: "\e69b";
|
847
|
+
}
|
848
|
+
|
849
|
+
.mdi-action-view-week:before {
|
850
|
+
content: "\e69c";
|
851
|
+
}
|
852
|
+
|
853
|
+
.mdi-action-visibility-off:before {
|
854
|
+
content: "\e69d";
|
855
|
+
}
|
856
|
+
|
857
|
+
.mdi-action-visibility:before {
|
858
|
+
content: "\e69e";
|
859
|
+
}
|
860
|
+
|
861
|
+
.mdi-action-wallet-giftcard:before {
|
862
|
+
content: "\e69f";
|
863
|
+
}
|
864
|
+
|
865
|
+
.mdi-action-wallet-membership:before {
|
866
|
+
content: "\e6a0";
|
867
|
+
}
|
868
|
+
|
869
|
+
.mdi-action-wallet-travel:before {
|
870
|
+
content: "\e6a1";
|
871
|
+
}
|
872
|
+
|
873
|
+
.mdi-action-work:before {
|
874
|
+
content: "\e6a2";
|
875
|
+
}
|
876
|
+
|
877
|
+
.mdi-alert-error:before {
|
878
|
+
content: "\e6a3";
|
879
|
+
}
|
880
|
+
|
881
|
+
.mdi-alert-warning:before {
|
882
|
+
content: "\e6a4";
|
883
|
+
}
|
884
|
+
|
885
|
+
.mdi-av-album:before {
|
886
|
+
content: "\e6a5";
|
887
|
+
}
|
888
|
+
|
889
|
+
.mdi-av-closed-caption:before {
|
890
|
+
content: "\e6a6";
|
891
|
+
}
|
892
|
+
|
893
|
+
.mdi-av-equalizer:before {
|
894
|
+
content: "\e6a7";
|
895
|
+
}
|
896
|
+
|
897
|
+
.mdi-av-explicit:before {
|
898
|
+
content: "\e6a8";
|
899
|
+
}
|
900
|
+
|
901
|
+
.mdi-av-fast-forward:before {
|
902
|
+
content: "\e6a9";
|
903
|
+
}
|
904
|
+
|
905
|
+
.mdi-av-fast-rewind:before {
|
906
|
+
content: "\e6aa";
|
907
|
+
}
|
908
|
+
|
909
|
+
.mdi-av-games:before {
|
910
|
+
content: "\e6ab";
|
911
|
+
}
|
912
|
+
|
913
|
+
.mdi-av-hearing:before {
|
914
|
+
content: "\e6ac";
|
915
|
+
}
|
916
|
+
|
917
|
+
.mdi-av-high-quality:before {
|
918
|
+
content: "\e6ad";
|
919
|
+
}
|
920
|
+
|
921
|
+
.mdi-av-loop:before {
|
922
|
+
content: "\e6ae";
|
923
|
+
}
|
924
|
+
|
925
|
+
.mdi-av-mic-none:before {
|
926
|
+
content: "\e6af";
|
927
|
+
}
|
928
|
+
|
929
|
+
.mdi-av-mic-off:before {
|
930
|
+
content: "\e6b0";
|
931
|
+
}
|
932
|
+
|
933
|
+
.mdi-av-mic:before {
|
934
|
+
content: "\e6b1";
|
935
|
+
}
|
936
|
+
|
937
|
+
.mdi-av-movie:before {
|
938
|
+
content: "\e6b2";
|
939
|
+
}
|
940
|
+
|
941
|
+
.mdi-av-my-library-add:before {
|
942
|
+
content: "\e6b3";
|
943
|
+
}
|
944
|
+
|
945
|
+
.mdi-av-my-library-books:before {
|
946
|
+
content: "\e6b4";
|
947
|
+
}
|
948
|
+
|
949
|
+
.mdi-av-my-library-music:before {
|
950
|
+
content: "\e6b5";
|
951
|
+
}
|
952
|
+
|
953
|
+
.mdi-av-new-releases:before {
|
954
|
+
content: "\e6b6";
|
955
|
+
}
|
956
|
+
|
957
|
+
.mdi-av-not-interested:before {
|
958
|
+
content: "\e6b7";
|
959
|
+
}
|
960
|
+
|
961
|
+
.mdi-av-pause-circle-fill:before {
|
962
|
+
content: "\e6b8";
|
963
|
+
}
|
964
|
+
|
965
|
+
.mdi-av-pause-circle-outline:before {
|
966
|
+
content: "\e6b9";
|
967
|
+
}
|
968
|
+
|
969
|
+
.mdi-av-pause:before {
|
970
|
+
content: "\e6ba";
|
971
|
+
}
|
972
|
+
|
973
|
+
.mdi-av-play-arrow:before {
|
974
|
+
content: "\e6bb";
|
975
|
+
}
|
976
|
+
|
977
|
+
.mdi-av-play-circle-fill:before {
|
978
|
+
content: "\e6bc";
|
979
|
+
}
|
980
|
+
|
981
|
+
.mdi-av-play-circle-outline:before {
|
982
|
+
content: "\e6bd";
|
983
|
+
}
|
984
|
+
|
985
|
+
.mdi-av-play-shopping-bag:before {
|
986
|
+
content: "\e6be";
|
987
|
+
}
|
988
|
+
|
989
|
+
.mdi-av-playlist-add:before {
|
990
|
+
content: "\e6bf";
|
991
|
+
}
|
992
|
+
|
993
|
+
.mdi-av-queue-music:before {
|
994
|
+
content: "\e6c0";
|
995
|
+
}
|
996
|
+
|
997
|
+
.mdi-av-queue:before {
|
998
|
+
content: "\e6c1";
|
999
|
+
}
|
1000
|
+
|
1001
|
+
.mdi-av-radio:before {
|
1002
|
+
content: "\e6c2";
|
1003
|
+
}
|
1004
|
+
|
1005
|
+
.mdi-av-recent-actors:before {
|
1006
|
+
content: "\e6c3";
|
1007
|
+
}
|
1008
|
+
|
1009
|
+
.mdi-av-repeat-one:before {
|
1010
|
+
content: "\e6c4";
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
.mdi-av-repeat:before {
|
1014
|
+
content: "\e6c5";
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
.mdi-av-replay:before {
|
1018
|
+
content: "\e6c6";
|
1019
|
+
}
|
1020
|
+
|
1021
|
+
.mdi-av-shuffle:before {
|
1022
|
+
content: "\e6c7";
|
1023
|
+
}
|
1024
|
+
|
1025
|
+
.mdi-av-skip-next:before {
|
1026
|
+
content: "\e6c8";
|
1027
|
+
}
|
1028
|
+
|
1029
|
+
.mdi-av-skip-previous:before {
|
1030
|
+
content: "\e6c9";
|
1031
|
+
}
|
1032
|
+
|
1033
|
+
.mdi-av-snooze:before {
|
1034
|
+
content: "\e6ca";
|
1035
|
+
}
|
1036
|
+
|
1037
|
+
.mdi-av-stop:before {
|
1038
|
+
content: "\e6cb";
|
1039
|
+
}
|
1040
|
+
|
1041
|
+
.mdi-av-subtitles:before {
|
1042
|
+
content: "\e6cc";
|
1043
|
+
}
|
1044
|
+
|
1045
|
+
.mdi-av-surround-sound:before {
|
1046
|
+
content: "\e6cd";
|
1047
|
+
}
|
1048
|
+
|
1049
|
+
.mdi-av-timer:before {
|
1050
|
+
content: "\e6ce";
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
.mdi-av-video-collection:before {
|
1054
|
+
content: "\e6cf";
|
1055
|
+
}
|
1056
|
+
|
1057
|
+
.mdi-av-videocam-off:before {
|
1058
|
+
content: "\e6d0";
|
1059
|
+
}
|
1060
|
+
|
1061
|
+
.mdi-av-videocam:before {
|
1062
|
+
content: "\e6d1";
|
1063
|
+
}
|
1064
|
+
|
1065
|
+
.mdi-av-volume-down:before {
|
1066
|
+
content: "\e6d2";
|
1067
|
+
}
|
1068
|
+
|
1069
|
+
.mdi-av-volume-mute:before {
|
1070
|
+
content: "\e6d3";
|
1071
|
+
}
|
1072
|
+
|
1073
|
+
.mdi-av-volume-off:before {
|
1074
|
+
content: "\e6d4";
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
.mdi-av-volume-up:before {
|
1078
|
+
content: "\e6d5";
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
.mdi-av-web:before {
|
1082
|
+
content: "\e6d6";
|
1083
|
+
}
|
1084
|
+
|
1085
|
+
.mdi-communication-business:before {
|
1086
|
+
content: "\e6d7";
|
1087
|
+
}
|
1088
|
+
|
1089
|
+
.mdi-communication-call-end:before {
|
1090
|
+
content: "\e6d8";
|
1091
|
+
}
|
1092
|
+
|
1093
|
+
.mdi-communication-call-made:before {
|
1094
|
+
content: "\e6d9";
|
1095
|
+
}
|
1096
|
+
|
1097
|
+
.mdi-communication-call-merge:before {
|
1098
|
+
content: "\e6da";
|
1099
|
+
}
|
1100
|
+
|
1101
|
+
.mdi-communication-call-missed:before {
|
1102
|
+
content: "\e6db";
|
1103
|
+
}
|
1104
|
+
|
1105
|
+
.mdi-communication-call-received:before {
|
1106
|
+
content: "\e6dc";
|
1107
|
+
}
|
1108
|
+
|
1109
|
+
.mdi-communication-call-split:before {
|
1110
|
+
content: "\e6dd";
|
1111
|
+
}
|
1112
|
+
|
1113
|
+
.mdi-communication-call:before {
|
1114
|
+
content: "\e6de";
|
1115
|
+
}
|
1116
|
+
|
1117
|
+
.mdi-communication-chat:before {
|
1118
|
+
content: "\e6df";
|
1119
|
+
}
|
1120
|
+
|
1121
|
+
.mdi-communication-clear-all:before {
|
1122
|
+
content: "\e6e0";
|
1123
|
+
}
|
1124
|
+
|
1125
|
+
.mdi-communication-comment:before {
|
1126
|
+
content: "\e6e1";
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
.mdi-communication-contacts:before {
|
1130
|
+
content: "\e6e2";
|
1131
|
+
}
|
1132
|
+
|
1133
|
+
.mdi-communication-dialer-sip:before {
|
1134
|
+
content: "\e6e3";
|
1135
|
+
}
|
1136
|
+
|
1137
|
+
.mdi-communication-dialpad:before {
|
1138
|
+
content: "\e6e4";
|
1139
|
+
}
|
1140
|
+
|
1141
|
+
.mdi-communication-dnd-on:before {
|
1142
|
+
content: "\e6e5";
|
1143
|
+
}
|
1144
|
+
|
1145
|
+
.mdi-communication-email:before {
|
1146
|
+
content: "\e6e6";
|
1147
|
+
}
|
1148
|
+
|
1149
|
+
.mdi-communication-forum:before {
|
1150
|
+
content: "\e6e7";
|
1151
|
+
}
|
1152
|
+
|
1153
|
+
.mdi-communication-import-export:before {
|
1154
|
+
content: "\e6e8";
|
1155
|
+
}
|
1156
|
+
|
1157
|
+
.mdi-communication-invert-colors-off:before {
|
1158
|
+
content: "\e6e9";
|
1159
|
+
}
|
1160
|
+
|
1161
|
+
.mdi-communication-invert-colors-on:before {
|
1162
|
+
content: "\e6ea";
|
1163
|
+
}
|
1164
|
+
|
1165
|
+
.mdi-communication-live-help:before {
|
1166
|
+
content: "\e6eb";
|
1167
|
+
}
|
1168
|
+
|
1169
|
+
.mdi-communication-location-off:before {
|
1170
|
+
content: "\e6ec";
|
1171
|
+
}
|
1172
|
+
|
1173
|
+
.mdi-communication-location-on:before {
|
1174
|
+
content: "\e6ed";
|
1175
|
+
}
|
1176
|
+
|
1177
|
+
.mdi-communication-message:before {
|
1178
|
+
content: "\e6ee";
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
.mdi-communication-messenger:before {
|
1182
|
+
content: "\e6ef";
|
1183
|
+
}
|
1184
|
+
|
1185
|
+
.mdi-communication-no-sim:before {
|
1186
|
+
content: "\e6f0";
|
1187
|
+
}
|
1188
|
+
|
1189
|
+
.mdi-communication-phone:before {
|
1190
|
+
content: "\e6f1";
|
1191
|
+
}
|
1192
|
+
|
1193
|
+
.mdi-communication-portable-wifi-off:before {
|
1194
|
+
content: "\e6f2";
|
1195
|
+
}
|
1196
|
+
|
1197
|
+
.mdi-communication-quick-contacts-dialer:before {
|
1198
|
+
content: "\e6f3";
|
1199
|
+
}
|
1200
|
+
|
1201
|
+
.mdi-communication-quick-contacts-mail:before {
|
1202
|
+
content: "\e6f4";
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
.mdi-communication-ring-volume:before {
|
1206
|
+
content: "\e6f5";
|
1207
|
+
}
|
1208
|
+
|
1209
|
+
.mdi-communication-stay-current-landscape:before {
|
1210
|
+
content: "\e6f6";
|
1211
|
+
}
|
1212
|
+
|
1213
|
+
.mdi-communication-stay-current-portrait:before {
|
1214
|
+
content: "\e6f7";
|
1215
|
+
}
|
1216
|
+
|
1217
|
+
.mdi-communication-stay-primary-landscape:before {
|
1218
|
+
content: "\e6f8";
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
.mdi-communication-stay-primary-portrait:before {
|
1222
|
+
content: "\e6f9";
|
1223
|
+
}
|
1224
|
+
|
1225
|
+
.mdi-communication-swap-calls:before {
|
1226
|
+
content: "\e6fa";
|
1227
|
+
}
|
1228
|
+
|
1229
|
+
.mdi-communication-textsms:before {
|
1230
|
+
content: "\e6fb";
|
1231
|
+
}
|
1232
|
+
|
1233
|
+
.mdi-communication-voicemail:before {
|
1234
|
+
content: "\e6fc";
|
1235
|
+
}
|
1236
|
+
|
1237
|
+
.mdi-communication-vpn-key:before {
|
1238
|
+
content: "\e6fd";
|
1239
|
+
}
|
1240
|
+
|
1241
|
+
.mdi-content-add-box:before {
|
1242
|
+
content: "\e6fe";
|
1243
|
+
}
|
1244
|
+
|
1245
|
+
.mdi-content-add-circle-outline:before {
|
1246
|
+
content: "\e6ff";
|
1247
|
+
}
|
1248
|
+
|
1249
|
+
.mdi-content-add-circle:before {
|
1250
|
+
content: "\e700";
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
.mdi-content-add:before {
|
1254
|
+
content: "\e701";
|
1255
|
+
}
|
1256
|
+
|
1257
|
+
.mdi-content-archive:before {
|
1258
|
+
content: "\e702";
|
1259
|
+
}
|
1260
|
+
|
1261
|
+
.mdi-content-backspace:before {
|
1262
|
+
content: "\e703";
|
1263
|
+
}
|
1264
|
+
|
1265
|
+
.mdi-content-block:before {
|
1266
|
+
content: "\e704";
|
1267
|
+
}
|
1268
|
+
|
1269
|
+
.mdi-content-clear:before {
|
1270
|
+
content: "\e705";
|
1271
|
+
}
|
1272
|
+
|
1273
|
+
.mdi-content-content-copy:before {
|
1274
|
+
content: "\e706";
|
1275
|
+
}
|
1276
|
+
|
1277
|
+
.mdi-content-content-cut:before {
|
1278
|
+
content: "\e707";
|
1279
|
+
}
|
1280
|
+
|
1281
|
+
.mdi-content-content-paste:before {
|
1282
|
+
content: "\e708";
|
1283
|
+
}
|
1284
|
+
|
1285
|
+
.mdi-content-create:before {
|
1286
|
+
content: "\e709";
|
1287
|
+
}
|
1288
|
+
|
1289
|
+
.mdi-content-drafts:before {
|
1290
|
+
content: "\e70a";
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
.mdi-content-filter-list:before {
|
1294
|
+
content: "\e70b";
|
1295
|
+
}
|
1296
|
+
|
1297
|
+
.mdi-content-flag:before {
|
1298
|
+
content: "\e70c";
|
1299
|
+
}
|
1300
|
+
|
1301
|
+
.mdi-content-forward:before {
|
1302
|
+
content: "\e70d";
|
1303
|
+
}
|
1304
|
+
|
1305
|
+
.mdi-content-gesture:before {
|
1306
|
+
content: "\e70e";
|
1307
|
+
}
|
1308
|
+
|
1309
|
+
.mdi-content-inbox:before {
|
1310
|
+
content: "\e70f";
|
1311
|
+
}
|
1312
|
+
|
1313
|
+
.mdi-content-link:before {
|
1314
|
+
content: "\e710";
|
1315
|
+
}
|
1316
|
+
|
1317
|
+
.mdi-content-mail:before {
|
1318
|
+
content: "\e711";
|
1319
|
+
}
|
1320
|
+
|
1321
|
+
.mdi-content-markunread:before {
|
1322
|
+
content: "\e712";
|
1323
|
+
}
|
1324
|
+
|
1325
|
+
.mdi-content-redo:before {
|
1326
|
+
content: "\e713";
|
1327
|
+
}
|
1328
|
+
|
1329
|
+
.mdi-content-remove-circle-outline:before {
|
1330
|
+
content: "\e714";
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
.mdi-content-remove-circle:before {
|
1334
|
+
content: "\e715";
|
1335
|
+
}
|
1336
|
+
|
1337
|
+
.mdi-content-remove:before {
|
1338
|
+
content: "\e716";
|
1339
|
+
}
|
1340
|
+
|
1341
|
+
.mdi-content-reply-all:before {
|
1342
|
+
content: "\e717";
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
.mdi-content-reply:before {
|
1346
|
+
content: "\e718";
|
1347
|
+
}
|
1348
|
+
|
1349
|
+
.mdi-content-report:before {
|
1350
|
+
content: "\e719";
|
1351
|
+
}
|
1352
|
+
|
1353
|
+
.mdi-content-save:before {
|
1354
|
+
content: "\e71a";
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
.mdi-content-select-all:before {
|
1358
|
+
content: "\e71b";
|
1359
|
+
}
|
1360
|
+
|
1361
|
+
.mdi-content-send:before {
|
1362
|
+
content: "\e71c";
|
1363
|
+
}
|
1364
|
+
|
1365
|
+
.mdi-content-sort:before {
|
1366
|
+
content: "\e71d";
|
1367
|
+
}
|
1368
|
+
|
1369
|
+
.mdi-content-text-format:before {
|
1370
|
+
content: "\e71e";
|
1371
|
+
}
|
1372
|
+
|
1373
|
+
.mdi-content-undo:before {
|
1374
|
+
content: "\e71f";
|
1375
|
+
}
|
1376
|
+
|
1377
|
+
.mdi-editor-attach-file:before {
|
1378
|
+
content: "\e776";
|
1379
|
+
}
|
1380
|
+
|
1381
|
+
.mdi-editor-attach-money:before {
|
1382
|
+
content: "\e777";
|
1383
|
+
}
|
1384
|
+
|
1385
|
+
.mdi-editor-border-all:before {
|
1386
|
+
content: "\e778";
|
1387
|
+
}
|
1388
|
+
|
1389
|
+
.mdi-editor-border-bottom:before {
|
1390
|
+
content: "\e779";
|
1391
|
+
}
|
1392
|
+
|
1393
|
+
.mdi-editor-border-clear:before {
|
1394
|
+
content: "\e77a";
|
1395
|
+
}
|
1396
|
+
|
1397
|
+
.mdi-editor-border-color:before {
|
1398
|
+
content: "\e77b";
|
1399
|
+
}
|
1400
|
+
|
1401
|
+
.mdi-editor-border-horizontal:before {
|
1402
|
+
content: "\e77c";
|
1403
|
+
}
|
1404
|
+
|
1405
|
+
.mdi-editor-border-inner:before {
|
1406
|
+
content: "\e77d";
|
1407
|
+
}
|
1408
|
+
|
1409
|
+
.mdi-editor-border-left:before {
|
1410
|
+
content: "\e77e";
|
1411
|
+
}
|
1412
|
+
|
1413
|
+
.mdi-editor-border-outer:before {
|
1414
|
+
content: "\e77f";
|
1415
|
+
}
|
1416
|
+
|
1417
|
+
.mdi-editor-border-right:before {
|
1418
|
+
content: "\e780";
|
1419
|
+
}
|
1420
|
+
|
1421
|
+
.mdi-editor-border-style:before {
|
1422
|
+
content: "\e781";
|
1423
|
+
}
|
1424
|
+
|
1425
|
+
.mdi-editor-border-top:before {
|
1426
|
+
content: "\e782";
|
1427
|
+
}
|
1428
|
+
|
1429
|
+
.mdi-editor-border-vertical:before {
|
1430
|
+
content: "\e783";
|
1431
|
+
}
|
1432
|
+
|
1433
|
+
.mdi-editor-format-align-center:before {
|
1434
|
+
content: "\e784";
|
1435
|
+
}
|
1436
|
+
|
1437
|
+
.mdi-editor-format-align-justify:before {
|
1438
|
+
content: "\e785";
|
1439
|
+
}
|
1440
|
+
|
1441
|
+
.mdi-editor-format-align-left:before {
|
1442
|
+
content: "\e786";
|
1443
|
+
}
|
1444
|
+
|
1445
|
+
.mdi-editor-format-align-right:before {
|
1446
|
+
content: "\e787";
|
1447
|
+
}
|
1448
|
+
|
1449
|
+
.mdi-editor-format-bold:before {
|
1450
|
+
content: "\e788";
|
1451
|
+
}
|
1452
|
+
|
1453
|
+
.mdi-editor-format-clear:before {
|
1454
|
+
content: "\e789";
|
1455
|
+
}
|
1456
|
+
|
1457
|
+
.mdi-editor-format-color-fill:before {
|
1458
|
+
content: "\e78a";
|
1459
|
+
}
|
1460
|
+
|
1461
|
+
.mdi-editor-format-color-reset:before {
|
1462
|
+
content: "\e78b";
|
1463
|
+
}
|
1464
|
+
|
1465
|
+
.mdi-editor-format-color-text:before {
|
1466
|
+
content: "\e78c";
|
1467
|
+
}
|
1468
|
+
|
1469
|
+
.mdi-editor-format-indent-decrease:before {
|
1470
|
+
content: "\e78d";
|
1471
|
+
}
|
1472
|
+
|
1473
|
+
.mdi-editor-format-indent-increase:before {
|
1474
|
+
content: "\e78e";
|
1475
|
+
}
|
1476
|
+
|
1477
|
+
.mdi-editor-format-italic:before {
|
1478
|
+
content: "\e78f";
|
1479
|
+
}
|
1480
|
+
|
1481
|
+
.mdi-editor-format-line-spacing:before {
|
1482
|
+
content: "\e790";
|
1483
|
+
}
|
1484
|
+
|
1485
|
+
.mdi-editor-format-list-bulleted:before {
|
1486
|
+
content: "\e791";
|
1487
|
+
}
|
1488
|
+
|
1489
|
+
.mdi-editor-format-list-numbered:before {
|
1490
|
+
content: "\e792";
|
1491
|
+
}
|
1492
|
+
|
1493
|
+
.mdi-editor-format-paint:before {
|
1494
|
+
content: "\e793";
|
1495
|
+
}
|
1496
|
+
|
1497
|
+
.mdi-editor-format-quote:before {
|
1498
|
+
content: "\e794";
|
1499
|
+
}
|
1500
|
+
|
1501
|
+
.mdi-editor-format-size:before {
|
1502
|
+
content: "\e795";
|
1503
|
+
}
|
1504
|
+
|
1505
|
+
.mdi-editor-format-strikethrough:before {
|
1506
|
+
content: "\e796";
|
1507
|
+
}
|
1508
|
+
|
1509
|
+
.mdi-editor-format-textdirection-l-to-r:before {
|
1510
|
+
content: "\e797";
|
1511
|
+
}
|
1512
|
+
|
1513
|
+
.mdi-editor-format-textdirection-r-to-l:before {
|
1514
|
+
content: "\e798";
|
1515
|
+
}
|
1516
|
+
|
1517
|
+
.mdi-editor-format-underline:before {
|
1518
|
+
content: "\e799";
|
1519
|
+
}
|
1520
|
+
|
1521
|
+
.mdi-editor-functions:before {
|
1522
|
+
content: "\e79a";
|
1523
|
+
}
|
1524
|
+
|
1525
|
+
.mdi-editor-insert-chart:before {
|
1526
|
+
content: "\e79b";
|
1527
|
+
}
|
1528
|
+
|
1529
|
+
.mdi-editor-insert-comment:before {
|
1530
|
+
content: "\e79c";
|
1531
|
+
}
|
1532
|
+
|
1533
|
+
.mdi-editor-insert-drive-file:before {
|
1534
|
+
content: "\e79d";
|
1535
|
+
}
|
1536
|
+
|
1537
|
+
.mdi-editor-insert-emoticon:before {
|
1538
|
+
content: "\e79e";
|
1539
|
+
}
|
1540
|
+
|
1541
|
+
.mdi-editor-insert-invitation:before {
|
1542
|
+
content: "\e79f";
|
1543
|
+
}
|
1544
|
+
|
1545
|
+
.mdi-editor-insert-link:before {
|
1546
|
+
content: "\e7a0";
|
1547
|
+
}
|
1548
|
+
|
1549
|
+
.mdi-editor-insert-photo:before {
|
1550
|
+
content: "\e7a1";
|
1551
|
+
}
|
1552
|
+
|
1553
|
+
.mdi-editor-merge-type:before {
|
1554
|
+
content: "\e7a2";
|
1555
|
+
}
|
1556
|
+
|
1557
|
+
.mdi-editor-mode-comment:before {
|
1558
|
+
content: "\e7a3";
|
1559
|
+
}
|
1560
|
+
|
1561
|
+
.mdi-editor-mode-edit:before {
|
1562
|
+
content: "\e7a4";
|
1563
|
+
}
|
1564
|
+
|
1565
|
+
.mdi-editor-publish:before {
|
1566
|
+
content: "\e7a5";
|
1567
|
+
}
|
1568
|
+
|
1569
|
+
.mdi-editor-vertical-align-bottom:before {
|
1570
|
+
content: "\e7a6";
|
1571
|
+
}
|
1572
|
+
|
1573
|
+
.mdi-editor-vertical-align-center:before {
|
1574
|
+
content: "\e7a7";
|
1575
|
+
}
|
1576
|
+
|
1577
|
+
.mdi-editor-vertical-align-top:before {
|
1578
|
+
content: "\e7a8";
|
1579
|
+
}
|
1580
|
+
|
1581
|
+
.mdi-editor-wrap-text:before {
|
1582
|
+
content: "\e7a9";
|
1583
|
+
}
|
1584
|
+
|
1585
|
+
.mdi-file-attachment:before {
|
1586
|
+
content: "\e7aa";
|
1587
|
+
}
|
1588
|
+
|
1589
|
+
.mdi-file-cloud-circle:before {
|
1590
|
+
content: "\e7ab";
|
1591
|
+
}
|
1592
|
+
|
1593
|
+
.mdi-file-cloud-done:before {
|
1594
|
+
content: "\e7ac";
|
1595
|
+
}
|
1596
|
+
|
1597
|
+
.mdi-file-cloud-download:before {
|
1598
|
+
content: "\e7ad";
|
1599
|
+
}
|
1600
|
+
|
1601
|
+
.mdi-file-cloud-off:before {
|
1602
|
+
content: "\e7ae";
|
1603
|
+
}
|
1604
|
+
|
1605
|
+
.mdi-file-cloud-queue:before {
|
1606
|
+
content: "\e7af";
|
1607
|
+
}
|
1608
|
+
|
1609
|
+
.mdi-file-cloud-upload:before {
|
1610
|
+
content: "\e7b0";
|
1611
|
+
}
|
1612
|
+
|
1613
|
+
.mdi-file-cloud:before {
|
1614
|
+
content: "\e7b1";
|
1615
|
+
}
|
1616
|
+
|
1617
|
+
.mdi-file-file-download:before {
|
1618
|
+
content: "\e7b2";
|
1619
|
+
}
|
1620
|
+
|
1621
|
+
.mdi-file-file-upload:before {
|
1622
|
+
content: "\e7b3";
|
1623
|
+
}
|
1624
|
+
|
1625
|
+
.mdi-file-folder-open:before {
|
1626
|
+
content: "\e7b4";
|
1627
|
+
}
|
1628
|
+
|
1629
|
+
.mdi-file-folder-shared:before {
|
1630
|
+
content: "\e7b5";
|
1631
|
+
}
|
1632
|
+
|
1633
|
+
.mdi-file-folder:before {
|
1634
|
+
content: "\e7b6";
|
1635
|
+
}
|
1636
|
+
|
1637
|
+
.mdi-device-access-alarm:before {
|
1638
|
+
content: "\e720";
|
1639
|
+
}
|
1640
|
+
|
1641
|
+
.mdi-device-access-alarms:before {
|
1642
|
+
content: "\e721";
|
1643
|
+
}
|
1644
|
+
|
1645
|
+
.mdi-device-access-time:before {
|
1646
|
+
content: "\e722";
|
1647
|
+
}
|
1648
|
+
|
1649
|
+
.mdi-device-add-alarm:before {
|
1650
|
+
content: "\e723";
|
1651
|
+
}
|
1652
|
+
|
1653
|
+
.mdi-device-airplanemode-off:before {
|
1654
|
+
content: "\e724";
|
1655
|
+
}
|
1656
|
+
|
1657
|
+
.mdi-device-airplanemode-on:before {
|
1658
|
+
content: "\e725";
|
1659
|
+
}
|
1660
|
+
|
1661
|
+
.mdi-device-battery-20:before {
|
1662
|
+
content: "\e726";
|
1663
|
+
}
|
1664
|
+
|
1665
|
+
.mdi-device-battery-30:before {
|
1666
|
+
content: "\e727";
|
1667
|
+
}
|
1668
|
+
|
1669
|
+
.mdi-device-battery-50:before {
|
1670
|
+
content: "\e728";
|
1671
|
+
}
|
1672
|
+
|
1673
|
+
.mdi-device-battery-60:before {
|
1674
|
+
content: "\e729";
|
1675
|
+
}
|
1676
|
+
|
1677
|
+
.mdi-device-battery-80:before {
|
1678
|
+
content: "\e72a";
|
1679
|
+
}
|
1680
|
+
|
1681
|
+
.mdi-device-battery-90:before {
|
1682
|
+
content: "\e72b";
|
1683
|
+
}
|
1684
|
+
|
1685
|
+
.mdi-device-battery-alert:before {
|
1686
|
+
content: "\e72c";
|
1687
|
+
}
|
1688
|
+
|
1689
|
+
.mdi-device-battery-charging-20:before {
|
1690
|
+
content: "\e72d";
|
1691
|
+
}
|
1692
|
+
|
1693
|
+
.mdi-device-battery-charging-30:before {
|
1694
|
+
content: "\e72e";
|
1695
|
+
}
|
1696
|
+
|
1697
|
+
.mdi-device-battery-charging-50:before {
|
1698
|
+
content: "\e72f";
|
1699
|
+
}
|
1700
|
+
|
1701
|
+
.mdi-device-battery-charging-60:before {
|
1702
|
+
content: "\e730";
|
1703
|
+
}
|
1704
|
+
|
1705
|
+
.mdi-device-battery-charging-80:before {
|
1706
|
+
content: "\e731";
|
1707
|
+
}
|
1708
|
+
|
1709
|
+
.mdi-device-battery-charging-90:before {
|
1710
|
+
content: "\e732";
|
1711
|
+
}
|
1712
|
+
|
1713
|
+
.mdi-device-battery-charging-full:before {
|
1714
|
+
content: "\e733";
|
1715
|
+
}
|
1716
|
+
|
1717
|
+
.mdi-device-battery-full:before {
|
1718
|
+
content: "\e734";
|
1719
|
+
}
|
1720
|
+
|
1721
|
+
.mdi-device-battery-std:before {
|
1722
|
+
content: "\e735";
|
1723
|
+
}
|
1724
|
+
|
1725
|
+
.mdi-device-battery-unknown:before {
|
1726
|
+
content: "\e736";
|
1727
|
+
}
|
1728
|
+
|
1729
|
+
.mdi-device-bluetooth-connected:before {
|
1730
|
+
content: "\e737";
|
1731
|
+
}
|
1732
|
+
|
1733
|
+
.mdi-device-bluetooth-disabled:before {
|
1734
|
+
content: "\e738";
|
1735
|
+
}
|
1736
|
+
|
1737
|
+
.mdi-device-bluetooth-searching:before {
|
1738
|
+
content: "\e739";
|
1739
|
+
}
|
1740
|
+
|
1741
|
+
.mdi-device-bluetooth:before {
|
1742
|
+
content: "\e73a";
|
1743
|
+
}
|
1744
|
+
|
1745
|
+
.mdi-device-brightness-auto:before {
|
1746
|
+
content: "\e73b";
|
1747
|
+
}
|
1748
|
+
|
1749
|
+
.mdi-device-brightness-high:before {
|
1750
|
+
content: "\e73c";
|
1751
|
+
}
|
1752
|
+
|
1753
|
+
.mdi-device-brightness-low:before {
|
1754
|
+
content: "\e73d";
|
1755
|
+
}
|
1756
|
+
|
1757
|
+
.mdi-device-brightness-medium:before {
|
1758
|
+
content: "\e73e";
|
1759
|
+
}
|
1760
|
+
|
1761
|
+
.mdi-device-data-usage:before {
|
1762
|
+
content: "\e73f";
|
1763
|
+
}
|
1764
|
+
|
1765
|
+
.mdi-device-developer-mode:before {
|
1766
|
+
content: "\e740";
|
1767
|
+
}
|
1768
|
+
|
1769
|
+
.mdi-device-devices:before {
|
1770
|
+
content: "\e741";
|
1771
|
+
}
|
1772
|
+
|
1773
|
+
.mdi-device-dvr:before {
|
1774
|
+
content: "\e742";
|
1775
|
+
}
|
1776
|
+
|
1777
|
+
.mdi-device-gps-fixed:before {
|
1778
|
+
content: "\e743";
|
1779
|
+
}
|
1780
|
+
|
1781
|
+
.mdi-device-gps-not-fixed:before {
|
1782
|
+
content: "\e744";
|
1783
|
+
}
|
1784
|
+
|
1785
|
+
.mdi-device-gps-off:before {
|
1786
|
+
content: "\e745";
|
1787
|
+
}
|
1788
|
+
|
1789
|
+
.mdi-device-location-disabled:before {
|
1790
|
+
content: "\e746";
|
1791
|
+
}
|
1792
|
+
|
1793
|
+
.mdi-device-location-searching:before {
|
1794
|
+
content: "\e747";
|
1795
|
+
}
|
1796
|
+
|
1797
|
+
.mdi-device-multitrack-audio:before {
|
1798
|
+
content: "\e748";
|
1799
|
+
}
|
1800
|
+
|
1801
|
+
.mdi-device-network-cell:before {
|
1802
|
+
content: "\e749";
|
1803
|
+
}
|
1804
|
+
|
1805
|
+
.mdi-device-network-wifi:before {
|
1806
|
+
content: "\e74a";
|
1807
|
+
}
|
1808
|
+
|
1809
|
+
.mdi-device-nfc:before {
|
1810
|
+
content: "\e74b";
|
1811
|
+
}
|
1812
|
+
|
1813
|
+
.mdi-device-now-wallpaper:before {
|
1814
|
+
content: "\e74c";
|
1815
|
+
}
|
1816
|
+
|
1817
|
+
.mdi-device-now-widgets:before {
|
1818
|
+
content: "\e74d";
|
1819
|
+
}
|
1820
|
+
|
1821
|
+
.mdi-device-screen-lock-landscape:before {
|
1822
|
+
content: "\e74e";
|
1823
|
+
}
|
1824
|
+
|
1825
|
+
.mdi-device-screen-lock-portrait:before {
|
1826
|
+
content: "\e74f";
|
1827
|
+
}
|
1828
|
+
|
1829
|
+
.mdi-device-screen-lock-rotation:before {
|
1830
|
+
content: "\e750";
|
1831
|
+
}
|
1832
|
+
|
1833
|
+
.mdi-device-screen-rotation:before {
|
1834
|
+
content: "\e751";
|
1835
|
+
}
|
1836
|
+
|
1837
|
+
.mdi-device-sd-storage:before {
|
1838
|
+
content: "\e752";
|
1839
|
+
}
|
1840
|
+
|
1841
|
+
.mdi-device-settings-system-daydream:before {
|
1842
|
+
content: "\e753";
|
1843
|
+
}
|
1844
|
+
|
1845
|
+
.mdi-device-signal-cellular-0-bar:before {
|
1846
|
+
content: "\e754";
|
1847
|
+
}
|
1848
|
+
|
1849
|
+
.mdi-device-signal-cellular-1-bar:before {
|
1850
|
+
content: "\e755";
|
1851
|
+
}
|
1852
|
+
|
1853
|
+
.mdi-device-signal-cellular-2-bar:before {
|
1854
|
+
content: "\e756";
|
1855
|
+
}
|
1856
|
+
|
1857
|
+
.mdi-device-signal-cellular-3-bar:before {
|
1858
|
+
content: "\e757";
|
1859
|
+
}
|
1860
|
+
|
1861
|
+
.mdi-device-signal-cellular-4-bar:before {
|
1862
|
+
content: "\e758";
|
1863
|
+
}
|
1864
|
+
|
1865
|
+
.mdi-signal-wifi-statusbar-connected-no-internet-after:before {
|
1866
|
+
content: "\e8f6";
|
1867
|
+
}
|
1868
|
+
|
1869
|
+
.mdi-device-signal-cellular-connected-no-internet-0-bar:before {
|
1870
|
+
content: "\e759";
|
1871
|
+
}
|
1872
|
+
|
1873
|
+
.mdi-device-signal-cellular-connected-no-internet-1-bar:before {
|
1874
|
+
content: "\e75a";
|
1875
|
+
}
|
1876
|
+
|
1877
|
+
.mdi-device-signal-cellular-connected-no-internet-2-bar:before {
|
1878
|
+
content: "\e75b";
|
1879
|
+
}
|
1880
|
+
|
1881
|
+
.mdi-device-signal-cellular-connected-no-internet-3-bar:before {
|
1882
|
+
content: "\e75c";
|
1883
|
+
}
|
1884
|
+
|
1885
|
+
.mdi-device-signal-cellular-connected-no-internet-4-bar:before {
|
1886
|
+
content: "\e75d";
|
1887
|
+
}
|
1888
|
+
|
1889
|
+
.mdi-device-signal-cellular-no-sim:before {
|
1890
|
+
content: "\e75e";
|
1891
|
+
}
|
1892
|
+
|
1893
|
+
.mdi-device-signal-cellular-null:before {
|
1894
|
+
content: "\e75f";
|
1895
|
+
}
|
1896
|
+
|
1897
|
+
.mdi-device-signal-cellular-off:before {
|
1898
|
+
content: "\e760";
|
1899
|
+
}
|
1900
|
+
|
1901
|
+
.mdi-device-signal-wifi-0-bar:before {
|
1902
|
+
content: "\e761";
|
1903
|
+
}
|
1904
|
+
|
1905
|
+
.mdi-device-signal-wifi-1-bar:before {
|
1906
|
+
content: "\e762";
|
1907
|
+
}
|
1908
|
+
|
1909
|
+
.mdi-device-signal-wifi-2-bar:before {
|
1910
|
+
content: "\e763";
|
1911
|
+
}
|
1912
|
+
|
1913
|
+
.mdi-device-signal-wifi-3-bar:before {
|
1914
|
+
content: "\e764";
|
1915
|
+
}
|
1916
|
+
|
1917
|
+
.mdi-device-signal-wifi-4-bar:before {
|
1918
|
+
content: "\e765";
|
1919
|
+
}
|
1920
|
+
|
1921
|
+
.mdi-device-signal-wifi-off:before {
|
1922
|
+
content: "\e766";
|
1923
|
+
}
|
1924
|
+
|
1925
|
+
.mdi-device-signal-wifi-statusbar-1-bar:before {
|
1926
|
+
content: "\e767";
|
1927
|
+
}
|
1928
|
+
|
1929
|
+
.mdi-device-signal-wifi-statusbar-2-bar:before {
|
1930
|
+
content: "\e768";
|
1931
|
+
}
|
1932
|
+
|
1933
|
+
.mdi-device-signal-wifi-statusbar-3-bar:before {
|
1934
|
+
content: "\e769";
|
1935
|
+
}
|
1936
|
+
|
1937
|
+
.mdi-device-signal-wifi-statusbar-4-bar:before {
|
1938
|
+
content: "\e76a";
|
1939
|
+
}
|
1940
|
+
|
1941
|
+
.mdi-device-signal-wifi-statusbar-connected-no-internet-:before {
|
1942
|
+
content: "\e76b";
|
1943
|
+
}
|
1944
|
+
|
1945
|
+
.mdi-device-signal-wifi-statusbar-connected-no-internet:before {
|
1946
|
+
content: "\e76f";
|
1947
|
+
}
|
1948
|
+
|
1949
|
+
.mdi-device-signal-wifi-statusbar-connected-no-internet-2:before {
|
1950
|
+
content: "\e76c";
|
1951
|
+
}
|
1952
|
+
|
1953
|
+
.mdi-device-signal-wifi-statusbar-connected-no-internet-3:before {
|
1954
|
+
content: "\e76d";
|
1955
|
+
}
|
1956
|
+
|
1957
|
+
.mdi-device-signal-wifi-statusbar-connected-no-internet-4:before {
|
1958
|
+
content: "\e76e";
|
1959
|
+
}
|
1960
|
+
|
1961
|
+
.mdi-signal-wifi-statusbar-not-connected-after:before {
|
1962
|
+
content: "\e8f7";
|
1963
|
+
}
|
1964
|
+
|
1965
|
+
.mdi-device-signal-wifi-statusbar-not-connected:before {
|
1966
|
+
content: "\e770";
|
1967
|
+
}
|
1968
|
+
|
1969
|
+
.mdi-device-signal-wifi-statusbar-null:before {
|
1970
|
+
content: "\e771";
|
1971
|
+
}
|
1972
|
+
|
1973
|
+
.mdi-device-storage:before {
|
1974
|
+
content: "\e772";
|
1975
|
+
}
|
1976
|
+
|
1977
|
+
.mdi-device-usb:before {
|
1978
|
+
content: "\e773";
|
1979
|
+
}
|
1980
|
+
|
1981
|
+
.mdi-device-wifi-lock:before {
|
1982
|
+
content: "\e774";
|
1983
|
+
}
|
1984
|
+
|
1985
|
+
.mdi-device-wifi-tethering:before {
|
1986
|
+
content: "\e775";
|
1987
|
+
}
|
1988
|
+
|
1989
|
+
.mdi-hardware-cast-connected:before {
|
1990
|
+
content: "\e7b7";
|
1991
|
+
}
|
1992
|
+
|
1993
|
+
.mdi-hardware-cast:before {
|
1994
|
+
content: "\e7b8";
|
1995
|
+
}
|
1996
|
+
|
1997
|
+
.mdi-hardware-computer:before {
|
1998
|
+
content: "\e7b9";
|
1999
|
+
}
|
2000
|
+
|
2001
|
+
.mdi-hardware-desktop-mac:before {
|
2002
|
+
content: "\e7ba";
|
2003
|
+
}
|
2004
|
+
|
2005
|
+
.mdi-hardware-desktop-windows:before {
|
2006
|
+
content: "\e7bb";
|
2007
|
+
}
|
2008
|
+
|
2009
|
+
.mdi-hardware-dock:before {
|
2010
|
+
content: "\e7bc";
|
2011
|
+
}
|
2012
|
+
|
2013
|
+
.mdi-hardware-gamepad:before {
|
2014
|
+
content: "\e7bd";
|
2015
|
+
}
|
2016
|
+
|
2017
|
+
.mdi-hardware-headset-mic:before {
|
2018
|
+
content: "\e7be";
|
2019
|
+
}
|
2020
|
+
|
2021
|
+
.mdi-hardware-headset:before {
|
2022
|
+
content: "\e7bf";
|
2023
|
+
}
|
2024
|
+
|
2025
|
+
.mdi-hardware-keyboard-alt:before {
|
2026
|
+
content: "\e7c0";
|
2027
|
+
}
|
2028
|
+
|
2029
|
+
.mdi-hardware-keyboard-arrow-down:before {
|
2030
|
+
content: "\e7c1";
|
2031
|
+
}
|
2032
|
+
|
2033
|
+
.mdi-hardware-keyboard-arrow-left:before {
|
2034
|
+
content: "\e7c2";
|
2035
|
+
}
|
2036
|
+
|
2037
|
+
.mdi-hardware-keyboard-arrow-right:before {
|
2038
|
+
content: "\e7c3";
|
2039
|
+
}
|
2040
|
+
|
2041
|
+
.mdi-hardware-keyboard-arrow-up:before {
|
2042
|
+
content: "\e7c4";
|
2043
|
+
}
|
2044
|
+
|
2045
|
+
.mdi-hardware-keyboard-backspace:before {
|
2046
|
+
content: "\e7c5";
|
2047
|
+
}
|
2048
|
+
|
2049
|
+
.mdi-hardware-keyboard-capslock:before {
|
2050
|
+
content: "\e7c6";
|
2051
|
+
}
|
2052
|
+
|
2053
|
+
.mdi-hardware-keyboard-control:before {
|
2054
|
+
content: "\e7c7";
|
2055
|
+
}
|
2056
|
+
|
2057
|
+
.mdi-hardware-keyboard-hide:before {
|
2058
|
+
content: "\e7c8";
|
2059
|
+
}
|
2060
|
+
|
2061
|
+
.mdi-hardware-keyboard-return:before {
|
2062
|
+
content: "\e7c9";
|
2063
|
+
}
|
2064
|
+
|
2065
|
+
.mdi-hardware-keyboard-tab:before {
|
2066
|
+
content: "\e7ca";
|
2067
|
+
}
|
2068
|
+
|
2069
|
+
.mdi-hardware-keyboard-voice:before {
|
2070
|
+
content: "\e7cb";
|
2071
|
+
}
|
2072
|
+
|
2073
|
+
.mdi-hardware-keyboard:before {
|
2074
|
+
content: "\e7cc";
|
2075
|
+
}
|
2076
|
+
|
2077
|
+
.mdi-hardware-laptop-chromebook:before {
|
2078
|
+
content: "\e7cd";
|
2079
|
+
}
|
2080
|
+
|
2081
|
+
.mdi-hardware-laptop-mac:before {
|
2082
|
+
content: "\e7ce";
|
2083
|
+
}
|
2084
|
+
|
2085
|
+
.mdi-hardware-laptop-windows:before {
|
2086
|
+
content: "\e7cf";
|
2087
|
+
}
|
2088
|
+
|
2089
|
+
.mdi-hardware-laptop:before {
|
2090
|
+
content: "\e7d0";
|
2091
|
+
}
|
2092
|
+
|
2093
|
+
.mdi-hardware-memory:before {
|
2094
|
+
content: "\e7d1";
|
2095
|
+
}
|
2096
|
+
|
2097
|
+
.mdi-hardware-mouse:before {
|
2098
|
+
content: "\e7d2";
|
2099
|
+
}
|
2100
|
+
|
2101
|
+
.mdi-hardware-phone-android:before {
|
2102
|
+
content: "\e7d3";
|
2103
|
+
}
|
2104
|
+
|
2105
|
+
.mdi-hardware-phone-iphone:before {
|
2106
|
+
content: "\e7d4";
|
2107
|
+
}
|
2108
|
+
|
2109
|
+
.mdi-hardware-phonelink-off:before {
|
2110
|
+
content: "\e7d5";
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
.mdi-hardware-phonelink:before {
|
2114
|
+
content: "\e7d6";
|
2115
|
+
}
|
2116
|
+
|
2117
|
+
.mdi-hardware-security:before {
|
2118
|
+
content: "\e7d7";
|
2119
|
+
}
|
2120
|
+
|
2121
|
+
.mdi-hardware-sim-card:before {
|
2122
|
+
content: "\e7d8";
|
2123
|
+
}
|
2124
|
+
|
2125
|
+
.mdi-hardware-smartphone:before {
|
2126
|
+
content: "\e7d9";
|
2127
|
+
}
|
2128
|
+
|
2129
|
+
.mdi-hardware-speaker:before {
|
2130
|
+
content: "\e7da";
|
2131
|
+
}
|
2132
|
+
|
2133
|
+
.mdi-hardware-tablet-android:before {
|
2134
|
+
content: "\e7db";
|
2135
|
+
}
|
2136
|
+
|
2137
|
+
.mdi-hardware-tablet-mac:before {
|
2138
|
+
content: "\e7dc";
|
2139
|
+
}
|
2140
|
+
|
2141
|
+
.mdi-hardware-tablet:before {
|
2142
|
+
content: "\e7dd";
|
2143
|
+
}
|
2144
|
+
|
2145
|
+
.mdi-hardware-tv:before {
|
2146
|
+
content: "\e7de";
|
2147
|
+
}
|
2148
|
+
|
2149
|
+
.mdi-hardware-watch:before {
|
2150
|
+
content: "\e7df";
|
2151
|
+
}
|
2152
|
+
|
2153
|
+
.mdi-image-add-to-photos:before {
|
2154
|
+
content: "\e7e0";
|
2155
|
+
}
|
2156
|
+
|
2157
|
+
.mdi-image-adjust:before {
|
2158
|
+
content: "\e7e1";
|
2159
|
+
}
|
2160
|
+
|
2161
|
+
.mdi-image-assistant-photo:before {
|
2162
|
+
content: "\e7e2";
|
2163
|
+
}
|
2164
|
+
|
2165
|
+
.mdi-image-audiotrack:before {
|
2166
|
+
content: "\e7e3";
|
2167
|
+
}
|
2168
|
+
|
2169
|
+
.mdi-image-blur-circular:before {
|
2170
|
+
content: "\e7e4";
|
2171
|
+
}
|
2172
|
+
|
2173
|
+
.mdi-image-blur-linear:before {
|
2174
|
+
content: "\e7e5";
|
2175
|
+
}
|
2176
|
+
|
2177
|
+
.mdi-image-blur-off:before {
|
2178
|
+
content: "\e7e6";
|
2179
|
+
}
|
2180
|
+
|
2181
|
+
.mdi-image-blur-on:before {
|
2182
|
+
content: "\e7e7";
|
2183
|
+
}
|
2184
|
+
|
2185
|
+
.mdi-image-brightness-1:before {
|
2186
|
+
content: "\e7e8";
|
2187
|
+
}
|
2188
|
+
|
2189
|
+
.mdi-image-brightness-2:before {
|
2190
|
+
content: "\e7e9";
|
2191
|
+
}
|
2192
|
+
|
2193
|
+
.mdi-image-brightness-3:before {
|
2194
|
+
content: "\e7ea";
|
2195
|
+
}
|
2196
|
+
|
2197
|
+
.mdi-image-brightness-4:before {
|
2198
|
+
content: "\e7eb";
|
2199
|
+
}
|
2200
|
+
|
2201
|
+
.mdi-image-brightness-5:before {
|
2202
|
+
content: "\e7ec";
|
2203
|
+
}
|
2204
|
+
|
2205
|
+
.mdi-image-brightness-6:before {
|
2206
|
+
content: "\e7ed";
|
2207
|
+
}
|
2208
|
+
|
2209
|
+
.mdi-image-brightness-7:before {
|
2210
|
+
content: "\e7ee";
|
2211
|
+
}
|
2212
|
+
|
2213
|
+
.mdi-image-brush:before {
|
2214
|
+
content: "\e7ef";
|
2215
|
+
}
|
2216
|
+
|
2217
|
+
.mdi-image-camera-alt:before {
|
2218
|
+
content: "\e7f0";
|
2219
|
+
}
|
2220
|
+
|
2221
|
+
.mdi-image-camera-front:before {
|
2222
|
+
content: "\e7f1";
|
2223
|
+
}
|
2224
|
+
|
2225
|
+
.mdi-image-camera-rear:before {
|
2226
|
+
content: "\e7f2";
|
2227
|
+
}
|
2228
|
+
|
2229
|
+
.mdi-image-camera-roll:before {
|
2230
|
+
content: "\e7f3";
|
2231
|
+
}
|
2232
|
+
|
2233
|
+
.mdi-image-camera:before {
|
2234
|
+
content: "\e7f4";
|
2235
|
+
}
|
2236
|
+
|
2237
|
+
.mdi-image-center-focus-strong:before {
|
2238
|
+
content: "\e7f5";
|
2239
|
+
}
|
2240
|
+
|
2241
|
+
.mdi-image-center-focus-weak:before {
|
2242
|
+
content: "\e7f6";
|
2243
|
+
}
|
2244
|
+
|
2245
|
+
.mdi-image-collections:before {
|
2246
|
+
content: "\e7f7";
|
2247
|
+
}
|
2248
|
+
|
2249
|
+
.mdi-image-color-lens:before {
|
2250
|
+
content: "\e7f8";
|
2251
|
+
}
|
2252
|
+
|
2253
|
+
.mdi-image-colorize:before {
|
2254
|
+
content: "\e7f9";
|
2255
|
+
}
|
2256
|
+
|
2257
|
+
.mdi-image-compare:before {
|
2258
|
+
content: "\e7fa";
|
2259
|
+
}
|
2260
|
+
|
2261
|
+
.mdi-image-control-point-duplicate:before {
|
2262
|
+
content: "\e7fb";
|
2263
|
+
}
|
2264
|
+
|
2265
|
+
.mdi-image-control-point:before {
|
2266
|
+
content: "\e7fc";
|
2267
|
+
}
|
2268
|
+
|
2269
|
+
.mdi-image-crop-3-2:before {
|
2270
|
+
content: "\e7fd";
|
2271
|
+
}
|
2272
|
+
|
2273
|
+
.mdi-image-crop-5-4:before {
|
2274
|
+
content: "\e7fe";
|
2275
|
+
}
|
2276
|
+
|
2277
|
+
.mdi-image-crop-7-5:before {
|
2278
|
+
content: "\e7ff";
|
2279
|
+
}
|
2280
|
+
|
2281
|
+
.mdi-image-crop-16-9:before {
|
2282
|
+
content: "\e800";
|
2283
|
+
}
|
2284
|
+
|
2285
|
+
.mdi-image-crop-din:before {
|
2286
|
+
content: "\e801";
|
2287
|
+
}
|
2288
|
+
|
2289
|
+
.mdi-image-crop-free:before {
|
2290
|
+
content: "\e802";
|
2291
|
+
}
|
2292
|
+
|
2293
|
+
.mdi-image-crop-landscape:before {
|
2294
|
+
content: "\e803";
|
2295
|
+
}
|
2296
|
+
|
2297
|
+
.mdi-image-crop-original:before {
|
2298
|
+
content: "\e804";
|
2299
|
+
}
|
2300
|
+
|
2301
|
+
.mdi-image-crop-portrait:before {
|
2302
|
+
content: "\e805";
|
2303
|
+
}
|
2304
|
+
|
2305
|
+
.mdi-image-crop-square:before {
|
2306
|
+
content: "\e806";
|
2307
|
+
}
|
2308
|
+
|
2309
|
+
.mdi-image-crop:before {
|
2310
|
+
content: "\e807";
|
2311
|
+
}
|
2312
|
+
|
2313
|
+
.mdi-image-dehaze:before {
|
2314
|
+
content: "\e808";
|
2315
|
+
}
|
2316
|
+
|
2317
|
+
.mdi-image-details:before {
|
2318
|
+
content: "\e809";
|
2319
|
+
}
|
2320
|
+
|
2321
|
+
.mdi-image-edit:before {
|
2322
|
+
content: "\e80a";
|
2323
|
+
}
|
2324
|
+
|
2325
|
+
.mdi-image-exposure-minus-1:before {
|
2326
|
+
content: "\e80b";
|
2327
|
+
}
|
2328
|
+
|
2329
|
+
.mdi-image-exposure-minus-2:before {
|
2330
|
+
content: "\e80c";
|
2331
|
+
}
|
2332
|
+
|
2333
|
+
.mdi-image-exposure-plus-1:before {
|
2334
|
+
content: "\e80d";
|
2335
|
+
}
|
2336
|
+
|
2337
|
+
.mdi-image-exposure-plus-2:before {
|
2338
|
+
content: "\e80e";
|
2339
|
+
}
|
2340
|
+
|
2341
|
+
.mdi-image-exposure-zero:before {
|
2342
|
+
content: "\e80f";
|
2343
|
+
}
|
2344
|
+
|
2345
|
+
.mdi-image-exposure:before {
|
2346
|
+
content: "\e810";
|
2347
|
+
}
|
2348
|
+
|
2349
|
+
.mdi-image-filter-1:before {
|
2350
|
+
content: "\e811";
|
2351
|
+
}
|
2352
|
+
|
2353
|
+
.mdi-image-filter-2:before {
|
2354
|
+
content: "\e812";
|
2355
|
+
}
|
2356
|
+
|
2357
|
+
.mdi-image-filter-3:before {
|
2358
|
+
content: "\e813";
|
2359
|
+
}
|
2360
|
+
|
2361
|
+
.mdi-image-filter-4:before {
|
2362
|
+
content: "\e814";
|
2363
|
+
}
|
2364
|
+
|
2365
|
+
.mdi-image-filter-5:before {
|
2366
|
+
content: "\e815";
|
2367
|
+
}
|
2368
|
+
|
2369
|
+
.mdi-image-filter-6:before {
|
2370
|
+
content: "\e816";
|
2371
|
+
}
|
2372
|
+
|
2373
|
+
.mdi-image-filter-7:before {
|
2374
|
+
content: "\e817";
|
2375
|
+
}
|
2376
|
+
|
2377
|
+
.mdi-image-filter-8:before {
|
2378
|
+
content: "\e818";
|
2379
|
+
}
|
2380
|
+
|
2381
|
+
.mdi-image-filter-9-plus:before {
|
2382
|
+
content: "\e819";
|
2383
|
+
}
|
2384
|
+
|
2385
|
+
.mdi-image-filter-9:before {
|
2386
|
+
content: "\e81a";
|
2387
|
+
}
|
2388
|
+
|
2389
|
+
.mdi-image-filter-b-and-w:before {
|
2390
|
+
content: "\e81b";
|
2391
|
+
}
|
2392
|
+
|
2393
|
+
.mdi-image-filter-center-focus:before {
|
2394
|
+
content: "\e81c";
|
2395
|
+
}
|
2396
|
+
|
2397
|
+
.mdi-image-filter-drama:before {
|
2398
|
+
content: "\e81d";
|
2399
|
+
}
|
2400
|
+
|
2401
|
+
.mdi-image-filter-frames:before {
|
2402
|
+
content: "\e81e";
|
2403
|
+
}
|
2404
|
+
|
2405
|
+
.mdi-image-filter-hdr:before {
|
2406
|
+
content: "\e81f";
|
2407
|
+
}
|
2408
|
+
|
2409
|
+
.mdi-image-filter-none:before {
|
2410
|
+
content: "\e820";
|
2411
|
+
}
|
2412
|
+
|
2413
|
+
.mdi-image-filter-tilt-shift:before {
|
2414
|
+
content: "\e821";
|
2415
|
+
}
|
2416
|
+
|
2417
|
+
.mdi-image-filter-vintage:before {
|
2418
|
+
content: "\e822";
|
2419
|
+
}
|
2420
|
+
|
2421
|
+
.mdi-image-filter:before {
|
2422
|
+
content: "\e823";
|
2423
|
+
}
|
2424
|
+
|
2425
|
+
.mdi-image-flare:before {
|
2426
|
+
content: "\e824";
|
2427
|
+
}
|
2428
|
+
|
2429
|
+
.mdi-image-flash-auto:before {
|
2430
|
+
content: "\e825";
|
2431
|
+
}
|
2432
|
+
|
2433
|
+
.mdi-image-flash-off:before {
|
2434
|
+
content: "\e826";
|
2435
|
+
}
|
2436
|
+
|
2437
|
+
.mdi-image-flash-on:before {
|
2438
|
+
content: "\e827";
|
2439
|
+
}
|
2440
|
+
|
2441
|
+
.mdi-image-flip:before {
|
2442
|
+
content: "\e828";
|
2443
|
+
}
|
2444
|
+
|
2445
|
+
.mdi-image-gradient:before {
|
2446
|
+
content: "\e829";
|
2447
|
+
}
|
2448
|
+
|
2449
|
+
.mdi-image-grain:before {
|
2450
|
+
content: "\e82a";
|
2451
|
+
}
|
2452
|
+
|
2453
|
+
.mdi-image-grid-off:before {
|
2454
|
+
content: "\e82b";
|
2455
|
+
}
|
2456
|
+
|
2457
|
+
.mdi-image-grid-on:before {
|
2458
|
+
content: "\e82c";
|
2459
|
+
}
|
2460
|
+
|
2461
|
+
.mdi-image-hdr-off:before {
|
2462
|
+
content: "\e82d";
|
2463
|
+
}
|
2464
|
+
|
2465
|
+
.mdi-image-hdr-on:before {
|
2466
|
+
content: "\e82e";
|
2467
|
+
}
|
2468
|
+
|
2469
|
+
.mdi-image-hdr-strong:before {
|
2470
|
+
content: "\e82f";
|
2471
|
+
}
|
2472
|
+
|
2473
|
+
.mdi-image-hdr-weak:before {
|
2474
|
+
content: "\e830";
|
2475
|
+
}
|
2476
|
+
|
2477
|
+
.mdi-image-healing:before {
|
2478
|
+
content: "\e831";
|
2479
|
+
}
|
2480
|
+
|
2481
|
+
.mdi-image-image-aspect-ratio:before {
|
2482
|
+
content: "\e832";
|
2483
|
+
}
|
2484
|
+
|
2485
|
+
.mdi-image-image:before {
|
2486
|
+
content: "\e833";
|
2487
|
+
}
|
2488
|
+
|
2489
|
+
.mdi-image-iso:before {
|
2490
|
+
content: "\e834";
|
2491
|
+
}
|
2492
|
+
|
2493
|
+
.mdi-image-landscape:before {
|
2494
|
+
content: "\e835";
|
2495
|
+
}
|
2496
|
+
|
2497
|
+
.mdi-image-leak-add:before {
|
2498
|
+
content: "\e836";
|
2499
|
+
}
|
2500
|
+
|
2501
|
+
.mdi-image-leak-remove:before {
|
2502
|
+
content: "\e837";
|
2503
|
+
}
|
2504
|
+
|
2505
|
+
.mdi-image-lens:before {
|
2506
|
+
content: "\e838";
|
2507
|
+
}
|
2508
|
+
|
2509
|
+
.mdi-image-looks-3:before {
|
2510
|
+
content: "\e839";
|
2511
|
+
}
|
2512
|
+
|
2513
|
+
.mdi-image-looks-4:before {
|
2514
|
+
content: "\e83a";
|
2515
|
+
}
|
2516
|
+
|
2517
|
+
.mdi-image-looks-5:before {
|
2518
|
+
content: "\e83b";
|
2519
|
+
}
|
2520
|
+
|
2521
|
+
.mdi-image-looks-6:before {
|
2522
|
+
content: "\e83c";
|
2523
|
+
}
|
2524
|
+
|
2525
|
+
.mdi-image-looks-one:before {
|
2526
|
+
content: "\e83d";
|
2527
|
+
}
|
2528
|
+
|
2529
|
+
.mdi-image-looks-two:before {
|
2530
|
+
content: "\e83e";
|
2531
|
+
}
|
2532
|
+
|
2533
|
+
.mdi-image-looks:before {
|
2534
|
+
content: "\e83f";
|
2535
|
+
}
|
2536
|
+
|
2537
|
+
.mdi-image-loupe:before {
|
2538
|
+
content: "\e840";
|
2539
|
+
}
|
2540
|
+
|
2541
|
+
.mdi-image-movie-creation:before {
|
2542
|
+
content: "\e841";
|
2543
|
+
}
|
2544
|
+
|
2545
|
+
.mdi-image-nature-people:before {
|
2546
|
+
content: "\e842";
|
2547
|
+
}
|
2548
|
+
|
2549
|
+
.mdi-image-nature:before {
|
2550
|
+
content: "\e843";
|
2551
|
+
}
|
2552
|
+
|
2553
|
+
.mdi-image-navigate-before:before {
|
2554
|
+
content: "\e844";
|
2555
|
+
}
|
2556
|
+
|
2557
|
+
.mdi-image-navigate-next:before {
|
2558
|
+
content: "\e845";
|
2559
|
+
}
|
2560
|
+
|
2561
|
+
.mdi-image-palette:before {
|
2562
|
+
content: "\e846";
|
2563
|
+
}
|
2564
|
+
|
2565
|
+
.mdi-image-panorama-fisheye:before {
|
2566
|
+
content: "\e847";
|
2567
|
+
}
|
2568
|
+
|
2569
|
+
.mdi-image-panorama-horizontal:before {
|
2570
|
+
content: "\e848";
|
2571
|
+
}
|
2572
|
+
|
2573
|
+
.mdi-image-panorama-vertical:before {
|
2574
|
+
content: "\e849";
|
2575
|
+
}
|
2576
|
+
|
2577
|
+
.mdi-image-panorama-wide-angle:before {
|
2578
|
+
content: "\e84a";
|
2579
|
+
}
|
2580
|
+
|
2581
|
+
.mdi-image-panorama:before {
|
2582
|
+
content: "\e84b";
|
2583
|
+
}
|
2584
|
+
|
2585
|
+
.mdi-image-photo-album:before {
|
2586
|
+
content: "\e84c";
|
2587
|
+
}
|
2588
|
+
|
2589
|
+
.mdi-image-photo-camera:before {
|
2590
|
+
content: "\e84d";
|
2591
|
+
}
|
2592
|
+
|
2593
|
+
.mdi-image-photo-library:before {
|
2594
|
+
content: "\e84e";
|
2595
|
+
}
|
2596
|
+
|
2597
|
+
.mdi-image-photo:before {
|
2598
|
+
content: "\e84f";
|
2599
|
+
}
|
2600
|
+
|
2601
|
+
.mdi-image-portrait:before {
|
2602
|
+
content: "\e850";
|
2603
|
+
}
|
2604
|
+
|
2605
|
+
.mdi-image-remove-red-eye:before {
|
2606
|
+
content: "\e851";
|
2607
|
+
}
|
2608
|
+
|
2609
|
+
.mdi-image-rotate-left:before {
|
2610
|
+
content: "\e852";
|
2611
|
+
}
|
2612
|
+
|
2613
|
+
.mdi-image-rotate-right:before {
|
2614
|
+
content: "\e853";
|
2615
|
+
}
|
2616
|
+
|
2617
|
+
.mdi-image-slideshow:before {
|
2618
|
+
content: "\e854";
|
2619
|
+
}
|
2620
|
+
|
2621
|
+
.mdi-image-straighten:before {
|
2622
|
+
content: "\e855";
|
2623
|
+
}
|
2624
|
+
|
2625
|
+
.mdi-image-style:before {
|
2626
|
+
content: "\e856";
|
2627
|
+
}
|
2628
|
+
|
2629
|
+
.mdi-image-switch-camera:before {
|
2630
|
+
content: "\e857";
|
2631
|
+
}
|
2632
|
+
|
2633
|
+
.mdi-image-switch-video:before {
|
2634
|
+
content: "\e858";
|
2635
|
+
}
|
2636
|
+
|
2637
|
+
.mdi-image-tag-faces:before {
|
2638
|
+
content: "\e859";
|
2639
|
+
}
|
2640
|
+
|
2641
|
+
.mdi-image-texture:before {
|
2642
|
+
content: "\e85a";
|
2643
|
+
}
|
2644
|
+
|
2645
|
+
.mdi-image-timelapse:before {
|
2646
|
+
content: "\e85b";
|
2647
|
+
}
|
2648
|
+
|
2649
|
+
.mdi-image-timer-3:before {
|
2650
|
+
content: "\e85c";
|
2651
|
+
}
|
2652
|
+
|
2653
|
+
.mdi-image-timer-10:before {
|
2654
|
+
content: "\e85d";
|
2655
|
+
}
|
2656
|
+
|
2657
|
+
.mdi-image-timer-auto:before {
|
2658
|
+
content: "\e85e";
|
2659
|
+
}
|
2660
|
+
|
2661
|
+
.mdi-image-timer-off:before {
|
2662
|
+
content: "\e85f";
|
2663
|
+
}
|
2664
|
+
|
2665
|
+
.mdi-image-timer:before {
|
2666
|
+
content: "\e860";
|
2667
|
+
}
|
2668
|
+
|
2669
|
+
.mdi-image-tonality:before {
|
2670
|
+
content: "\e861";
|
2671
|
+
}
|
2672
|
+
|
2673
|
+
.mdi-image-transform:before {
|
2674
|
+
content: "\e862";
|
2675
|
+
}
|
2676
|
+
|
2677
|
+
.mdi-image-tune:before {
|
2678
|
+
content: "\e863";
|
2679
|
+
}
|
2680
|
+
|
2681
|
+
.mdi-image-wb-auto:before {
|
2682
|
+
content: "\e864";
|
2683
|
+
}
|
2684
|
+
|
2685
|
+
.mdi-image-wb-cloudy:before {
|
2686
|
+
content: "\e865";
|
2687
|
+
}
|
2688
|
+
|
2689
|
+
.mdi-image-wb-incandescent:before {
|
2690
|
+
content: "\e866";
|
2691
|
+
}
|
2692
|
+
|
2693
|
+
.mdi-image-wb-irradescent:before {
|
2694
|
+
content: "\e867";
|
2695
|
+
}
|
2696
|
+
|
2697
|
+
.mdi-image-wb-sunny:before {
|
2698
|
+
content: "\e868";
|
2699
|
+
}
|
2700
|
+
|
2701
|
+
.mdi-maps-beenhere:before {
|
2702
|
+
content: "\e869";
|
2703
|
+
}
|
2704
|
+
|
2705
|
+
.mdi-maps-directions-bike:before {
|
2706
|
+
content: "\e86a";
|
2707
|
+
}
|
2708
|
+
|
2709
|
+
.mdi-maps-directions-bus:before {
|
2710
|
+
content: "\e86b";
|
2711
|
+
}
|
2712
|
+
|
2713
|
+
.mdi-maps-directions-car:before {
|
2714
|
+
content: "\e86c";
|
2715
|
+
}
|
2716
|
+
|
2717
|
+
.mdi-maps-directions-ferry:before {
|
2718
|
+
content: "\e86d";
|
2719
|
+
}
|
2720
|
+
|
2721
|
+
.mdi-maps-directions-subway:before {
|
2722
|
+
content: "\e86e";
|
2723
|
+
}
|
2724
|
+
|
2725
|
+
.mdi-maps-directions-train:before {
|
2726
|
+
content: "\e86f";
|
2727
|
+
}
|
2728
|
+
|
2729
|
+
.mdi-maps-directions-transit:before {
|
2730
|
+
content: "\e870";
|
2731
|
+
}
|
2732
|
+
|
2733
|
+
.mdi-maps-directions-walk:before {
|
2734
|
+
content: "\e871";
|
2735
|
+
}
|
2736
|
+
|
2737
|
+
.mdi-maps-directions:before {
|
2738
|
+
content: "\e872";
|
2739
|
+
}
|
2740
|
+
|
2741
|
+
.mdi-maps-flight:before {
|
2742
|
+
content: "\e873";
|
2743
|
+
}
|
2744
|
+
|
2745
|
+
.mdi-maps-hotel:before {
|
2746
|
+
content: "\e874";
|
2747
|
+
}
|
2748
|
+
|
2749
|
+
.mdi-maps-layers-clear:before {
|
2750
|
+
content: "\e875";
|
2751
|
+
}
|
2752
|
+
|
2753
|
+
.mdi-maps-layers:before {
|
2754
|
+
content: "\e876";
|
2755
|
+
}
|
2756
|
+
|
2757
|
+
.mdi-maps-local-airport:before {
|
2758
|
+
content: "\e877";
|
2759
|
+
}
|
2760
|
+
|
2761
|
+
.mdi-maps-local-atm:before {
|
2762
|
+
content: "\e878";
|
2763
|
+
}
|
2764
|
+
|
2765
|
+
.mdi-maps-local-attraction:before {
|
2766
|
+
content: "\e879";
|
2767
|
+
}
|
2768
|
+
|
2769
|
+
.mdi-maps-local-bar:before {
|
2770
|
+
content: "\e87a";
|
2771
|
+
}
|
2772
|
+
|
2773
|
+
.mdi-maps-local-cafe:before {
|
2774
|
+
content: "\e87b";
|
2775
|
+
}
|
2776
|
+
|
2777
|
+
.mdi-maps-local-car-wash:before {
|
2778
|
+
content: "\e87c";
|
2779
|
+
}
|
2780
|
+
|
2781
|
+
.mdi-maps-local-convenience-store:before {
|
2782
|
+
content: "\e87d";
|
2783
|
+
}
|
2784
|
+
|
2785
|
+
.mdi-maps-local-drink:before {
|
2786
|
+
content: "\e87e";
|
2787
|
+
}
|
2788
|
+
|
2789
|
+
.mdi-maps-local-florist:before {
|
2790
|
+
content: "\e87f";
|
2791
|
+
}
|
2792
|
+
|
2793
|
+
.mdi-maps-local-gas-station:before {
|
2794
|
+
content: "\e880";
|
2795
|
+
}
|
2796
|
+
|
2797
|
+
.mdi-maps-local-grocery-store:before {
|
2798
|
+
content: "\e881";
|
2799
|
+
}
|
2800
|
+
|
2801
|
+
.mdi-maps-local-hospital:before {
|
2802
|
+
content: "\e882";
|
2803
|
+
}
|
2804
|
+
|
2805
|
+
.mdi-maps-local-hotel:before {
|
2806
|
+
content: "\e883";
|
2807
|
+
}
|
2808
|
+
|
2809
|
+
.mdi-maps-local-laundry-service:before {
|
2810
|
+
content: "\e884";
|
2811
|
+
}
|
2812
|
+
|
2813
|
+
.mdi-maps-local-library:before {
|
2814
|
+
content: "\e885";
|
2815
|
+
}
|
2816
|
+
|
2817
|
+
.mdi-maps-local-mall:before {
|
2818
|
+
content: "\e886";
|
2819
|
+
}
|
2820
|
+
|
2821
|
+
.mdi-maps-local-movies:before {
|
2822
|
+
content: "\e887";
|
2823
|
+
}
|
2824
|
+
|
2825
|
+
.mdi-maps-local-offer:before {
|
2826
|
+
content: "\e888";
|
2827
|
+
}
|
2828
|
+
|
2829
|
+
.mdi-maps-local-parking:before {
|
2830
|
+
content: "\e889";
|
2831
|
+
}
|
2832
|
+
|
2833
|
+
.mdi-maps-local-pharmacy:before {
|
2834
|
+
content: "\e88a";
|
2835
|
+
}
|
2836
|
+
|
2837
|
+
.mdi-maps-local-phone:before {
|
2838
|
+
content: "\e88b";
|
2839
|
+
}
|
2840
|
+
|
2841
|
+
.mdi-maps-local-pizza:before {
|
2842
|
+
content: "\e88c";
|
2843
|
+
}
|
2844
|
+
|
2845
|
+
.mdi-maps-local-play:before {
|
2846
|
+
content: "\e88d";
|
2847
|
+
}
|
2848
|
+
|
2849
|
+
.mdi-maps-local-post-office:before {
|
2850
|
+
content: "\e88e";
|
2851
|
+
}
|
2852
|
+
|
2853
|
+
.mdi-maps-local-print-shop:before {
|
2854
|
+
content: "\e88f";
|
2855
|
+
}
|
2856
|
+
|
2857
|
+
.mdi-maps-local-restaurant:before {
|
2858
|
+
content: "\e890";
|
2859
|
+
}
|
2860
|
+
|
2861
|
+
.mdi-maps-local-see:before {
|
2862
|
+
content: "\e891";
|
2863
|
+
}
|
2864
|
+
|
2865
|
+
.mdi-maps-local-shipping:before {
|
2866
|
+
content: "\e892";
|
2867
|
+
}
|
2868
|
+
|
2869
|
+
.mdi-maps-local-taxi:before {
|
2870
|
+
content: "\e893";
|
2871
|
+
}
|
2872
|
+
|
2873
|
+
.mdi-maps-location-history:before {
|
2874
|
+
content: "\e894";
|
2875
|
+
}
|
2876
|
+
|
2877
|
+
.mdi-maps-map:before {
|
2878
|
+
content: "\e895";
|
2879
|
+
}
|
2880
|
+
|
2881
|
+
.mdi-maps-my-location:before {
|
2882
|
+
content: "\e896";
|
2883
|
+
}
|
2884
|
+
|
2885
|
+
.mdi-maps-navigation:before {
|
2886
|
+
content: "\e897";
|
2887
|
+
}
|
2888
|
+
|
2889
|
+
.mdi-maps-pin-drop:before {
|
2890
|
+
content: "\e898";
|
2891
|
+
}
|
2892
|
+
|
2893
|
+
.mdi-maps-place:before {
|
2894
|
+
content: "\e899";
|
2895
|
+
}
|
2896
|
+
|
2897
|
+
.mdi-maps-rate-review:before {
|
2898
|
+
content: "\e89a";
|
2899
|
+
}
|
2900
|
+
|
2901
|
+
.mdi-maps-restaurant-menu:before {
|
2902
|
+
content: "\e89b";
|
2903
|
+
}
|
2904
|
+
|
2905
|
+
.mdi-maps-satellite:before {
|
2906
|
+
content: "\e89c";
|
2907
|
+
}
|
2908
|
+
|
2909
|
+
.mdi-maps-store-mall-directory:before {
|
2910
|
+
content: "\e89d";
|
2911
|
+
}
|
2912
|
+
|
2913
|
+
.mdi-maps-terrain:before {
|
2914
|
+
content: "\e89e";
|
2915
|
+
}
|
2916
|
+
|
2917
|
+
.mdi-maps-traffic:before {
|
2918
|
+
content: "\e89f";
|
2919
|
+
}
|
2920
|
+
|
2921
|
+
.mdi-navigation-apps:before {
|
2922
|
+
content: "\e8a0";
|
2923
|
+
}
|
2924
|
+
|
2925
|
+
.mdi-navigation-arrow-back:before {
|
2926
|
+
content: "\e8a1";
|
2927
|
+
}
|
2928
|
+
|
2929
|
+
.mdi-navigation-arrow-drop-down-circle:before {
|
2930
|
+
content: "\e8a2";
|
2931
|
+
}
|
2932
|
+
|
2933
|
+
.mdi-navigation-arrow-drop-down:before {
|
2934
|
+
content: "\e8a3";
|
2935
|
+
}
|
2936
|
+
|
2937
|
+
.mdi-navigation-arrow-drop-up:before {
|
2938
|
+
content: "\e8a4";
|
2939
|
+
}
|
2940
|
+
|
2941
|
+
.mdi-navigation-arrow-forward:before {
|
2942
|
+
content: "\e8a5";
|
2943
|
+
}
|
2944
|
+
|
2945
|
+
.mdi-navigation-cancel:before {
|
2946
|
+
content: "\e8a6";
|
2947
|
+
}
|
2948
|
+
|
2949
|
+
.mdi-navigation-check:before {
|
2950
|
+
content: "\e8a7";
|
2951
|
+
}
|
2952
|
+
|
2953
|
+
.mdi-navigation-chevron-left:before {
|
2954
|
+
content: "\e8a8";
|
2955
|
+
}
|
2956
|
+
|
2957
|
+
.mdi-navigation-chevron-right:before {
|
2958
|
+
content: "\e8a9";
|
2959
|
+
}
|
2960
|
+
|
2961
|
+
.mdi-navigation-close:before {
|
2962
|
+
content: "\e8aa";
|
2963
|
+
}
|
2964
|
+
|
2965
|
+
.mdi-navigation-expand-less:before {
|
2966
|
+
content: "\e8ab";
|
2967
|
+
}
|
2968
|
+
|
2969
|
+
.mdi-navigation-expand-more:before {
|
2970
|
+
content: "\e8ac";
|
2971
|
+
}
|
2972
|
+
|
2973
|
+
.mdi-navigation-fullscreen-exit:before {
|
2974
|
+
content: "\e8ad";
|
2975
|
+
}
|
2976
|
+
|
2977
|
+
.mdi-navigation-fullscreen:before {
|
2978
|
+
content: "\e8ae";
|
2979
|
+
}
|
2980
|
+
|
2981
|
+
.mdi-navigation-menu:before {
|
2982
|
+
content: "\e8af";
|
2983
|
+
}
|
2984
|
+
|
2985
|
+
.mdi-navigation-more-horiz:before {
|
2986
|
+
content: "\e8b0";
|
2987
|
+
}
|
2988
|
+
|
2989
|
+
.mdi-navigation-more-vert:before {
|
2990
|
+
content: "\e8b1";
|
2991
|
+
}
|
2992
|
+
|
2993
|
+
.mdi-navigation-refresh:before {
|
2994
|
+
content: "\e8b2";
|
2995
|
+
}
|
2996
|
+
|
2997
|
+
.mdi-navigation-unfold-less:before {
|
2998
|
+
content: "\e8b3";
|
2999
|
+
}
|
3000
|
+
|
3001
|
+
.mdi-navigation-unfold-more:before {
|
3002
|
+
content: "\e8b4";
|
3003
|
+
}
|
3004
|
+
|
3005
|
+
.mdi-notification-adb:before {
|
3006
|
+
content: "\e8b5";
|
3007
|
+
}
|
3008
|
+
|
3009
|
+
.mdi-notification-bluetooth-audio:before {
|
3010
|
+
content: "\e8b6";
|
3011
|
+
}
|
3012
|
+
|
3013
|
+
.mdi-notification-disc-full:before {
|
3014
|
+
content: "\e8b7";
|
3015
|
+
}
|
3016
|
+
|
3017
|
+
.mdi-notification-dnd-forwardslash:before {
|
3018
|
+
content: "\e8b8";
|
3019
|
+
}
|
3020
|
+
|
3021
|
+
.mdi-notification-do-not-disturb:before {
|
3022
|
+
content: "\e8b9";
|
3023
|
+
}
|
3024
|
+
|
3025
|
+
.mdi-notification-drive-eta:before {
|
3026
|
+
content: "\e8ba";
|
3027
|
+
}
|
3028
|
+
|
3029
|
+
.mdi-notification-event-available:before {
|
3030
|
+
content: "\e8bb";
|
3031
|
+
}
|
3032
|
+
|
3033
|
+
.mdi-notification-event-busy:before {
|
3034
|
+
content: "\e8bc";
|
3035
|
+
}
|
3036
|
+
|
3037
|
+
.mdi-notification-event-note:before {
|
3038
|
+
content: "\e8bd";
|
3039
|
+
}
|
3040
|
+
|
3041
|
+
.mdi-notification-folder-special:before {
|
3042
|
+
content: "\e8be";
|
3043
|
+
}
|
3044
|
+
|
3045
|
+
.mdi-notification-mms:before {
|
3046
|
+
content: "\e8bf";
|
3047
|
+
}
|
3048
|
+
|
3049
|
+
.mdi-notification-more:before {
|
3050
|
+
content: "\e8c0";
|
3051
|
+
}
|
3052
|
+
|
3053
|
+
.mdi-notification-network-locked:before {
|
3054
|
+
content: "\e8c1";
|
3055
|
+
}
|
3056
|
+
|
3057
|
+
.mdi-notification-phone-bluetooth-speaker:before {
|
3058
|
+
content: "\e8c2";
|
3059
|
+
}
|
3060
|
+
|
3061
|
+
.mdi-notification-phone-forwarded:before {
|
3062
|
+
content: "\e8c3";
|
3063
|
+
}
|
3064
|
+
|
3065
|
+
.mdi-notification-phone-in-talk:before {
|
3066
|
+
content: "\e8c4";
|
3067
|
+
}
|
3068
|
+
|
3069
|
+
.mdi-notification-phone-locked:before {
|
3070
|
+
content: "\e8c5";
|
3071
|
+
}
|
3072
|
+
|
3073
|
+
.mdi-notification-phone-missed:before {
|
3074
|
+
content: "\e8c6";
|
3075
|
+
}
|
3076
|
+
|
3077
|
+
.mdi-notification-phone-paused:before {
|
3078
|
+
content: "\e8c7";
|
3079
|
+
}
|
3080
|
+
|
3081
|
+
.mdi-notification-play-download:before {
|
3082
|
+
content: "\e8c8";
|
3083
|
+
}
|
3084
|
+
|
3085
|
+
.mdi-notification-play-install:before {
|
3086
|
+
content: "\e8c9";
|
3087
|
+
}
|
3088
|
+
|
3089
|
+
.mdi-notification-sd-card:before {
|
3090
|
+
content: "\e8ca";
|
3091
|
+
}
|
3092
|
+
|
3093
|
+
.mdi-notification-sim-card-alert:before {
|
3094
|
+
content: "\e8cb";
|
3095
|
+
}
|
3096
|
+
|
3097
|
+
.mdi-notification-sms-failed:before {
|
3098
|
+
content: "\e8cc";
|
3099
|
+
}
|
3100
|
+
|
3101
|
+
.mdi-notification-sms:before {
|
3102
|
+
content: "\e8cd";
|
3103
|
+
}
|
3104
|
+
|
3105
|
+
.mdi-notification-sync-disabled:before {
|
3106
|
+
content: "\e8ce";
|
3107
|
+
}
|
3108
|
+
|
3109
|
+
.mdi-notification-sync-problem:before {
|
3110
|
+
content: "\e8cf";
|
3111
|
+
}
|
3112
|
+
|
3113
|
+
.mdi-notification-sync:before {
|
3114
|
+
content: "\e8d0";
|
3115
|
+
}
|
3116
|
+
|
3117
|
+
.mdi-notification-system-update:before {
|
3118
|
+
content: "\e8d1";
|
3119
|
+
}
|
3120
|
+
|
3121
|
+
.mdi-notification-tap-and-play:before {
|
3122
|
+
content: "\e8d2";
|
3123
|
+
}
|
3124
|
+
|
3125
|
+
.mdi-notification-time-to-leave:before {
|
3126
|
+
content: "\e8d3";
|
3127
|
+
}
|
3128
|
+
|
3129
|
+
.mdi-notification-vibration:before {
|
3130
|
+
content: "\e8d4";
|
3131
|
+
}
|
3132
|
+
|
3133
|
+
.mdi-notification-voice-chat:before {
|
3134
|
+
content: "\e8d5";
|
3135
|
+
}
|
3136
|
+
|
3137
|
+
.mdi-notification-vpn-lock:before {
|
3138
|
+
content: "\e8d6";
|
3139
|
+
}
|
3140
|
+
|
3141
|
+
.mdi-social-cake:before {
|
3142
|
+
content: "\e8d7";
|
3143
|
+
}
|
3144
|
+
|
3145
|
+
.mdi-social-domain:before {
|
3146
|
+
content: "\e8d8";
|
3147
|
+
}
|
3148
|
+
|
3149
|
+
.mdi-social-group-add:before {
|
3150
|
+
content: "\e8d9";
|
3151
|
+
}
|
3152
|
+
|
3153
|
+
.mdi-social-group:before {
|
3154
|
+
content: "\e8da";
|
3155
|
+
}
|
3156
|
+
|
3157
|
+
.mdi-social-location-city:before {
|
3158
|
+
content: "\e8db";
|
3159
|
+
}
|
3160
|
+
|
3161
|
+
.mdi-social-mood:before {
|
3162
|
+
content: "\e8dc";
|
3163
|
+
}
|
3164
|
+
|
3165
|
+
.mdi-social-notifications-none:before {
|
3166
|
+
content: "\e8dd";
|
3167
|
+
}
|
3168
|
+
|
3169
|
+
.mdi-social-notifications-off:before {
|
3170
|
+
content: "\e8de";
|
3171
|
+
}
|
3172
|
+
|
3173
|
+
.mdi-social-notifications-on:before {
|
3174
|
+
content: "\e8df";
|
3175
|
+
}
|
3176
|
+
|
3177
|
+
.mdi-social-notifications-paused:before {
|
3178
|
+
content: "\e8e0";
|
3179
|
+
}
|
3180
|
+
|
3181
|
+
.mdi-social-notifications:before {
|
3182
|
+
content: "\e8e1";
|
3183
|
+
}
|
3184
|
+
|
3185
|
+
.mdi-social-pages:before {
|
3186
|
+
content: "\e8e2";
|
3187
|
+
}
|
3188
|
+
|
3189
|
+
.mdi-social-party-mode:before {
|
3190
|
+
content: "\e8e3";
|
3191
|
+
}
|
3192
|
+
|
3193
|
+
.mdi-social-people-outline:before {
|
3194
|
+
content: "\e8e4";
|
3195
|
+
}
|
3196
|
+
|
3197
|
+
.mdi-social-people:before {
|
3198
|
+
content: "\e8e5";
|
3199
|
+
}
|
3200
|
+
|
3201
|
+
.mdi-social-person-add:before {
|
3202
|
+
content: "\e8e6";
|
3203
|
+
}
|
3204
|
+
|
3205
|
+
.mdi-social-person-outline:before {
|
3206
|
+
content: "\e8e7";
|
3207
|
+
}
|
3208
|
+
|
3209
|
+
.mdi-social-person:before {
|
3210
|
+
content: "\e8e8";
|
3211
|
+
}
|
3212
|
+
|
3213
|
+
.mdi-social-plus-one:before {
|
3214
|
+
content: "\e8e9";
|
3215
|
+
}
|
3216
|
+
|
3217
|
+
.mdi-social-poll:before {
|
3218
|
+
content: "\e8ea";
|
3219
|
+
}
|
3220
|
+
|
3221
|
+
.mdi-social-public:before {
|
3222
|
+
content: "\e8eb";
|
3223
|
+
}
|
3224
|
+
|
3225
|
+
.mdi-social-school:before {
|
3226
|
+
content: "\e8ec";
|
3227
|
+
}
|
3228
|
+
|
3229
|
+
.mdi-social-share:before {
|
3230
|
+
content: "\e8ed";
|
3231
|
+
}
|
3232
|
+
|
3233
|
+
.mdi-social-whatshot:before {
|
3234
|
+
content: "\e8ee";
|
3235
|
+
}
|
3236
|
+
|
3237
|
+
.mdi-toggle-check-box-outline-blank:before {
|
3238
|
+
content: "\e8ef";
|
3239
|
+
}
|
3240
|
+
|
3241
|
+
.mdi-toggle-check-box:before {
|
3242
|
+
content: "\e8f0";
|
3243
|
+
}
|
3244
|
+
|
3245
|
+
.mdi-toggle-radio-button-off:before {
|
3246
|
+
content: "\e8f1";
|
3247
|
+
}
|
3248
|
+
|
3249
|
+
.mdi-toggle-radio-button-on:before {
|
3250
|
+
content: "\e8f2";
|
3251
|
+
}
|
3252
|
+
|
3253
|
+
.mdi-toggle-star-half:before {
|
3254
|
+
content: "\e8f3";
|
3255
|
+
}
|
3256
|
+
|
3257
|
+
.mdi-toggle-star-outline:before {
|
3258
|
+
content: "\e8f4";
|
3259
|
+
}
|
3260
|
+
|
3261
|
+
.mdi-toggle-star:before {
|
3262
|
+
content: "\e8f5";
|
3263
|
+
}
|