fontIcons.css 49 KB

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