├── public ├── styles │ ├── home.css │ ├── beauty.css │ ├── app.css │ └── materialdesignicons.css ├── images │ ├── sort_asc.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_asc_disabled.png │ ├── sort_desc_disabled.png │ └── circle-ci-no-builds.svg ├── fonts │ ├── materialdesignicons-webfont.eot │ ├── materialdesignicons-webfont.ttf │ ├── materialdesignicons-webfont.woff │ └── materialdesignicons-webfont.woff2 ├── home.html └── index.html ├── circle.yml ├── screenshot.png ├── src ├── index.js ├── lib │ ├── index.js │ └── wave.js ├── server │ └── dev.js ├── checks.js ├── githubAPI.js └── RepoMatrix.js ├── .eslintignore ├── .gitignore ├── data.json ├── .babelrc ├── docs └── spec.md ├── README.md ├── LICENSE.md ├── package.json └── CODE_OF_CONDUCT.md /public/styles/home.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- 1 | test: 2 | override: 3 | - npm run build 4 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const RepoMatrix = require('./RepoMatrix') 2 | 3 | RepoMatrix.start() 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | lib/ 3 | fixture/ 4 | website/assets/build/ 5 | website/_site/ 6 | -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- 1 | var wave = require('./wave.js') 2 | 3 | module.exports = { 4 | wave 5 | } 6 | -------------------------------------------------------------------------------- /public/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/images/sort_asc.png -------------------------------------------------------------------------------- /public/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/images/sort_both.png -------------------------------------------------------------------------------- /public/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/images/sort_desc.png -------------------------------------------------------------------------------- /public/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/fonts/materialdesignicons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/fonts/materialdesignicons-webfont.eot -------------------------------------------------------------------------------- /public/fonts/materialdesignicons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/fonts/materialdesignicons-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/materialdesignicons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/fonts/materialdesignicons-webfont.woff -------------------------------------------------------------------------------- /public/fonts/materialdesignicons-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/dashboard/HEAD/public/fonts/materialdesignicons-webfont.woff2 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.env 3 | /public/bundle.js 4 | /public/bundle.js.tmp* 5 | /public/styles/*.dataTables.css 6 | /node_modules/ 7 | /npm-debug.log 8 | /tmp/ 9 | -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgs": [ 3 | "adventure-js" 4 | ], 5 | "individualRepos": [ 6 | "RichardLitt/maintainer-dashboard", 7 | "RichardLitt/knowledge" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "es2015" 4 | ], 5 | "plugins": [ 6 | "add-module-exports", 7 | "transform-object-assign", 8 | "es6-promise", 9 | "transform-async-to-generator" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/images/circle-ci-no-builds.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | NO BUILDS 4 | 5 | -------------------------------------------------------------------------------- /src/lib/wave.js: -------------------------------------------------------------------------------- 1 | const Wave = require('loading-wave') 2 | const $ = require('jquery') 3 | 4 | function loadingWave () { 5 | const wave = Wave({ 6 | width: 162, 7 | height: 62, 8 | n: 7, 9 | color: '#959' 10 | }) 11 | $(wave.el).center() 12 | document.body.appendChild(wave.el) 13 | wave.start() 14 | return wave 15 | } 16 | 17 | function killLoadingWave (wave) { 18 | wave.stop() 19 | return $(wave.el).hide() 20 | } 21 | 22 | module.exports = { 23 | loadingWave, 24 | killLoadingWave 25 | } 26 | -------------------------------------------------------------------------------- /public/home.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Home 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | Home 15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | Mntnr Dashboard 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 |
21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /src/server/dev.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | /* 3 | * decaffeinate suggestions: 4 | * DS102: Remove unnecessary code created because of implicit returns 5 | * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md 6 | */ 7 | 8 | // const { json, log, p, pjson } = require('lightsaber') 9 | const request = require('request') 10 | const browserSync = require('browser-sync').create() 11 | 12 | const IPFS = 'http://localhost:8080' 13 | 14 | const devServer = () => checkProxiedServer(startBrowserSync) 15 | 16 | var checkProxiedServer = callback => { 17 | const url = `${IPFS}/` 18 | return request(url, (error, response, body) => { 19 | if (error) { 20 | console.warn(`WARNING: Could not connect to IPFS at ${url} -- \ 21 | if IPFS is desired, make sure the server is running`) 22 | } 23 | // process.exit 1 24 | return callback() 25 | }) 26 | } 27 | 28 | var startBrowserSync = () => 29 | browserSync.init({ 30 | startPath: 'public', 31 | files: 'public/*', 32 | server: { 33 | baseDir: './', 34 | middleware: proxyIpfsCalls 35 | }, 36 | logLevel: 'debug' 37 | }) 38 | 39 | var proxyIpfsCalls = (req, res, next) => { 40 | const pattern = new RegExp(`^/(ipfs|api)/.+$`) 41 | if (req.url.match(pattern)) { 42 | const proxyPath = req.url.match(pattern)[0] 43 | const proxyUrl = `${IPFS}${proxyPath}` 44 | // log "Attemptimng to proxy to URL: #{proxyUrl}..." 45 | const proxyRequest = request[req.method.toLowerCase()](proxyUrl) 46 | return req.pipe(proxyRequest).pipe(res) 47 | } else { 48 | return next() 49 | } 50 | } 51 | 52 | devServer() 53 | -------------------------------------------------------------------------------- /docs/spec.md: -------------------------------------------------------------------------------- 1 | # Specification 2 | 3 | Here are what we want to get and display. Written in loose Swagger/JSON imitation. Some checks can be extrapolated - for instance, does `description` match the `description` in the `package.json`. 4 | 5 | #### Organization 6 | 7 | ```json 8 | { 9 | "organization": { 10 | "users": Int, 11 | "location": String, 12 | "website": String, 13 | "repositories": Int, 14 | "description": String, 15 | "email": String, 16 | "pinned_repositories": Array[String] 17 | } 18 | } 19 | ``` 20 | 21 | #### Repository 22 | 23 | ```json 24 | { 25 | "name": String, 26 | "owner": String, 27 | "stars": Int, 28 | "issues": Int, 29 | "pull_requests": Int, 30 | "description": String, 31 | "tags": Array[String], 32 | "contributors": Array[String] 33 | "badges": { 34 | "Travis": URL, 35 | "CircleCI": URL, 36 | "Coveralls": URL, 37 | "npm": URL 38 | }, 39 | "readme": { 40 | "exists": Bool, 41 | "greaterThan500Chars": Bool, 42 | "standardized": Bool, 43 | "sections": { 44 | "TOC": Bool, 45 | "Install": Bool, 46 | "Usage": Bool, 47 | "Maintainer(s)": Bool, 48 | "Contribute": Bool, 49 | "License": Bool, 50 | "todos": Bool 51 | } 52 | }, 53 | "license": { 54 | "exists": Bool, 55 | "matchesReadme": Bool, 56 | "type": String, 57 | "licensee": String, 58 | "year": String 59 | }, 60 | "contribute": Bool, 61 | "patents": Bool, 62 | "AUTHORS": Bool, 63 | "coc": Bool, 64 | "package.json": { 65 | "description": String, 66 | "author": String, 67 | "license": String, 68 | "homepage": String, 69 | "bugs": String, 70 | "git": {Object} 71 | } 72 | } 73 | ``` -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Maintainer Dashboard 2 | 3 | > Maintainer GitHub Dashboard 4 | 5 | This is a status board for repositories within a GitHub organization. 6 | It displays build health, and other measures that your community should care about! 7 | 8 | Hosted on IPFS! 9 | 10 | ![Screenshot](screenshot.png) 11 | 12 | ## Table of Contents 13 | 14 | - [Install](#install) 15 | - [Usage](#usage) 16 | - [Local development](#local-development) 17 | - [Deploy](#deploy) 18 | - [Contribute](#contribute) 19 | - [License](#license) 20 | 21 | 22 | ## Background 23 | 24 | This work started with [ipfs/project-repos](https://github.com/ipfs/project-repos). However, as I needed to do some work on it and wanted it to be extendable beyond IPFS, and as I did not have access to the issues for that repository, I have forked it, deleted the history, and made my own copy, here. 25 | 26 | ## Install 27 | 28 | Simply clone this repo. 29 | 30 | ## Usage 31 | 32 | ### Local development 33 | 34 | To recompile continuously, and start a development server with hot reloading: 35 | 36 | npm run dev 37 | 38 | To build minified javascript for production: 39 | 40 | npm run build 41 | 42 | ### Token 43 | 44 | You will need a GitHub token in order to have more requests available to you, as this is a very request-heavy tool. Set it in your environment as `MAINTAINER_DASHBOARD`, or include this token in the `data.json` config in a `token` field. 45 | 46 | ### Enterprise 47 | 48 | Add a `rootURL` field to `data.json` with the endpoint needed. 49 | 50 | ## Deploy 51 | 52 | To deploy this, after merging any new PRs, follow these steps: 53 | 54 | 1. Have an ipfs daemon running: `ipfs daemon` 55 | 2. Kill your `npm run dev` script if you happen to have it running. 56 | 3. `npm install && npm prune` 57 | 4. `npm run publish`. This should open the published page on the gateway. 58 | 5. Pin the hash: `ipfs pin add ` 59 | 6. Pin the hash to the gateways, on IRC: `!pin project-repos.ipfs.io` 60 | 7. Post the hash and url to https://github.com/ipfs/ops-requests/issues. 61 | 62 | ## Contribute 63 | 64 | If you would like to contribute code to this repository, please dive in! Check out [the issues](//github.com/mntnr/dashboard/issues). 65 | 66 | ## License 67 | 68 | [MIT](LICENSE) 69 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2017 Burnt Fen Creative LLC 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | 23 | ============================================================================== 24 | 25 | The MIT License (MIT) 26 | 27 | Copyright (c) 2015 Harlan T Wood 28 | 29 | Permission is hereby granted, free of charge, to any person obtaining a copy 30 | of this software and associated documentation files (the "Software"), to deal 31 | in the Software without restriction, including without limitation the rights 32 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 33 | copies of the Software, and to permit persons to whom the Software is 34 | furnished to do so, subject to the following conditions: 35 | 36 | The above copyright notice and this permission notice shall be included in 37 | all copies or substantial portions of the Software. 38 | 39 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 40 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 41 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 42 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 43 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 44 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 45 | THE SOFTWARE. 46 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "maintainer-dashboard", 3 | "version": "0.0.0", 4 | "description": "Maintainer GitHub Dashboard", 5 | "author": "Richard Littauer ", 6 | "license": "MIT", 7 | "scripts": { 8 | "copy-css": "cp node_modules/datatables.net-dt/css/jquery.dataTables.css public/styles/ && cp node_modules/datatables.net-fixedheader-dt/css/fixedHeader.dataTables.css public/styles/", 9 | "build": "npm-run-all --silent copy-css build:browserify", 10 | "build:browserify": "browserify src/index.js -g uglifyify | uglifyjs --mangle --compress > public/bundle.js", 11 | "dev": "npm-run-all --silent copy-css --parallel dev:watch dev:server", 12 | "dev:server": "src/server/dev.js", 13 | "dev:watch": "nodemon --watch src --watch public/index.html --watch public/styles --exec 'browserify' src/index.js --outfile public/bundle.js", 14 | "publish": "npm-run-all --silent build ipfs", 15 | "ipfs": "open https://ipfs.io/ipfs/`ipfs add -q -r public | tail -n 1`", 16 | "lint": "eslint src/.", 17 | "fix": "eslint src/. --fix" 18 | }, 19 | "dependencies": { 20 | "is-github-user-or-org": "^1.1.1", 21 | "mdi": "^2.0.46" 22 | }, 23 | "devDependencies": { 24 | "babel-cli": "6.26.0", 25 | "babel-core": "6.26.0", 26 | "babel-eslint": "8.0.0", 27 | "babel-plugin-add-module-exports": "^0.2.1", 28 | "babel-plugin-es6-promise": "^1.1.1", 29 | "babel-plugin-syntax-async-functions": "^6.13.0", 30 | "babel-plugin-transform-async-to-generator": "^6.24.1", 31 | "babel-plugin-transform-object-assign": "^6.22.0", 32 | "babel-preset-es2015": "^6.24.1", 33 | "bluebird": "^3.5.0", 34 | "browser-sync": "^2.18.13", 35 | "browserify": "^14.4.0", 36 | "datatables.net": "^1.10.16", 37 | "datatables.net-dt": "^1.10.16", 38 | "datatables.net-fixedheader": "^3.1.3", 39 | "datatables.net-fixedheader-dt": "^3.1.3", 40 | "eslint": "4.7.1", 41 | "eslint-config-standard": "10.2.1", 42 | "eslint-plugin-import": "^2.7.0", 43 | "eslint-plugin-node": "^5.1.1", 44 | "eslint-plugin-promise": "^3.5.0", 45 | "eslint-plugin-react": "7.3.0", 46 | "eslint-plugin-standard": "3.0.1", 47 | "jquery": "^3.2.1", 48 | "lightsaber": "^0.6.10", 49 | "loading-wave": "0.0.2", 50 | "lodash": "^4.17.4", 51 | "nodemon": "^1.12.1", 52 | "npm-run-all": "^4.1.1", 53 | "octokat": "^0.9.2", 54 | "teacup": "^2.0.0", 55 | "uglify-es": "^3.1.2", 56 | "uglifyify": "^4.0.3" 57 | }, 58 | "repository": { 59 | "type": "git", 60 | "url": "git@github.com:mntnr/dashboard.git" 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /src/checks.js: -------------------------------------------------------------------------------- 1 | const { merge } = require('lodash') 2 | 3 | function checkVitality (files, fullName, stargazersCount, openIssuesCount) { 4 | files = files || {} 5 | var vitality 6 | // TODO Reenable badges 7 | var README_BADGES = { 8 | // Travis (repoFullName) { 9 | // return `(https://travis-ci.org/${repoFullName})` 10 | // }, 11 | // Circle (repoFullName) { 12 | // return `(https://circleci.com/gh/${repoFullName})` 13 | // }, 14 | // 'Made By' () { 15 | // return '[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)' 16 | // }, 17 | // Project () { 18 | // return '[![](https://img.shields.io/badge/project-IPFS-blue.svg?style=flat-square)](http://ipfs.io/)' 19 | // }, 20 | // IRC () { 21 | // return '[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)' 22 | // } 23 | } 24 | 25 | var README_SECTIONS = { 26 | ToC () { 27 | return 'Table of Contents' 28 | }, 29 | Install () { 30 | return '## Install' 31 | }, 32 | Usage () { 33 | return '## Usage' 34 | }, 35 | Contribute () { 36 | return '## Contribute' 37 | }, 38 | License () { 39 | return '## License' 40 | } 41 | } 42 | 43 | var README_OTHER = { 44 | TODO () { 45 | return 'TODO' 46 | } 47 | // Retained as an example 48 | // Banner () { 49 | // return '![](https://cdn.rawgit.com/jbenet/contribute-ipfs-gif/master/img/contribute.gif)' 50 | // } 51 | } 52 | 53 | function checkCodeSections (name) { 54 | if (this.content) { 55 | if (!this.content.match('This repository is (only for documents|a \\*\\*work in progress\\*\\*)\\.')) { 56 | return (this.content.indexOf(this.items[name]()) >= 0) 57 | } 58 | } 59 | return 'na' 60 | } 61 | 62 | vitality = { 63 | readme: { 64 | content: files.README, 65 | charLength: function () { 66 | return (this.content) ? (this.content.length > 500) : 'na' 67 | }, 68 | sections: README_SECTIONS, 69 | other: README_OTHER, 70 | badges: README_BADGES, 71 | items: merge(README_SECTIONS, README_OTHER), 72 | toc: function toc () { 73 | if (this.content && !(this.content.split('\n').length) < 100) { 74 | return (this.content.indexOf(this.items['ToC']())) >= 0 75 | } 76 | return 'na' 77 | }, 78 | checkCodeSections: checkCodeSections, 79 | noTODOs: function noTODOs () { 80 | // TODO Return the TODO count ironically 81 | return (this.content) ? (this.content.indexOf(this.items['TODO']()) === -1) : 'na' 82 | }, 83 | section: function section (name) { 84 | return (this.content) ? (this.content.indexOf(this.items[name]()) >= 0) : 'na' 85 | } 86 | }, 87 | license: files.LICENSE, 88 | contribute: files.CONTRIBUTING 89 | } 90 | 91 | return vitality 92 | } 93 | 94 | module.exports = checkVitality 95 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, gender identity and expression, level of experience, 9 | nationality, personal appearance, race, religion, or sexual identity and 10 | orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at richard@maintainer.io. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at [http://contributor-covenant.org/version/1/4][version] 72 | 73 | [homepage]: http://contributor-covenant.org 74 | [version]: http://contributor-covenant.org/version/1/4/ 75 | -------------------------------------------------------------------------------- /public/styles/beauty.css: -------------------------------------------------------------------------------- 1 | /* from https://datatables.net/media/blog/beautiful_tables/complete.html */ 2 | 3 | /* 4 | * Colour dictionary: 5 | * 6 | * Table control elements: #719ba7 7 | * Header cells: #66A9BD 8 | * Body header cells: #91c5d4 9 | * Body content cells: #d5eaf0 10 | * Body content cells (alt): #bcd9e1 11 | * Footer header: #b0cc7f 12 | * Footer content: #d7e1c5 13 | */ 14 | 15 | 16 | /* 17 | * Page setup styles 18 | */ 19 | body { 20 | font: 80%/1.45em Arial, Verdana, Helvetica, sans-serif; 21 | margin: 0; 22 | padding: 0; 23 | color: #111; 24 | background-color: #fff; 25 | } 26 | 27 | #container { 28 | margin: 0 auto; 29 | width: 960px 30 | } 31 | 32 | h1 { 33 | text-align: center; 34 | font-size: 1.2em; 35 | font-weight: bold; 36 | margin: 1em 0; 37 | } 38 | 39 | /* 40 | * DataTables framework 41 | */ 42 | div.dataTables_wrapper { 43 | overflow:auto; 44 | background-color: #719ba7; 45 | } 46 | 47 | div.dataTables_length { 48 | float: left; 49 | } 50 | 51 | div.dataTables_filter { 52 | float: right; 53 | } 54 | 55 | div.dataTables_info { 56 | padding: 9px 6px 6px 6px; 57 | float: left; 58 | } 59 | 60 | div.dataTables_paginate { 61 | float: right; 62 | } 63 | 64 | div.dataTables_length, 65 | div.dataTables_filter, 66 | div.dataTables_paginate { 67 | padding: 6px; 68 | } 69 | 70 | /* Self clearing - http://www.webtoolkit.info/css-clearfix.html */ 71 | .dataTables_wrapper:after { 72 | content: "."; 73 | display: block; 74 | clear: both; 75 | visibility: hidden; 76 | line-height: 0; 77 | height: 0; 78 | } 79 | 80 | html[xmlns] .dataTables_wrapper { 81 | display: block; 82 | } 83 | 84 | * html .dataTables_wrapper { 85 | height: 1%; 86 | } 87 | 88 | 89 | /* 90 | * Table styles 91 | */ 92 | table.pretty { 93 | width: 100%; 94 | clear: both; 95 | } 96 | 97 | table.pretty td, 98 | table.pretty th { 99 | padding: 5px; 100 | border: 1px solid #fff; 101 | } 102 | 103 | /* Header cells */ 104 | table.pretty thead th { 105 | text-align: center; 106 | background: #66a9bd; 107 | } 108 | 109 | /* Body cells */ 110 | table.pretty tbody th { 111 | text-align: left; 112 | background: #91c5d4; 113 | } 114 | 115 | table.pretty tbody td { 116 | text-align: center; 117 | background: #d5eaf0; 118 | } 119 | 120 | table.pretty tbody tr.odd td { 121 | background: #bcd9e1; 122 | } 123 | 124 | /* Footer cells */ 125 | table.pretty tfoot th { 126 | background: #b0cc7f; 127 | text-align: left; 128 | } 129 | 130 | table.pretty tfoot td { 131 | background: #d7e1c5; 132 | text-align: center; 133 | font-weight: bold; 134 | } 135 | 136 | 137 | /* 138 | * Pagination 139 | */ 140 | a.paginate_button, 141 | a.paginate_active { 142 | display: inline-block; 143 | background-color: #608995; 144 | padding: 2px 6px; 145 | margin-left: 2px; 146 | cursor: pointer; 147 | *cursor: hand; 148 | } 149 | 150 | a.paginate_active { 151 | background-color: transparent; 152 | border: 1px solid black; 153 | } 154 | 155 | a.paginate_button_disabled { 156 | color: #3d6672; 157 | } 158 | .paging_full_numbers a:active { 159 | outline: none 160 | } 161 | .paging_full_numbers a:hover { 162 | text-decoration: none; 163 | } 164 | 165 | div.dataTables_paginate span>a { 166 | width: 15px; 167 | text-align: center; 168 | } 169 | 170 | 171 | /* 172 | * Sorting 173 | */ 174 | table.pretty thead th.sorting_asc { 175 | background: #66A9BD url('images/sort_asc.png') no-repeat right center; 176 | } 177 | 178 | table.pretty thead th.sorting_desc { 179 | background: #66A9BD url('images/sort_desc.png') no-repeat right center; 180 | } 181 | 182 | table.pretty thead th.sorting { 183 | background: #66A9BD url('images/sort_both.png') no-repeat right center; 184 | } 185 | -------------------------------------------------------------------------------- /public/styles/app.css: -------------------------------------------------------------------------------- 1 | html { 2 | width: 100%; 3 | } 4 | 5 | /*font-family: 'Bitter', serif; 6 | font-family: 'Vesper Libre', serif; 7 | font-family: 'Cabin', sans-serif; 8 | font-family: 'Lato', sans-serif; 9 | 10 | */ 11 | .success { 12 | color: #5BFFAE; 13 | font-weight: bold; 14 | /* background:url("../checkmark.gif") no-repeat 0 50%; */ 15 | } 16 | 17 | .failure { 18 | color: #adadad; 19 | } 20 | 21 | /* 22 | We're using Material Design icon library 23 | to display icons, which attaches it to the :before psuedo 24 | class. We dont want to see the ascii character, but we do 25 | want to leave it in the DOM/flow so the sorting via the 26 | Datatable jQuery plugin works. 27 | */ 28 | 29 | .success i, 30 | .failure i, 31 | .na i { 32 | visibility: hidden; 33 | } 34 | 35 | .success i:before, 36 | .failure i:before, 37 | .na i:before { 38 | visibility: visible; 39 | } 40 | 41 | /* .na { 42 | color: grey; 43 | line-height: 2em; 44 | } 45 | */ 46 | td.no-padding { 47 | padding: 0px ! important; 48 | } 49 | 50 | td, th { 51 | text-align: center; 52 | } 53 | 54 | td.left, th.left { 55 | text-align: left; 56 | } 57 | 58 | /* 59 | jQuery.dataTables.css overrides 60 | Should come last. 61 | Doing this to prevent modifying plugin source, 62 | ensuring compatibility with library version updates 63 | */ 64 | 65 | th { 66 | font-family: 'Inconsolata', monospace; 67 | } 68 | 69 | th.left { 70 | text-align: center; 71 | } 72 | 73 | thead tr:nth-of-type(1){ 74 | background-color: #FF6B59; 75 | color: #f5deb3; 76 | font-weight: 900; 77 | font-size: 1rem; 78 | padding: 0.5rem !important; 79 | } 80 | 81 | 82 | thead tr:nth-of-type(2){ 83 | background-color: #e6e5ea; 84 | width: 165px; 85 | color: #528290; 86 | font-size: 0.95rem; 87 | } 88 | 89 | table.dataTable thead th, 90 | table.dataTable thead td { 91 | border-bottom: 0; 92 | } 93 | 94 | /* 95 | tr:nth-of-type(2) th td { 96 | border-bottom: 1px solid #4a4242; 97 | } 98 | */ 99 | 100 | table.dataTable.compact thead th, 101 | table.dataTable.compact thead td { 102 | padding: 0.3rem 0.6rem; 103 | } 104 | 105 | table.dataTable.compact tbody th, 106 | table.dataTable.compact tbody td { 107 | padding: 0.75rem 1rem; 108 | } 109 | 110 | table.dataTable.cell-border tbody th, 111 | table.dataTable.cell-border tbody td { 112 | border-right: 0; 113 | } 114 | 115 | td a { 116 | color: #2D5F6E; 117 | font-family: 'Cabin', sans-serif; 118 | font-size: 1rem; 119 | } 120 | 121 | /* .begin { background-color: white; } 122 | 123 | .builds { background-color: #d11f3f; } 124 | .files { background-color: #ff615d; } 125 | .sections { background-color: #ffa483; } 126 | .badges { background-color: #dad8c0; } 127 | 128 | */ 129 | 130 | /* 131 | font-family: 'Bitter', serif; 132 | font-family: 'Vesper Libre', serif; 133 | font-family: 'Cabin', sans-serif; 134 | 135 | */ 136 | 137 | 138 | .mdi-checkbox-blank-circle { 139 | color: #9ab3ff; 140 | } 141 | 142 | .mdi-checkbox-blank-circle-outline { 143 | color: #d9d9e0; 144 | } 145 | 146 | .flex-wrapper { display: flex; } 147 | .flex-wrapper a { display: inline-flex; } 148 | 149 | .name-org { 150 | font-size: 0.8rem; 151 | color: #83a5af; 152 | text-decoration: none; 153 | } 154 | 155 | .name-repo { 156 | color: #528290; 157 | font-weight: bold; 158 | text-decoration: none; 159 | padding: 1px 0; 160 | } 161 | 162 | .name-repo:hover, 163 | .name-org:hover { 164 | border-bottom: solid 1px #cccaca; 165 | } 166 | 167 | .separator { 168 | color: #83a5af; 169 | margin: 0 0.2rem; 170 | } 171 | 172 | .repo-name { 173 | /* 174 | @todo: hardcoding. need to figure out how to make it stretch to name, and no wrapping 175 | */ 176 | min-width: 230px; 177 | } 178 | 179 | .icon-tilde { 180 | color: #afaeae; 181 | } 182 | 183 | .icon-header-star-outline { 184 | font-size: 1.4rem; 185 | } 186 | 187 | .icon-star-outline { 188 | font-size: 1.2rem; 189 | color: #565fe4; 190 | } 191 | -------------------------------------------------------------------------------- /src/githubAPI.js: -------------------------------------------------------------------------------- 1 | const isGithubUserOrOrg = require('is-github-user-or-org') 2 | const Promise = require('bluebird') 3 | const Octokat = require('octokat') 4 | const { flatten, sortBy } = require('lodash') 5 | const config = require('../data.json') 6 | 7 | const opts = { 8 | token: config.token || process.env.MAINTAINER_DASHBOARD, 9 | endpoint: config.rootURL, // For gh-get deps 10 | rootURL: config.rootURL // For Octokat 11 | } 12 | 13 | const github = new Octokat(opts) 14 | 15 | const ORGS = config.orgs || [] 16 | const INDIVIDUAL_REPOS = config.individualRepos || [] 17 | 18 | // TODO Map files better 19 | var README, LICENSE, CONTRIBUTING 20 | const files = [ 21 | { 22 | 'name': 'readme', 23 | 'filenames': ['README.md', 'README.rst'] 24 | }, 25 | { 26 | 'name': 'license', 27 | 'filenames': ['LICENSE', 'LICENSE.md'] 28 | }, 29 | { 30 | 'name': 'contributing', 31 | 'filenames': ['CONTRIBUTING.md'] 32 | } 33 | ] 34 | 35 | // TODO Get PR Counts 36 | // function getPRCounts (repo) { 37 | // // Throttled at 30 per minute. TODO Implement a good throttler here. 38 | // // Promise.resolve github.search.issues.fetch({q: 'type:pr is:open repo:' + repo.fullName}) 39 | // // .then (openPRs) => 40 | // repo.openPRsCount = 'TODO' // openPRs.totalCount 41 | // return repo 42 | // } 43 | 44 | function loadStats () { 45 | return github.rateLimit.fetch() 46 | } 47 | 48 | // recursively fetch all "pages" (groups of up to 100 repos) from Github API 49 | function thisAndFollowingPages (thisPage) { 50 | if (thisPage.nextPageUrl == null) { 51 | return Promise.resolve(thisPage.items) 52 | } 53 | return thisPage 54 | .nextPage.fetch() 55 | .then(nextPage => thisAndFollowingPages(nextPage)) 56 | .then(followingPages => { 57 | const repos = thisPage.items 58 | repos.push(...Array.from(followingPages || [])) 59 | return repos 60 | }) 61 | } 62 | 63 | function getFiles (repos) { 64 | repos = sortBy(repos, 'fullName') 65 | return Promise.map(repos, repo => { 66 | repo.files = {} 67 | return Promise.map(files, file => { 68 | // TODO Get README using GitHub API for that 69 | // TODO Look into a package for this, if not, extract 70 | if (file.name === 'readme') { 71 | // console.log('Above the README getter', repo.files[file.name.toUpperCase()]) 72 | return github.repos(repo.fullName).readme.fetch() 73 | .then(res => res.readBinary()) 74 | .then(res => (repo.files[file.name.toUpperCase()] = res)) 75 | .catch(err => { 76 | if (err) { 77 | // console.log('Error getting README', err) 78 | // DO NOT LOG. It will show up in the dashboard. 79 | } 80 | }) 81 | } else if (file.name === 'license') { 82 | return github.fromUrl(`/repos/${repo.fullName}/license`).fetch() 83 | .then(res => res.readBinary()) 84 | .then(res => (repo.files[file.name.toUpperCase()] = res)) 85 | .catch(err => { 86 | if (err) { 87 | // console.log('Error getting license', err) 88 | // DO NOT LOG. It will show up in the dashboard. 89 | } 90 | }) 91 | } else { 92 | return Promise.map(file.filenames, filename => { 93 | return github.repos(repo.fullName).contents(filename).readBinary() 94 | .then(res => (repo.files[file.name.toUpperCase()] = res)) 95 | .catch(err => { 96 | if (err) { 97 | // DO NOT LOG 98 | } 99 | }) 100 | }) 101 | } 102 | }) 103 | }).then((res) => { 104 | return repos 105 | }) 106 | } 107 | 108 | function loadRepos () { 109 | return Promise.map(ORGS, org => { 110 | return isGithubUserOrOrg(org, opts).then(res => { 111 | if (res === 'Organization') { 112 | return github 113 | .orgs(org) 114 | .repos.fetch({ per_page: 100 }) 115 | .then(firstPage => thisAndFollowingPages(firstPage)) 116 | // .then(repos => { 117 | // return Promise.map(repos, repo => { 118 | // return getPRCounts(repo) 119 | // }) 120 | // }) 121 | } else { 122 | return github 123 | .users(org) 124 | .repos.fetch({ per_page: 100 }) 125 | .then(firstPage => thisAndFollowingPages(firstPage)) 126 | // .then(repos => { 127 | // return Promise.map(repos, repo => { 128 | // return getPRCounts(repo) 129 | // }) 130 | // }) 131 | } 132 | }) 133 | }) 134 | .then(repos => flatten(repos)) 135 | .then(allRepos => { 136 | return Promise.map(INDIVIDUAL_REPOS, repoName => { 137 | return github.repos.apply(null, repoName.split('/')).fetch().then(repo => { 138 | return repo // getPRCounts(repo) 139 | }) 140 | }).then(individualRepos => { 141 | return allRepos.concat(individualRepos) 142 | }) 143 | }) 144 | } 145 | 146 | module.exports = { 147 | loadStats, 148 | thisAndFollowingPages, 149 | getFiles, 150 | loadRepos 151 | } 152 | -------------------------------------------------------------------------------- /src/RepoMatrix.js: -------------------------------------------------------------------------------- 1 | /* 2 | * decaffeinate suggestions: 3 | * DS101: Remove unnecessary use of Array.from 4 | * DS102: Remove unnecessary code created because of implicit returns 5 | * DS206: Consider reworking classes to avoid initClass 6 | * DS207: Consider shorter variations of null checks 7 | * Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md 8 | */ 9 | 10 | const { round, size, split } = require('lodash') 11 | const $ = require('jquery') 12 | const lib = require('./lib/') 13 | const githubAPI = require('./githubAPI.js') 14 | const checkVitality = require('./checks.js') 15 | 16 | require('datatables.net')() 17 | require('datatables.net-fixedheader')() 18 | const { a, div, p, i, span, renderable, table, tbody, td, text, th, thead, tr } = require('teacup') 19 | 20 | $.fn.center = function () { 21 | this.css('position', 'absolute') 22 | this.css('top', `${Math.max(0, ($(window).height() - $(this).outerHeight()) / 2 + $(window).scrollTop())}px`) 23 | this.css('left', `${Math.max(0, ($(window).width() - $(this).outerWidth()) / 2 + $(window).scrollLeft())}px`) 24 | return this 25 | } 26 | 27 | let RepoMatrix = (() => { 28 | var RepoMatrix = class RepoMatrix { 29 | static initClass () { 30 | this.matrix = renderable(repos => { 31 | return table({ class: 'stripe order-column compact cell-border' }, () => { 32 | var vitality = checkVitality() 33 | let name 34 | thead(() => { 35 | tr(() => { 36 | th({ class: 'begin' }, () => 'Repository') 37 | th({ class: 'left readme', colspan: 2, style: 'background-color:green' }, () => 'README.md') 38 | th({ class: 'left files', colspan: 2, style: 'background-color:blue' }, () => 'Files') 39 | th({ class: 'left sections', colspan: size(vitality.readme.items), style: 'background-color:orange' }, () => 'Sections') 40 | // th({ class: 'left badges', colspan: size(vitality.readme.badges) }, () => 'Badges') 41 | return th({ class: 'left', colspan: 3, style: 'background-color:black' }, () => 'Github') 42 | }) 43 | return tr(() => { 44 | th({ class: 'left repo' }, () => 'Repo') // Name 45 | th(() => 'README') // README.md 46 | th(() => '> 500 chars') // README.md 47 | th(() => 'LICENSE') // Files 48 | th(() => 'CONTRIBUTING') // Files 49 | for (name in vitality.readme.sections) { 50 | th(() => name) // Sections 51 | } 52 | // for (name in vitality.readme.badges) { 53 | // th(() => name) // Badges 54 | // } 55 | th(() => 'Stars') // Github 56 | return th(() => 'Open Issues') 57 | }) 58 | }) // Github 59 | // th => 'Open PRs' # Github 60 | return tbody(() => { 61 | return Array.from(repos).filter(repo => !repo.private).map(({ fullName, files, stargazersCount, openIssuesCount }) => 62 | tr(() => { 63 | let nameArray = split(fullName, '/') 64 | 65 | td({ class: 'left repo-name' }, () => { 66 | a({ 67 | class: 'name-org', 68 | href: `https://github.com/${nameArray[0]}`, 69 | target: '_name' 70 | }, () => nameArray[0]) 71 | span({class: 'separator'}, () => '/') 72 | a({ 73 | class: 'name-repo', 74 | href: `https://github.com/${nameArray[0]}/${nameArray[1]}`, 75 | target: '_name' 76 | }, () => nameArray[1]) 77 | }) 78 | 79 | vitality = checkVitality(files, fullName, stargazersCount, openIssuesCount) 80 | 81 | td({ class: 'no-padding' }, () => this.renderCheck(vitality.readme.content)) // README.md 82 | td({ class: 'no-padding' }, () => this.renderCheck(vitality.readme.charLength())) // README.md 83 | td({ class: 'no-padding' }, () => this.renderCheck(vitality.license)) // Files 84 | td({ class: 'no-padding' }, () => this.renderCheck(vitality.contribute)) // Files 85 | for (name in vitality.readme.items) { 86 | if (name === 'ToC') { 87 | td({ class: 'no-padding' }, () => this.renderCheck(vitality.readme.toc())) 88 | } else if (name === 'Usage' || name === 'Install') { 89 | td({ class: 'no-padding' }, () => this.renderCheck(vitality.readme.checkCodeSections(name))) 90 | } else if (name === 'TODO') { 91 | td({ class: 'no-padding' }, () => this.renderCheck(vitality.readme.noTODOs())) 92 | } else { 93 | td({ class: 'no-padding' }, () => this.renderCheck(vitality.readme.section(name))) 94 | } 95 | } 96 | 97 | // TODO Reenable badges 98 | // for (name in vitality.readme.badges) { 99 | // expectedMarkdown = vitality.readme.items[fullName] 100 | // td({ class: 'no-padding' }, () => this.renderCheck((files.README != null ? files.README.indexOf(expectedMarkdown) : undefined) >= 0)) 101 | // } 102 | 103 | td(() => (stargazersCount ? text(stargazersCount) : ' ')) 104 | td(() => (openIssuesCount ? text(openIssuesCount) : ' ')) 105 | }) 106 | ) 107 | }) 108 | }) 109 | }) 110 | // td => (repo.openIssuesCount-repo.openPRsCount).toString() 111 | // td => repo.openPRsCount.toString() 112 | 113 | this.renderCheck = renderable(success => { 114 | if (success === 'na') { 115 | return div({ class: 'na' }, () => { 116 | i({ class: 'mdi' }, () => ' ') 117 | }) 118 | } else if (success) { 119 | return div({ class: 'success' }, () => { 120 | i({ class: 'mdi mdi-checkbox-blank-circle-outline' }, () => '✓') 121 | }) 122 | } else { 123 | return div({ class: 'failure' }, () => { 124 | i({ class: 'mdi mdi-checkbox-blank-circle' }, () => '✗') 125 | }) 126 | } 127 | }) 128 | 129 | this.stats = renderable(info => { 130 | if (info.err === 'Rate limiting is not enabled.') { 131 | return div({ class: 'stats' }, () => { 132 | return p(() => text(`Github API rate limiting is not enabled`)) 133 | }) 134 | } 135 | const { resources: { core: { limit, remaining, reset } } } = info 136 | return div({ class: 'stats' }, () => { 137 | const now = new Date().getTime() / 1000 // seconds 138 | const minutesUntilReset = (reset - now) / 60 // minutes 139 | return p(() => { 140 | text(`Github API calls: ${remaining} remaining of ${limit} limit per hour; clean slate in: ${round(minutesUntilReset, 1)} minutes. `) 141 | a({ href: 'https://status.github.com/' }, () => 'GitHub status.') 142 | }) 143 | }) 144 | }) 145 | } 146 | 147 | static start () { 148 | console.log('Starting webapp...') 149 | this.wave = lib.wave.loadingWave() 150 | return githubAPI.loadRepos() 151 | .catch(err => { 152 | lib.wave.killLoadingWave(this.wave) 153 | const errMsg = `Unable to access GitHub. Is it down?${err}` 154 | $(document.body).append(errMsg) 155 | throw err 156 | }) 157 | .then(repos => githubAPI.getFiles(repos)) 158 | .then(repos => { 159 | console.log('Repositories loaded...') 160 | lib.wave.killLoadingWave(this.wave) 161 | return this.showMatrix(repos) 162 | }) 163 | .then(() => githubAPI.loadStats()) 164 | // This catch // then feels wrong, because I'm putting logic in two places. 165 | .catch(err => { 166 | if (err.message.toString().indexOf('Rate limiting is not enabled.') !== -1) { 167 | $('#stats').append(this.stats({err: 'Rate limiting is not enabled.'})) 168 | } 169 | }) 170 | .then(info => { 171 | if (info) { 172 | $('#stats').append(this.stats(info)) 173 | } 174 | }) 175 | } 176 | 177 | static showMatrix (repos) { 178 | $('#matrix').append(this.matrix(repos)) 179 | return $('table').DataTable({ 180 | paging: false, 181 | searching: false, 182 | fixedHeader: true 183 | }) 184 | } 185 | } 186 | RepoMatrix.initClass() 187 | return RepoMatrix 188 | })() 189 | 190 | module.exports = RepoMatrix 191 | -------------------------------------------------------------------------------- /public/styles/materialdesignicons.css: -------------------------------------------------------------------------------- 1 | /* MaterialDesignIcons.com */ 2 | @font-face { 3 | font-family: "Material Design Icons"; 4 | src: url("../fonts/materialdesignicons-webfont.eot?v=2.0.46"); 5 | src: url("../fonts/materialdesignicons-webfont.eot?#iefix&v=2.0.46") format("embedded-opentype"), url("../fonts/materialdesignicons-webfont.woff2?v=2.0.46") format("woff2"), url("../fonts/materialdesignicons-webfont.woff?v=2.0.46") format("woff"), url("../fonts/materialdesignicons-webfont.ttf?v=2.0.46") format("truetype"), url("../fonts/materialdesignicons-webfont.svg?v=2.0.46#materialdesigniconsregular") format("svg"); 6 | font-weight: normal; 7 | font-style: normal; 8 | } 9 | .mdi:before, 10 | .mdi-set { 11 | display: inline-block; 12 | font: normal normal normal 24px/1 "Material Design Icons"; 13 | font-size: inherit; 14 | text-rendering: auto; 15 | line-height: inherit; 16 | -webkit-font-smoothing: antialiased; 17 | -moz-osx-font-smoothing: grayscale; 18 | } 19 | 20 | .mdi-access-point:before { 21 | content: "\F002"; 22 | } 23 | 24 | .mdi-access-point-network:before { 25 | content: "\F003"; 26 | } 27 | 28 | .mdi-account:before { 29 | content: "\F004"; 30 | } 31 | 32 | .mdi-account-alert:before { 33 | content: "\F005"; 34 | } 35 | 36 | .mdi-account-box:before { 37 | content: "\F006"; 38 | } 39 | 40 | .mdi-account-box-outline:before { 41 | content: "\F007"; 42 | } 43 | 44 | .mdi-account-card-details:before { 45 | content: "\F5D2"; 46 | } 47 | 48 | .mdi-account-check:before { 49 | content: "\F008"; 50 | } 51 | 52 | .mdi-account-circle:before { 53 | content: "\F009"; 54 | } 55 | 56 | .mdi-account-convert:before { 57 | content: "\F00A"; 58 | } 59 | 60 | .mdi-account-edit:before { 61 | content: "\F6BB"; 62 | } 63 | 64 | .mdi-account-key:before { 65 | content: "\F00B"; 66 | } 67 | 68 | .mdi-account-location:before { 69 | content: "\F00C"; 70 | } 71 | 72 | .mdi-account-minus:before { 73 | content: "\F00D"; 74 | } 75 | 76 | .mdi-account-multiple:before { 77 | content: "\F00E"; 78 | } 79 | 80 | .mdi-account-multiple-minus:before { 81 | content: "\F5D3"; 82 | } 83 | 84 | .mdi-account-multiple-outline:before { 85 | content: "\F00F"; 86 | } 87 | 88 | .mdi-account-multiple-plus:before { 89 | content: "\F010"; 90 | } 91 | 92 | .mdi-account-network:before { 93 | content: "\F011"; 94 | } 95 | 96 | .mdi-account-off:before { 97 | content: "\F012"; 98 | } 99 | 100 | .mdi-account-outline:before { 101 | content: "\F013"; 102 | } 103 | 104 | .mdi-account-plus:before { 105 | content: "\F014"; 106 | } 107 | 108 | .mdi-account-remove:before { 109 | content: "\F015"; 110 | } 111 | 112 | .mdi-account-search:before { 113 | content: "\F016"; 114 | } 115 | 116 | .mdi-account-settings:before { 117 | content: "\F630"; 118 | } 119 | 120 | .mdi-account-settings-variant:before { 121 | content: "\F631"; 122 | } 123 | 124 | .mdi-account-star:before { 125 | content: "\F017"; 126 | } 127 | 128 | .mdi-account-switch:before { 129 | content: "\F019"; 130 | } 131 | 132 | .mdi-adjust:before { 133 | content: "\F01A"; 134 | } 135 | 136 | .mdi-air-conditioner:before { 137 | content: "\F01B"; 138 | } 139 | 140 | .mdi-airballoon:before { 141 | content: "\F01C"; 142 | } 143 | 144 | .mdi-airplane:before { 145 | content: "\F01D"; 146 | } 147 | 148 | .mdi-airplane-landing:before { 149 | content: "\F5D4"; 150 | } 151 | 152 | .mdi-airplane-off:before { 153 | content: "\F01E"; 154 | } 155 | 156 | .mdi-airplane-takeoff:before { 157 | content: "\F5D5"; 158 | } 159 | 160 | .mdi-airplay:before { 161 | content: "\F01F"; 162 | } 163 | 164 | .mdi-alarm:before { 165 | content: "\F020"; 166 | } 167 | 168 | .mdi-alarm-bell:before { 169 | content: "\F78D"; 170 | } 171 | 172 | .mdi-alarm-check:before { 173 | content: "\F021"; 174 | } 175 | 176 | .mdi-alarm-light:before { 177 | content: "\F78E"; 178 | } 179 | 180 | .mdi-alarm-multiple:before { 181 | content: "\F022"; 182 | } 183 | 184 | .mdi-alarm-off:before { 185 | content: "\F023"; 186 | } 187 | 188 | .mdi-alarm-plus:before { 189 | content: "\F024"; 190 | } 191 | 192 | .mdi-alarm-snooze:before { 193 | content: "\F68D"; 194 | } 195 | 196 | .mdi-album:before { 197 | content: "\F025"; 198 | } 199 | 200 | .mdi-alert:before { 201 | content: "\F026"; 202 | } 203 | 204 | .mdi-alert-box:before { 205 | content: "\F027"; 206 | } 207 | 208 | .mdi-alert-circle:before { 209 | content: "\F028"; 210 | } 211 | 212 | .mdi-alert-circle-outline:before { 213 | content: "\F5D6"; 214 | } 215 | 216 | .mdi-alert-decagram:before { 217 | content: "\F6BC"; 218 | } 219 | 220 | .mdi-alert-octagon:before { 221 | content: "\F029"; 222 | } 223 | 224 | .mdi-alert-octagram:before { 225 | content: "\F766"; 226 | } 227 | 228 | .mdi-alert-outline:before { 229 | content: "\F02A"; 230 | } 231 | 232 | .mdi-all-inclusive:before { 233 | content: "\F6BD"; 234 | } 235 | 236 | .mdi-alpha:before { 237 | content: "\F02B"; 238 | } 239 | 240 | .mdi-alphabetical:before { 241 | content: "\F02C"; 242 | } 243 | 244 | .mdi-altimeter:before { 245 | content: "\F5D7"; 246 | } 247 | 248 | .mdi-amazon:before { 249 | content: "\F02D"; 250 | } 251 | 252 | .mdi-amazon-clouddrive:before { 253 | content: "\F02E"; 254 | } 255 | 256 | .mdi-ambulance:before { 257 | content: "\F02F"; 258 | } 259 | 260 | .mdi-amplifier:before { 261 | content: "\F030"; 262 | } 263 | 264 | .mdi-anchor:before { 265 | content: "\F031"; 266 | } 267 | 268 | .mdi-android:before { 269 | content: "\F032"; 270 | } 271 | 272 | .mdi-android-debug-bridge:before { 273 | content: "\F033"; 274 | } 275 | 276 | .mdi-android-head:before { 277 | content: "\F78F"; 278 | } 279 | 280 | .mdi-android-studio:before { 281 | content: "\F034"; 282 | } 283 | 284 | .mdi-angular:before { 285 | content: "\F6B1"; 286 | } 287 | 288 | .mdi-angularjs:before { 289 | content: "\F6BE"; 290 | } 291 | 292 | .mdi-animation:before { 293 | content: "\F5D8"; 294 | } 295 | 296 | .mdi-apple:before { 297 | content: "\F035"; 298 | } 299 | 300 | .mdi-apple-finder:before { 301 | content: "\F036"; 302 | } 303 | 304 | .mdi-apple-ios:before { 305 | content: "\F037"; 306 | } 307 | 308 | .mdi-apple-keyboard-caps:before { 309 | content: "\F632"; 310 | } 311 | 312 | .mdi-apple-keyboard-command:before { 313 | content: "\F633"; 314 | } 315 | 316 | .mdi-apple-keyboard-control:before { 317 | content: "\F634"; 318 | } 319 | 320 | .mdi-apple-keyboard-option:before { 321 | content: "\F635"; 322 | } 323 | 324 | .mdi-apple-keyboard-shift:before { 325 | content: "\F636"; 326 | } 327 | 328 | .mdi-apple-mobileme:before { 329 | content: "\F038"; 330 | } 331 | 332 | .mdi-apple-safari:before { 333 | content: "\F039"; 334 | } 335 | 336 | .mdi-application:before { 337 | content: "\F614"; 338 | } 339 | 340 | .mdi-approval:before { 341 | content: "\F790"; 342 | } 343 | 344 | .mdi-apps:before { 345 | content: "\F03B"; 346 | } 347 | 348 | .mdi-archive:before { 349 | content: "\F03C"; 350 | } 351 | 352 | .mdi-arrange-bring-forward:before { 353 | content: "\F03D"; 354 | } 355 | 356 | .mdi-arrange-bring-to-front:before { 357 | content: "\F03E"; 358 | } 359 | 360 | .mdi-arrange-send-backward:before { 361 | content: "\F03F"; 362 | } 363 | 364 | .mdi-arrange-send-to-back:before { 365 | content: "\F040"; 366 | } 367 | 368 | .mdi-arrow-all:before { 369 | content: "\F041"; 370 | } 371 | 372 | .mdi-arrow-bottom-left:before { 373 | content: "\F042"; 374 | } 375 | 376 | .mdi-arrow-bottom-right:before { 377 | content: "\F043"; 378 | } 379 | 380 | .mdi-arrow-collapse:before { 381 | content: "\F615"; 382 | } 383 | 384 | .mdi-arrow-collapse-all:before { 385 | content: "\F044"; 386 | } 387 | 388 | .mdi-arrow-collapse-down:before { 389 | content: "\F791"; 390 | } 391 | 392 | .mdi-arrow-collapse-left:before { 393 | content: "\F792"; 394 | } 395 | 396 | .mdi-arrow-collapse-right:before { 397 | content: "\F793"; 398 | } 399 | 400 | .mdi-arrow-collapse-up:before { 401 | content: "\F794"; 402 | } 403 | 404 | .mdi-arrow-down:before { 405 | content: "\F045"; 406 | } 407 | 408 | .mdi-arrow-down-bold:before { 409 | content: "\F72D"; 410 | } 411 | 412 | .mdi-arrow-down-bold-box:before { 413 | content: "\F72E"; 414 | } 415 | 416 | .mdi-arrow-down-bold-box-outline:before { 417 | content: "\F72F"; 418 | } 419 | 420 | .mdi-arrow-down-bold-circle:before { 421 | content: "\F047"; 422 | } 423 | 424 | .mdi-arrow-down-bold-circle-outline:before { 425 | content: "\F048"; 426 | } 427 | 428 | .mdi-arrow-down-bold-hexagon-outline:before { 429 | content: "\F049"; 430 | } 431 | 432 | .mdi-arrow-down-box:before { 433 | content: "\F6BF"; 434 | } 435 | 436 | .mdi-arrow-down-drop-circle:before { 437 | content: "\F04A"; 438 | } 439 | 440 | .mdi-arrow-down-drop-circle-outline:before { 441 | content: "\F04B"; 442 | } 443 | 444 | .mdi-arrow-down-thick:before { 445 | content: "\F046"; 446 | } 447 | 448 | .mdi-arrow-expand:before { 449 | content: "\F616"; 450 | } 451 | 452 | .mdi-arrow-expand-all:before { 453 | content: "\F04C"; 454 | } 455 | 456 | .mdi-arrow-expand-down:before { 457 | content: "\F795"; 458 | } 459 | 460 | .mdi-arrow-expand-left:before { 461 | content: "\F796"; 462 | } 463 | 464 | .mdi-arrow-expand-right:before { 465 | content: "\F797"; 466 | } 467 | 468 | .mdi-arrow-expand-up:before { 469 | content: "\F798"; 470 | } 471 | 472 | .mdi-arrow-left:before { 473 | content: "\F04D"; 474 | } 475 | 476 | .mdi-arrow-left-bold:before { 477 | content: "\F730"; 478 | } 479 | 480 | .mdi-arrow-left-bold-box:before { 481 | content: "\F731"; 482 | } 483 | 484 | .mdi-arrow-left-bold-box-outline:before { 485 | content: "\F732"; 486 | } 487 | 488 | .mdi-arrow-left-bold-circle:before { 489 | content: "\F04F"; 490 | } 491 | 492 | .mdi-arrow-left-bold-circle-outline:before { 493 | content: "\F050"; 494 | } 495 | 496 | .mdi-arrow-left-bold-hexagon-outline:before { 497 | content: "\F051"; 498 | } 499 | 500 | .mdi-arrow-left-box:before { 501 | content: "\F6C0"; 502 | } 503 | 504 | .mdi-arrow-left-drop-circle:before { 505 | content: "\F052"; 506 | } 507 | 508 | .mdi-arrow-left-drop-circle-outline:before { 509 | content: "\F053"; 510 | } 511 | 512 | .mdi-arrow-left-thick:before { 513 | content: "\F04E"; 514 | } 515 | 516 | .mdi-arrow-right:before { 517 | content: "\F054"; 518 | } 519 | 520 | .mdi-arrow-right-bold:before { 521 | content: "\F733"; 522 | } 523 | 524 | .mdi-arrow-right-bold-box:before { 525 | content: "\F734"; 526 | } 527 | 528 | .mdi-arrow-right-bold-box-outline:before { 529 | content: "\F735"; 530 | } 531 | 532 | .mdi-arrow-right-bold-circle:before { 533 | content: "\F056"; 534 | } 535 | 536 | .mdi-arrow-right-bold-circle-outline:before { 537 | content: "\F057"; 538 | } 539 | 540 | .mdi-arrow-right-bold-hexagon-outline:before { 541 | content: "\F058"; 542 | } 543 | 544 | .mdi-arrow-right-box:before { 545 | content: "\F6C1"; 546 | } 547 | 548 | .mdi-arrow-right-drop-circle:before { 549 | content: "\F059"; 550 | } 551 | 552 | .mdi-arrow-right-drop-circle-outline:before { 553 | content: "\F05A"; 554 | } 555 | 556 | .mdi-arrow-right-thick:before { 557 | content: "\F055"; 558 | } 559 | 560 | .mdi-arrow-top-left:before { 561 | content: "\F05B"; 562 | } 563 | 564 | .mdi-arrow-top-right:before { 565 | content: "\F05C"; 566 | } 567 | 568 | .mdi-arrow-up:before { 569 | content: "\F05D"; 570 | } 571 | 572 | .mdi-arrow-up-bold:before { 573 | content: "\F736"; 574 | } 575 | 576 | .mdi-arrow-up-bold-box:before { 577 | content: "\F737"; 578 | } 579 | 580 | .mdi-arrow-up-bold-box-outline:before { 581 | content: "\F738"; 582 | } 583 | 584 | .mdi-arrow-up-bold-circle:before { 585 | content: "\F05F"; 586 | } 587 | 588 | .mdi-arrow-up-bold-circle-outline:before { 589 | content: "\F060"; 590 | } 591 | 592 | .mdi-arrow-up-bold-hexagon-outline:before { 593 | content: "\F061"; 594 | } 595 | 596 | .mdi-arrow-up-box:before { 597 | content: "\F6C2"; 598 | } 599 | 600 | .mdi-arrow-up-drop-circle:before { 601 | content: "\F062"; 602 | } 603 | 604 | .mdi-arrow-up-drop-circle-outline:before { 605 | content: "\F063"; 606 | } 607 | 608 | .mdi-arrow-up-thick:before { 609 | content: "\F05E"; 610 | } 611 | 612 | .mdi-assistant:before { 613 | content: "\F064"; 614 | } 615 | 616 | .mdi-asterisk:before { 617 | content: "\F6C3"; 618 | } 619 | 620 | .mdi-at:before { 621 | content: "\F065"; 622 | } 623 | 624 | .mdi-atom:before { 625 | content: "\F767"; 626 | } 627 | 628 | .mdi-attachment:before { 629 | content: "\F066"; 630 | } 631 | 632 | .mdi-audiobook:before { 633 | content: "\F067"; 634 | } 635 | 636 | .mdi-auto-fix:before { 637 | content: "\F068"; 638 | } 639 | 640 | .mdi-auto-upload:before { 641 | content: "\F069"; 642 | } 643 | 644 | .mdi-autorenew:before { 645 | content: "\F06A"; 646 | } 647 | 648 | .mdi-av-timer:before { 649 | content: "\F06B"; 650 | } 651 | 652 | .mdi-baby:before { 653 | content: "\F06C"; 654 | } 655 | 656 | .mdi-baby-buggy:before { 657 | content: "\F68E"; 658 | } 659 | 660 | .mdi-backburger:before { 661 | content: "\F06D"; 662 | } 663 | 664 | .mdi-backspace:before { 665 | content: "\F06E"; 666 | } 667 | 668 | .mdi-backup-restore:before { 669 | content: "\F06F"; 670 | } 671 | 672 | .mdi-bandcamp:before { 673 | content: "\F674"; 674 | } 675 | 676 | .mdi-bank:before { 677 | content: "\F070"; 678 | } 679 | 680 | .mdi-barcode:before { 681 | content: "\F071"; 682 | } 683 | 684 | .mdi-barcode-scan:before { 685 | content: "\F072"; 686 | } 687 | 688 | .mdi-barley:before { 689 | content: "\F073"; 690 | } 691 | 692 | .mdi-barrel:before { 693 | content: "\F074"; 694 | } 695 | 696 | .mdi-basecamp:before { 697 | content: "\F075"; 698 | } 699 | 700 | .mdi-basket:before { 701 | content: "\F076"; 702 | } 703 | 704 | .mdi-basket-fill:before { 705 | content: "\F077"; 706 | } 707 | 708 | .mdi-basket-unfill:before { 709 | content: "\F078"; 710 | } 711 | 712 | .mdi-battery:before { 713 | content: "\F079"; 714 | } 715 | 716 | .mdi-battery-10:before { 717 | content: "\F07A"; 718 | } 719 | 720 | .mdi-battery-20:before { 721 | content: "\F07B"; 722 | } 723 | 724 | .mdi-battery-30:before { 725 | content: "\F07C"; 726 | } 727 | 728 | .mdi-battery-40:before { 729 | content: "\F07D"; 730 | } 731 | 732 | .mdi-battery-50:before { 733 | content: "\F07E"; 734 | } 735 | 736 | .mdi-battery-60:before { 737 | content: "\F07F"; 738 | } 739 | 740 | .mdi-battery-70:before { 741 | content: "\F080"; 742 | } 743 | 744 | .mdi-battery-80:before { 745 | content: "\F081"; 746 | } 747 | 748 | .mdi-battery-90:before { 749 | content: "\F082"; 750 | } 751 | 752 | .mdi-battery-alert:before { 753 | content: "\F083"; 754 | } 755 | 756 | .mdi-battery-charging:before { 757 | content: "\F084"; 758 | } 759 | 760 | .mdi-battery-charging-100:before { 761 | content: "\F085"; 762 | } 763 | 764 | .mdi-battery-charging-20:before { 765 | content: "\F086"; 766 | } 767 | 768 | .mdi-battery-charging-30:before { 769 | content: "\F087"; 770 | } 771 | 772 | .mdi-battery-charging-40:before { 773 | content: "\F088"; 774 | } 775 | 776 | .mdi-battery-charging-60:before { 777 | content: "\F089"; 778 | } 779 | 780 | .mdi-battery-charging-80:before { 781 | content: "\F08A"; 782 | } 783 | 784 | .mdi-battery-charging-90:before { 785 | content: "\F08B"; 786 | } 787 | 788 | .mdi-battery-minus:before { 789 | content: "\F08C"; 790 | } 791 | 792 | .mdi-battery-negative:before { 793 | content: "\F08D"; 794 | } 795 | 796 | .mdi-battery-outline:before { 797 | content: "\F08E"; 798 | } 799 | 800 | .mdi-battery-plus:before { 801 | content: "\F08F"; 802 | } 803 | 804 | .mdi-battery-positive:before { 805 | content: "\F090"; 806 | } 807 | 808 | .mdi-battery-unknown:before { 809 | content: "\F091"; 810 | } 811 | 812 | .mdi-beach:before { 813 | content: "\F092"; 814 | } 815 | 816 | .mdi-beaker:before { 817 | content: "\F68F"; 818 | } 819 | 820 | .mdi-beats:before { 821 | content: "\F097"; 822 | } 823 | 824 | .mdi-beer:before { 825 | content: "\F098"; 826 | } 827 | 828 | .mdi-behance:before { 829 | content: "\F099"; 830 | } 831 | 832 | .mdi-bell:before { 833 | content: "\F09A"; 834 | } 835 | 836 | .mdi-bell-off:before { 837 | content: "\F09B"; 838 | } 839 | 840 | .mdi-bell-outline:before { 841 | content: "\F09C"; 842 | } 843 | 844 | .mdi-bell-plus:before { 845 | content: "\F09D"; 846 | } 847 | 848 | .mdi-bell-ring:before { 849 | content: "\F09E"; 850 | } 851 | 852 | .mdi-bell-ring-outline:before { 853 | content: "\F09F"; 854 | } 855 | 856 | .mdi-bell-sleep:before { 857 | content: "\F0A0"; 858 | } 859 | 860 | .mdi-beta:before { 861 | content: "\F0A1"; 862 | } 863 | 864 | .mdi-bible:before { 865 | content: "\F0A2"; 866 | } 867 | 868 | .mdi-bike:before { 869 | content: "\F0A3"; 870 | } 871 | 872 | .mdi-bing:before { 873 | content: "\F0A4"; 874 | } 875 | 876 | .mdi-binoculars:before { 877 | content: "\F0A5"; 878 | } 879 | 880 | .mdi-bio:before { 881 | content: "\F0A6"; 882 | } 883 | 884 | .mdi-biohazard:before { 885 | content: "\F0A7"; 886 | } 887 | 888 | .mdi-bitbucket:before { 889 | content: "\F0A8"; 890 | } 891 | 892 | .mdi-black-mesa:before { 893 | content: "\F0A9"; 894 | } 895 | 896 | .mdi-blackberry:before { 897 | content: "\F0AA"; 898 | } 899 | 900 | .mdi-blender:before { 901 | content: "\F0AB"; 902 | } 903 | 904 | .mdi-blinds:before { 905 | content: "\F0AC"; 906 | } 907 | 908 | .mdi-block-helper:before { 909 | content: "\F0AD"; 910 | } 911 | 912 | .mdi-blogger:before { 913 | content: "\F0AE"; 914 | } 915 | 916 | .mdi-bluetooth:before { 917 | content: "\F0AF"; 918 | } 919 | 920 | .mdi-bluetooth-audio:before { 921 | content: "\F0B0"; 922 | } 923 | 924 | .mdi-bluetooth-connect:before { 925 | content: "\F0B1"; 926 | } 927 | 928 | .mdi-bluetooth-off:before { 929 | content: "\F0B2"; 930 | } 931 | 932 | .mdi-bluetooth-settings:before { 933 | content: "\F0B3"; 934 | } 935 | 936 | .mdi-bluetooth-transfer:before { 937 | content: "\F0B4"; 938 | } 939 | 940 | .mdi-blur:before { 941 | content: "\F0B5"; 942 | } 943 | 944 | .mdi-blur-linear:before { 945 | content: "\F0B6"; 946 | } 947 | 948 | .mdi-blur-off:before { 949 | content: "\F0B7"; 950 | } 951 | 952 | .mdi-blur-radial:before { 953 | content: "\F0B8"; 954 | } 955 | 956 | .mdi-bomb:before { 957 | content: "\F690"; 958 | } 959 | 960 | .mdi-bomb-off:before { 961 | content: "\F6C4"; 962 | } 963 | 964 | .mdi-bone:before { 965 | content: "\F0B9"; 966 | } 967 | 968 | .mdi-book:before { 969 | content: "\F0BA"; 970 | } 971 | 972 | .mdi-book-minus:before { 973 | content: "\F5D9"; 974 | } 975 | 976 | .mdi-book-multiple:before { 977 | content: "\F0BB"; 978 | } 979 | 980 | .mdi-book-multiple-variant:before { 981 | content: "\F0BC"; 982 | } 983 | 984 | .mdi-book-open:before { 985 | content: "\F0BD"; 986 | } 987 | 988 | .mdi-book-open-page-variant:before { 989 | content: "\F5DA"; 990 | } 991 | 992 | .mdi-book-open-variant:before { 993 | content: "\F0BE"; 994 | } 995 | 996 | .mdi-book-plus:before { 997 | content: "\F5DB"; 998 | } 999 | 1000 | .mdi-book-secure:before { 1001 | content: "\F799"; 1002 | } 1003 | 1004 | .mdi-book-unsecure:before { 1005 | content: "\F79A"; 1006 | } 1007 | 1008 | .mdi-book-variant:before { 1009 | content: "\F0BF"; 1010 | } 1011 | 1012 | .mdi-bookmark:before { 1013 | content: "\F0C0"; 1014 | } 1015 | 1016 | .mdi-bookmark-check:before { 1017 | content: "\F0C1"; 1018 | } 1019 | 1020 | .mdi-bookmark-music:before { 1021 | content: "\F0C2"; 1022 | } 1023 | 1024 | .mdi-bookmark-outline:before { 1025 | content: "\F0C3"; 1026 | } 1027 | 1028 | .mdi-bookmark-plus:before { 1029 | content: "\F0C5"; 1030 | } 1031 | 1032 | .mdi-bookmark-plus-outline:before { 1033 | content: "\F0C4"; 1034 | } 1035 | 1036 | .mdi-bookmark-remove:before { 1037 | content: "\F0C6"; 1038 | } 1039 | 1040 | .mdi-boombox:before { 1041 | content: "\F5DC"; 1042 | } 1043 | 1044 | .mdi-bootstrap:before { 1045 | content: "\F6C5"; 1046 | } 1047 | 1048 | .mdi-border-all:before { 1049 | content: "\F0C7"; 1050 | } 1051 | 1052 | .mdi-border-bottom:before { 1053 | content: "\F0C8"; 1054 | } 1055 | 1056 | .mdi-border-color:before { 1057 | content: "\F0C9"; 1058 | } 1059 | 1060 | .mdi-border-horizontal:before { 1061 | content: "\F0CA"; 1062 | } 1063 | 1064 | .mdi-border-inside:before { 1065 | content: "\F0CB"; 1066 | } 1067 | 1068 | .mdi-border-left:before { 1069 | content: "\F0CC"; 1070 | } 1071 | 1072 | .mdi-border-none:before { 1073 | content: "\F0CD"; 1074 | } 1075 | 1076 | .mdi-border-outside:before { 1077 | content: "\F0CE"; 1078 | } 1079 | 1080 | .mdi-border-right:before { 1081 | content: "\F0CF"; 1082 | } 1083 | 1084 | .mdi-border-style:before { 1085 | content: "\F0D0"; 1086 | } 1087 | 1088 | .mdi-border-top:before { 1089 | content: "\F0D1"; 1090 | } 1091 | 1092 | .mdi-border-vertical:before { 1093 | content: "\F0D2"; 1094 | } 1095 | 1096 | .mdi-bow-tie:before { 1097 | content: "\F677"; 1098 | } 1099 | 1100 | .mdi-bowl:before { 1101 | content: "\F617"; 1102 | } 1103 | 1104 | .mdi-bowling:before { 1105 | content: "\F0D3"; 1106 | } 1107 | 1108 | .mdi-box:before { 1109 | content: "\F0D4"; 1110 | } 1111 | 1112 | .mdi-box-cutter:before { 1113 | content: "\F0D5"; 1114 | } 1115 | 1116 | .mdi-box-shadow:before { 1117 | content: "\F637"; 1118 | } 1119 | 1120 | .mdi-bridge:before { 1121 | content: "\F618"; 1122 | } 1123 | 1124 | .mdi-briefcase:before { 1125 | content: "\F0D6"; 1126 | } 1127 | 1128 | .mdi-briefcase-check:before { 1129 | content: "\F0D7"; 1130 | } 1131 | 1132 | .mdi-briefcase-download:before { 1133 | content: "\F0D8"; 1134 | } 1135 | 1136 | .mdi-briefcase-upload:before { 1137 | content: "\F0D9"; 1138 | } 1139 | 1140 | .mdi-brightness-1:before { 1141 | content: "\F0DA"; 1142 | } 1143 | 1144 | .mdi-brightness-2:before { 1145 | content: "\F0DB"; 1146 | } 1147 | 1148 | .mdi-brightness-3:before { 1149 | content: "\F0DC"; 1150 | } 1151 | 1152 | .mdi-brightness-4:before { 1153 | content: "\F0DD"; 1154 | } 1155 | 1156 | .mdi-brightness-5:before { 1157 | content: "\F0DE"; 1158 | } 1159 | 1160 | .mdi-brightness-6:before { 1161 | content: "\F0DF"; 1162 | } 1163 | 1164 | .mdi-brightness-7:before { 1165 | content: "\F0E0"; 1166 | } 1167 | 1168 | .mdi-brightness-auto:before { 1169 | content: "\F0E1"; 1170 | } 1171 | 1172 | .mdi-broom:before { 1173 | content: "\F0E2"; 1174 | } 1175 | 1176 | .mdi-brush:before { 1177 | content: "\F0E3"; 1178 | } 1179 | 1180 | .mdi-buffer:before { 1181 | content: "\F619"; 1182 | } 1183 | 1184 | .mdi-bug:before { 1185 | content: "\F0E4"; 1186 | } 1187 | 1188 | .mdi-bulletin-board:before { 1189 | content: "\F0E5"; 1190 | } 1191 | 1192 | .mdi-bullhorn:before { 1193 | content: "\F0E6"; 1194 | } 1195 | 1196 | .mdi-bullseye:before { 1197 | content: "\F5DD"; 1198 | } 1199 | 1200 | .mdi-burst-mode:before { 1201 | content: "\F5DE"; 1202 | } 1203 | 1204 | .mdi-bus:before { 1205 | content: "\F0E7"; 1206 | } 1207 | 1208 | .mdi-bus-articulated-end:before { 1209 | content: "\F79B"; 1210 | } 1211 | 1212 | .mdi-bus-articulated-front:before { 1213 | content: "\F79C"; 1214 | } 1215 | 1216 | .mdi-bus-double-decker:before { 1217 | content: "\F79D"; 1218 | } 1219 | 1220 | .mdi-bus-school:before { 1221 | content: "\F79E"; 1222 | } 1223 | 1224 | .mdi-bus-side:before { 1225 | content: "\F79F"; 1226 | } 1227 | 1228 | .mdi-cached:before { 1229 | content: "\F0E8"; 1230 | } 1231 | 1232 | .mdi-cake:before { 1233 | content: "\F0E9"; 1234 | } 1235 | 1236 | .mdi-cake-layered:before { 1237 | content: "\F0EA"; 1238 | } 1239 | 1240 | .mdi-cake-variant:before { 1241 | content: "\F0EB"; 1242 | } 1243 | 1244 | .mdi-calculator:before { 1245 | content: "\F0EC"; 1246 | } 1247 | 1248 | .mdi-calendar:before { 1249 | content: "\F0ED"; 1250 | } 1251 | 1252 | .mdi-calendar-blank:before { 1253 | content: "\F0EE"; 1254 | } 1255 | 1256 | .mdi-calendar-check:before { 1257 | content: "\F0EF"; 1258 | } 1259 | 1260 | .mdi-calendar-clock:before { 1261 | content: "\F0F0"; 1262 | } 1263 | 1264 | .mdi-calendar-multiple:before { 1265 | content: "\F0F1"; 1266 | } 1267 | 1268 | .mdi-calendar-multiple-check:before { 1269 | content: "\F0F2"; 1270 | } 1271 | 1272 | .mdi-calendar-plus:before { 1273 | content: "\F0F3"; 1274 | } 1275 | 1276 | .mdi-calendar-question:before { 1277 | content: "\F691"; 1278 | } 1279 | 1280 | .mdi-calendar-range:before { 1281 | content: "\F678"; 1282 | } 1283 | 1284 | .mdi-calendar-remove:before { 1285 | content: "\F0F4"; 1286 | } 1287 | 1288 | .mdi-calendar-text:before { 1289 | content: "\F0F5"; 1290 | } 1291 | 1292 | .mdi-calendar-today:before { 1293 | content: "\F0F6"; 1294 | } 1295 | 1296 | .mdi-call-made:before { 1297 | content: "\F0F7"; 1298 | } 1299 | 1300 | .mdi-call-merge:before { 1301 | content: "\F0F8"; 1302 | } 1303 | 1304 | .mdi-call-missed:before { 1305 | content: "\F0F9"; 1306 | } 1307 | 1308 | .mdi-call-received:before { 1309 | content: "\F0FA"; 1310 | } 1311 | 1312 | .mdi-call-split:before { 1313 | content: "\F0FB"; 1314 | } 1315 | 1316 | .mdi-camcorder:before { 1317 | content: "\F0FC"; 1318 | } 1319 | 1320 | .mdi-camcorder-box:before { 1321 | content: "\F0FD"; 1322 | } 1323 | 1324 | .mdi-camcorder-box-off:before { 1325 | content: "\F0FE"; 1326 | } 1327 | 1328 | .mdi-camcorder-off:before { 1329 | content: "\F0FF"; 1330 | } 1331 | 1332 | .mdi-camera:before { 1333 | content: "\F100"; 1334 | } 1335 | 1336 | .mdi-camera-burst:before { 1337 | content: "\F692"; 1338 | } 1339 | 1340 | .mdi-camera-enhance:before { 1341 | content: "\F101"; 1342 | } 1343 | 1344 | .mdi-camera-front:before { 1345 | content: "\F102"; 1346 | } 1347 | 1348 | .mdi-camera-front-variant:before { 1349 | content: "\F103"; 1350 | } 1351 | 1352 | .mdi-camera-gopro:before { 1353 | content: "\F7A0"; 1354 | } 1355 | 1356 | .mdi-camera-iris:before { 1357 | content: "\F104"; 1358 | } 1359 | 1360 | .mdi-camera-metering-center:before { 1361 | content: "\F7A1"; 1362 | } 1363 | 1364 | .mdi-camera-metering-matrix:before { 1365 | content: "\F7A2"; 1366 | } 1367 | 1368 | .mdi-camera-metering-partial:before { 1369 | content: "\F7A3"; 1370 | } 1371 | 1372 | .mdi-camera-metering-spot:before { 1373 | content: "\F7A4"; 1374 | } 1375 | 1376 | .mdi-camera-off:before { 1377 | content: "\F5DF"; 1378 | } 1379 | 1380 | .mdi-camera-party-mode:before { 1381 | content: "\F105"; 1382 | } 1383 | 1384 | .mdi-camera-rear:before { 1385 | content: "\F106"; 1386 | } 1387 | 1388 | .mdi-camera-rear-variant:before { 1389 | content: "\F107"; 1390 | } 1391 | 1392 | .mdi-camera-switch:before { 1393 | content: "\F108"; 1394 | } 1395 | 1396 | .mdi-camera-timer:before { 1397 | content: "\F109"; 1398 | } 1399 | 1400 | .mdi-cancel:before { 1401 | content: "\F739"; 1402 | } 1403 | 1404 | .mdi-candle:before { 1405 | content: "\F5E2"; 1406 | } 1407 | 1408 | .mdi-candycane:before { 1409 | content: "\F10A"; 1410 | } 1411 | 1412 | .mdi-cannabis:before { 1413 | content: "\F7A5"; 1414 | } 1415 | 1416 | .mdi-car:before { 1417 | content: "\F10B"; 1418 | } 1419 | 1420 | .mdi-car-battery:before { 1421 | content: "\F10C"; 1422 | } 1423 | 1424 | .mdi-car-connected:before { 1425 | content: "\F10D"; 1426 | } 1427 | 1428 | .mdi-car-convertable:before { 1429 | content: "\F7A6"; 1430 | } 1431 | 1432 | .mdi-car-estate:before { 1433 | content: "\F7A7"; 1434 | } 1435 | 1436 | .mdi-car-hatchback:before { 1437 | content: "\F7A8"; 1438 | } 1439 | 1440 | .mdi-car-pickup:before { 1441 | content: "\F7A9"; 1442 | } 1443 | 1444 | .mdi-car-side:before { 1445 | content: "\F7AA"; 1446 | } 1447 | 1448 | .mdi-car-sports:before { 1449 | content: "\F7AB"; 1450 | } 1451 | 1452 | .mdi-car-wash:before { 1453 | content: "\F10E"; 1454 | } 1455 | 1456 | .mdi-caravan:before { 1457 | content: "\F7AC"; 1458 | } 1459 | 1460 | .mdi-cards:before { 1461 | content: "\F638"; 1462 | } 1463 | 1464 | .mdi-cards-outline:before { 1465 | content: "\F639"; 1466 | } 1467 | 1468 | .mdi-cards-playing-outline:before { 1469 | content: "\F63A"; 1470 | } 1471 | 1472 | .mdi-cards-variant:before { 1473 | content: "\F6C6"; 1474 | } 1475 | 1476 | .mdi-carrot:before { 1477 | content: "\F10F"; 1478 | } 1479 | 1480 | .mdi-cart:before { 1481 | content: "\F110"; 1482 | } 1483 | 1484 | .mdi-cart-off:before { 1485 | content: "\F66B"; 1486 | } 1487 | 1488 | .mdi-cart-outline:before { 1489 | content: "\F111"; 1490 | } 1491 | 1492 | .mdi-cart-plus:before { 1493 | content: "\F112"; 1494 | } 1495 | 1496 | .mdi-case-sensitive-alt:before { 1497 | content: "\F113"; 1498 | } 1499 | 1500 | .mdi-cash:before { 1501 | content: "\F114"; 1502 | } 1503 | 1504 | .mdi-cash-100:before { 1505 | content: "\F115"; 1506 | } 1507 | 1508 | .mdi-cash-multiple:before { 1509 | content: "\F116"; 1510 | } 1511 | 1512 | .mdi-cash-usd:before { 1513 | content: "\F117"; 1514 | } 1515 | 1516 | .mdi-cast:before { 1517 | content: "\F118"; 1518 | } 1519 | 1520 | .mdi-cast-connected:before { 1521 | content: "\F119"; 1522 | } 1523 | 1524 | .mdi-cast-off:before { 1525 | content: "\F789"; 1526 | } 1527 | 1528 | .mdi-castle:before { 1529 | content: "\F11A"; 1530 | } 1531 | 1532 | .mdi-cat:before { 1533 | content: "\F11B"; 1534 | } 1535 | 1536 | .mdi-cctv:before { 1537 | content: "\F7AD"; 1538 | } 1539 | 1540 | .mdi-ceiling-light:before { 1541 | content: "\F768"; 1542 | } 1543 | 1544 | .mdi-cellphone:before { 1545 | content: "\F11C"; 1546 | } 1547 | 1548 | .mdi-cellphone-android:before { 1549 | content: "\F11D"; 1550 | } 1551 | 1552 | .mdi-cellphone-basic:before { 1553 | content: "\F11E"; 1554 | } 1555 | 1556 | .mdi-cellphone-dock:before { 1557 | content: "\F11F"; 1558 | } 1559 | 1560 | .mdi-cellphone-iphone:before { 1561 | content: "\F120"; 1562 | } 1563 | 1564 | .mdi-cellphone-link:before { 1565 | content: "\F121"; 1566 | } 1567 | 1568 | .mdi-cellphone-link-off:before { 1569 | content: "\F122"; 1570 | } 1571 | 1572 | .mdi-cellphone-settings:before { 1573 | content: "\F123"; 1574 | } 1575 | 1576 | .mdi-certificate:before { 1577 | content: "\F124"; 1578 | } 1579 | 1580 | .mdi-chair-school:before { 1581 | content: "\F125"; 1582 | } 1583 | 1584 | .mdi-chart-arc:before { 1585 | content: "\F126"; 1586 | } 1587 | 1588 | .mdi-chart-areaspline:before { 1589 | content: "\F127"; 1590 | } 1591 | 1592 | .mdi-chart-bar:before { 1593 | content: "\F128"; 1594 | } 1595 | 1596 | .mdi-chart-bar-stacked:before { 1597 | content: "\F769"; 1598 | } 1599 | 1600 | .mdi-chart-bubble:before { 1601 | content: "\F5E3"; 1602 | } 1603 | 1604 | .mdi-chart-donut:before { 1605 | content: "\F7AE"; 1606 | } 1607 | 1608 | .mdi-chart-donut-variant:before { 1609 | content: "\F7AF"; 1610 | } 1611 | 1612 | .mdi-chart-gantt:before { 1613 | content: "\F66C"; 1614 | } 1615 | 1616 | .mdi-chart-histogram:before { 1617 | content: "\F129"; 1618 | } 1619 | 1620 | .mdi-chart-line:before { 1621 | content: "\F12A"; 1622 | } 1623 | 1624 | .mdi-chart-line-stacked:before { 1625 | content: "\F76A"; 1626 | } 1627 | 1628 | .mdi-chart-line-variant:before { 1629 | content: "\F7B0"; 1630 | } 1631 | 1632 | .mdi-chart-pie:before { 1633 | content: "\F12B"; 1634 | } 1635 | 1636 | .mdi-chart-scatterplot-hexbin:before { 1637 | content: "\F66D"; 1638 | } 1639 | 1640 | .mdi-chart-timeline:before { 1641 | content: "\F66E"; 1642 | } 1643 | 1644 | .mdi-check:before { 1645 | content: "\F12C"; 1646 | } 1647 | 1648 | .mdi-check-all:before { 1649 | content: "\F12D"; 1650 | } 1651 | 1652 | .mdi-check-circle:before { 1653 | content: "\F5E0"; 1654 | } 1655 | 1656 | .mdi-check-circle-outline:before { 1657 | content: "\F5E1"; 1658 | } 1659 | 1660 | .mdi-checkbox-blank:before { 1661 | content: "\F12E"; 1662 | } 1663 | 1664 | .mdi-checkbox-blank-circle:before { 1665 | content: "\F12F"; 1666 | } 1667 | 1668 | .mdi-checkbox-blank-circle-outline:before { 1669 | content: "\F130"; 1670 | } 1671 | 1672 | .mdi-checkbox-blank-outline:before { 1673 | content: "\F131"; 1674 | } 1675 | 1676 | .mdi-checkbox-marked:before { 1677 | content: "\F132"; 1678 | } 1679 | 1680 | .mdi-checkbox-marked-circle:before { 1681 | content: "\F133"; 1682 | } 1683 | 1684 | .mdi-checkbox-marked-circle-outline:before { 1685 | content: "\F134"; 1686 | } 1687 | 1688 | .mdi-checkbox-marked-outline:before { 1689 | content: "\F135"; 1690 | } 1691 | 1692 | .mdi-checkbox-multiple-blank:before { 1693 | content: "\F136"; 1694 | } 1695 | 1696 | .mdi-checkbox-multiple-blank-circle:before { 1697 | content: "\F63B"; 1698 | } 1699 | 1700 | .mdi-checkbox-multiple-blank-circle-outline:before { 1701 | content: "\F63C"; 1702 | } 1703 | 1704 | .mdi-checkbox-multiple-blank-outline:before { 1705 | content: "\F137"; 1706 | } 1707 | 1708 | .mdi-checkbox-multiple-marked:before { 1709 | content: "\F138"; 1710 | } 1711 | 1712 | .mdi-checkbox-multiple-marked-circle:before { 1713 | content: "\F63D"; 1714 | } 1715 | 1716 | .mdi-checkbox-multiple-marked-circle-outline:before { 1717 | content: "\F63E"; 1718 | } 1719 | 1720 | .mdi-checkbox-multiple-marked-outline:before { 1721 | content: "\F139"; 1722 | } 1723 | 1724 | .mdi-checkerboard:before { 1725 | content: "\F13A"; 1726 | } 1727 | 1728 | .mdi-chemical-weapon:before { 1729 | content: "\F13B"; 1730 | } 1731 | 1732 | .mdi-chevron-double-down:before { 1733 | content: "\F13C"; 1734 | } 1735 | 1736 | .mdi-chevron-double-left:before { 1737 | content: "\F13D"; 1738 | } 1739 | 1740 | .mdi-chevron-double-right:before { 1741 | content: "\F13E"; 1742 | } 1743 | 1744 | .mdi-chevron-double-up:before { 1745 | content: "\F13F"; 1746 | } 1747 | 1748 | .mdi-chevron-down:before { 1749 | content: "\F140"; 1750 | } 1751 | 1752 | .mdi-chevron-left:before { 1753 | content: "\F141"; 1754 | } 1755 | 1756 | .mdi-chevron-right:before { 1757 | content: "\F142"; 1758 | } 1759 | 1760 | .mdi-chevron-up:before { 1761 | content: "\F143"; 1762 | } 1763 | 1764 | .mdi-chili-hot:before { 1765 | content: "\F7B1"; 1766 | } 1767 | 1768 | .mdi-chili-medium:before { 1769 | content: "\F7B2"; 1770 | } 1771 | 1772 | .mdi-chili-mild:before { 1773 | content: "\F7B3"; 1774 | } 1775 | 1776 | .mdi-chip:before { 1777 | content: "\F61A"; 1778 | } 1779 | 1780 | .mdi-church:before { 1781 | content: "\F144"; 1782 | } 1783 | 1784 | .mdi-circle:before { 1785 | content: "\F764"; 1786 | } 1787 | 1788 | .mdi-circle-outline:before { 1789 | content: "\F765"; 1790 | } 1791 | 1792 | .mdi-cisco-webex:before { 1793 | content: "\F145"; 1794 | } 1795 | 1796 | .mdi-city:before { 1797 | content: "\F146"; 1798 | } 1799 | 1800 | .mdi-clipboard:before { 1801 | content: "\F147"; 1802 | } 1803 | 1804 | .mdi-clipboard-account:before { 1805 | content: "\F148"; 1806 | } 1807 | 1808 | .mdi-clipboard-alert:before { 1809 | content: "\F149"; 1810 | } 1811 | 1812 | .mdi-clipboard-arrow-down:before { 1813 | content: "\F14A"; 1814 | } 1815 | 1816 | .mdi-clipboard-arrow-left:before { 1817 | content: "\F14B"; 1818 | } 1819 | 1820 | .mdi-clipboard-check:before { 1821 | content: "\F14C"; 1822 | } 1823 | 1824 | .mdi-clipboard-flow:before { 1825 | content: "\F6C7"; 1826 | } 1827 | 1828 | .mdi-clipboard-outline:before { 1829 | content: "\F14D"; 1830 | } 1831 | 1832 | .mdi-clipboard-plus:before { 1833 | content: "\F750"; 1834 | } 1835 | 1836 | .mdi-clipboard-text:before { 1837 | content: "\F14E"; 1838 | } 1839 | 1840 | .mdi-clippy:before { 1841 | content: "\F14F"; 1842 | } 1843 | 1844 | .mdi-clock:before { 1845 | content: "\F150"; 1846 | } 1847 | 1848 | .mdi-clock-alert:before { 1849 | content: "\F5CE"; 1850 | } 1851 | 1852 | .mdi-clock-end:before { 1853 | content: "\F151"; 1854 | } 1855 | 1856 | .mdi-clock-fast:before { 1857 | content: "\F152"; 1858 | } 1859 | 1860 | .mdi-clock-in:before { 1861 | content: "\F153"; 1862 | } 1863 | 1864 | .mdi-clock-out:before { 1865 | content: "\F154"; 1866 | } 1867 | 1868 | .mdi-clock-start:before { 1869 | content: "\F155"; 1870 | } 1871 | 1872 | .mdi-close:before { 1873 | content: "\F156"; 1874 | } 1875 | 1876 | .mdi-close-box:before { 1877 | content: "\F157"; 1878 | } 1879 | 1880 | .mdi-close-box-outline:before { 1881 | content: "\F158"; 1882 | } 1883 | 1884 | .mdi-close-circle:before { 1885 | content: "\F159"; 1886 | } 1887 | 1888 | .mdi-close-circle-outline:before { 1889 | content: "\F15A"; 1890 | } 1891 | 1892 | .mdi-close-network:before { 1893 | content: "\F15B"; 1894 | } 1895 | 1896 | .mdi-close-octagon:before { 1897 | content: "\F15C"; 1898 | } 1899 | 1900 | .mdi-close-octagon-outline:before { 1901 | content: "\F15D"; 1902 | } 1903 | 1904 | .mdi-close-outline:before { 1905 | content: "\F6C8"; 1906 | } 1907 | 1908 | .mdi-closed-caption:before { 1909 | content: "\F15E"; 1910 | } 1911 | 1912 | .mdi-cloud:before { 1913 | content: "\F15F"; 1914 | } 1915 | 1916 | .mdi-cloud-braces:before { 1917 | content: "\F7B4"; 1918 | } 1919 | 1920 | .mdi-cloud-check:before { 1921 | content: "\F160"; 1922 | } 1923 | 1924 | .mdi-cloud-circle:before { 1925 | content: "\F161"; 1926 | } 1927 | 1928 | .mdi-cloud-download:before { 1929 | content: "\F162"; 1930 | } 1931 | 1932 | .mdi-cloud-off-outline:before { 1933 | content: "\F164"; 1934 | } 1935 | 1936 | .mdi-cloud-outline:before { 1937 | content: "\F163"; 1938 | } 1939 | 1940 | .mdi-cloud-print:before { 1941 | content: "\F165"; 1942 | } 1943 | 1944 | .mdi-cloud-print-outline:before { 1945 | content: "\F166"; 1946 | } 1947 | 1948 | .mdi-cloud-sync:before { 1949 | content: "\F63F"; 1950 | } 1951 | 1952 | .mdi-cloud-tags:before { 1953 | content: "\F7B5"; 1954 | } 1955 | 1956 | .mdi-cloud-upload:before { 1957 | content: "\F167"; 1958 | } 1959 | 1960 | .mdi-code-array:before { 1961 | content: "\F168"; 1962 | } 1963 | 1964 | .mdi-code-braces:before { 1965 | content: "\F169"; 1966 | } 1967 | 1968 | .mdi-code-brackets:before { 1969 | content: "\F16A"; 1970 | } 1971 | 1972 | .mdi-code-equal:before { 1973 | content: "\F16B"; 1974 | } 1975 | 1976 | .mdi-code-greater-than:before { 1977 | content: "\F16C"; 1978 | } 1979 | 1980 | .mdi-code-greater-than-or-equal:before { 1981 | content: "\F16D"; 1982 | } 1983 | 1984 | .mdi-code-less-than:before { 1985 | content: "\F16E"; 1986 | } 1987 | 1988 | .mdi-code-less-than-or-equal:before { 1989 | content: "\F16F"; 1990 | } 1991 | 1992 | .mdi-code-not-equal:before { 1993 | content: "\F170"; 1994 | } 1995 | 1996 | .mdi-code-not-equal-variant:before { 1997 | content: "\F171"; 1998 | } 1999 | 2000 | .mdi-code-parentheses:before { 2001 | content: "\F172"; 2002 | } 2003 | 2004 | .mdi-code-string:before { 2005 | content: "\F173"; 2006 | } 2007 | 2008 | .mdi-code-tags:before { 2009 | content: "\F174"; 2010 | } 2011 | 2012 | .mdi-code-tags-check:before { 2013 | content: "\F693"; 2014 | } 2015 | 2016 | .mdi-codepen:before { 2017 | content: "\F175"; 2018 | } 2019 | 2020 | .mdi-coffee:before { 2021 | content: "\F176"; 2022 | } 2023 | 2024 | .mdi-coffee-outline:before { 2025 | content: "\F6C9"; 2026 | } 2027 | 2028 | .mdi-coffee-to-go:before { 2029 | content: "\F177"; 2030 | } 2031 | 2032 | .mdi-coin:before { 2033 | content: "\F178"; 2034 | } 2035 | 2036 | .mdi-coins:before { 2037 | content: "\F694"; 2038 | } 2039 | 2040 | .mdi-collage:before { 2041 | content: "\F640"; 2042 | } 2043 | 2044 | .mdi-color-helper:before { 2045 | content: "\F179"; 2046 | } 2047 | 2048 | .mdi-comment:before { 2049 | content: "\F17A"; 2050 | } 2051 | 2052 | .mdi-comment-account:before { 2053 | content: "\F17B"; 2054 | } 2055 | 2056 | .mdi-comment-account-outline:before { 2057 | content: "\F17C"; 2058 | } 2059 | 2060 | .mdi-comment-alert:before { 2061 | content: "\F17D"; 2062 | } 2063 | 2064 | .mdi-comment-alert-outline:before { 2065 | content: "\F17E"; 2066 | } 2067 | 2068 | .mdi-comment-check:before { 2069 | content: "\F17F"; 2070 | } 2071 | 2072 | .mdi-comment-check-outline:before { 2073 | content: "\F180"; 2074 | } 2075 | 2076 | .mdi-comment-multiple-outline:before { 2077 | content: "\F181"; 2078 | } 2079 | 2080 | .mdi-comment-outline:before { 2081 | content: "\F182"; 2082 | } 2083 | 2084 | .mdi-comment-plus-outline:before { 2085 | content: "\F183"; 2086 | } 2087 | 2088 | .mdi-comment-processing:before { 2089 | content: "\F184"; 2090 | } 2091 | 2092 | .mdi-comment-processing-outline:before { 2093 | content: "\F185"; 2094 | } 2095 | 2096 | .mdi-comment-question-outline:before { 2097 | content: "\F186"; 2098 | } 2099 | 2100 | .mdi-comment-remove-outline:before { 2101 | content: "\F187"; 2102 | } 2103 | 2104 | .mdi-comment-text:before { 2105 | content: "\F188"; 2106 | } 2107 | 2108 | .mdi-comment-text-outline:before { 2109 | content: "\F189"; 2110 | } 2111 | 2112 | .mdi-compare:before { 2113 | content: "\F18A"; 2114 | } 2115 | 2116 | .mdi-compass:before { 2117 | content: "\F18B"; 2118 | } 2119 | 2120 | .mdi-compass-outline:before { 2121 | content: "\F18C"; 2122 | } 2123 | 2124 | .mdi-console:before { 2125 | content: "\F18D"; 2126 | } 2127 | 2128 | .mdi-console-line:before { 2129 | content: "\F7B6"; 2130 | } 2131 | 2132 | .mdi-contact-mail:before { 2133 | content: "\F18E"; 2134 | } 2135 | 2136 | .mdi-contacts:before { 2137 | content: "\F6CA"; 2138 | } 2139 | 2140 | .mdi-content-copy:before { 2141 | content: "\F18F"; 2142 | } 2143 | 2144 | .mdi-content-cut:before { 2145 | content: "\F190"; 2146 | } 2147 | 2148 | .mdi-content-duplicate:before { 2149 | content: "\F191"; 2150 | } 2151 | 2152 | .mdi-content-paste:before { 2153 | content: "\F192"; 2154 | } 2155 | 2156 | .mdi-content-save:before { 2157 | content: "\F193"; 2158 | } 2159 | 2160 | .mdi-content-save-all:before { 2161 | content: "\F194"; 2162 | } 2163 | 2164 | .mdi-content-save-settings:before { 2165 | content: "\F61B"; 2166 | } 2167 | 2168 | .mdi-contrast:before { 2169 | content: "\F195"; 2170 | } 2171 | 2172 | .mdi-contrast-box:before { 2173 | content: "\F196"; 2174 | } 2175 | 2176 | .mdi-contrast-circle:before { 2177 | content: "\F197"; 2178 | } 2179 | 2180 | .mdi-cookie:before { 2181 | content: "\F198"; 2182 | } 2183 | 2184 | .mdi-copyright:before { 2185 | content: "\F5E6"; 2186 | } 2187 | 2188 | .mdi-corn:before { 2189 | content: "\F7B7"; 2190 | } 2191 | 2192 | .mdi-counter:before { 2193 | content: "\F199"; 2194 | } 2195 | 2196 | .mdi-cow:before { 2197 | content: "\F19A"; 2198 | } 2199 | 2200 | .mdi-creation:before { 2201 | content: "\F1C9"; 2202 | } 2203 | 2204 | .mdi-credit-card:before { 2205 | content: "\F19B"; 2206 | } 2207 | 2208 | .mdi-credit-card-multiple:before { 2209 | content: "\F19C"; 2210 | } 2211 | 2212 | .mdi-credit-card-off:before { 2213 | content: "\F5E4"; 2214 | } 2215 | 2216 | .mdi-credit-card-plus:before { 2217 | content: "\F675"; 2218 | } 2219 | 2220 | .mdi-credit-card-scan:before { 2221 | content: "\F19D"; 2222 | } 2223 | 2224 | .mdi-crop:before { 2225 | content: "\F19E"; 2226 | } 2227 | 2228 | .mdi-crop-free:before { 2229 | content: "\F19F"; 2230 | } 2231 | 2232 | .mdi-crop-landscape:before { 2233 | content: "\F1A0"; 2234 | } 2235 | 2236 | .mdi-crop-portrait:before { 2237 | content: "\F1A1"; 2238 | } 2239 | 2240 | .mdi-crop-rotate:before { 2241 | content: "\F695"; 2242 | } 2243 | 2244 | .mdi-crop-square:before { 2245 | content: "\F1A2"; 2246 | } 2247 | 2248 | .mdi-crosshairs:before { 2249 | content: "\F1A3"; 2250 | } 2251 | 2252 | .mdi-crosshairs-gps:before { 2253 | content: "\F1A4"; 2254 | } 2255 | 2256 | .mdi-crown:before { 2257 | content: "\F1A5"; 2258 | } 2259 | 2260 | .mdi-cube:before { 2261 | content: "\F1A6"; 2262 | } 2263 | 2264 | .mdi-cube-outline:before { 2265 | content: "\F1A7"; 2266 | } 2267 | 2268 | .mdi-cube-send:before { 2269 | content: "\F1A8"; 2270 | } 2271 | 2272 | .mdi-cube-unfolded:before { 2273 | content: "\F1A9"; 2274 | } 2275 | 2276 | .mdi-cup:before { 2277 | content: "\F1AA"; 2278 | } 2279 | 2280 | .mdi-cup-off:before { 2281 | content: "\F5E5"; 2282 | } 2283 | 2284 | .mdi-cup-water:before { 2285 | content: "\F1AB"; 2286 | } 2287 | 2288 | .mdi-currency-btc:before { 2289 | content: "\F1AC"; 2290 | } 2291 | 2292 | .mdi-currency-chf:before { 2293 | content: "\F7B8"; 2294 | } 2295 | 2296 | .mdi-currency-cny:before { 2297 | content: "\F7B9"; 2298 | } 2299 | 2300 | .mdi-currency-eth:before { 2301 | content: "\F7BA"; 2302 | } 2303 | 2304 | .mdi-currency-eur:before { 2305 | content: "\F1AD"; 2306 | } 2307 | 2308 | .mdi-currency-gbp:before { 2309 | content: "\F1AE"; 2310 | } 2311 | 2312 | .mdi-currency-inr:before { 2313 | content: "\F1AF"; 2314 | } 2315 | 2316 | .mdi-currency-jpy:before { 2317 | content: "\F7BB"; 2318 | } 2319 | 2320 | .mdi-currency-krw:before { 2321 | content: "\F7BC"; 2322 | } 2323 | 2324 | .mdi-currency-ngn:before { 2325 | content: "\F1B0"; 2326 | } 2327 | 2328 | .mdi-currency-rub:before { 2329 | content: "\F1B1"; 2330 | } 2331 | 2332 | .mdi-currency-sign:before { 2333 | content: "\F7BD"; 2334 | } 2335 | 2336 | .mdi-currency-try:before { 2337 | content: "\F1B2"; 2338 | } 2339 | 2340 | .mdi-currency-twd:before { 2341 | content: "\F7BE"; 2342 | } 2343 | 2344 | .mdi-currency-usd:before { 2345 | content: "\F1B3"; 2346 | } 2347 | 2348 | .mdi-currency-usd-off:before { 2349 | content: "\F679"; 2350 | } 2351 | 2352 | .mdi-cursor-default:before { 2353 | content: "\F1B4"; 2354 | } 2355 | 2356 | .mdi-cursor-default-outline:before { 2357 | content: "\F1B5"; 2358 | } 2359 | 2360 | .mdi-cursor-move:before { 2361 | content: "\F1B6"; 2362 | } 2363 | 2364 | .mdi-cursor-pointer:before { 2365 | content: "\F1B7"; 2366 | } 2367 | 2368 | .mdi-cursor-text:before { 2369 | content: "\F5E7"; 2370 | } 2371 | 2372 | .mdi-database:before { 2373 | content: "\F1B8"; 2374 | } 2375 | 2376 | .mdi-database-minus:before { 2377 | content: "\F1B9"; 2378 | } 2379 | 2380 | .mdi-database-plus:before { 2381 | content: "\F1BA"; 2382 | } 2383 | 2384 | .mdi-debug-step-into:before { 2385 | content: "\F1BB"; 2386 | } 2387 | 2388 | .mdi-debug-step-out:before { 2389 | content: "\F1BC"; 2390 | } 2391 | 2392 | .mdi-debug-step-over:before { 2393 | content: "\F1BD"; 2394 | } 2395 | 2396 | .mdi-decagram:before { 2397 | content: "\F76B"; 2398 | } 2399 | 2400 | .mdi-decagram-outline:before { 2401 | content: "\F76C"; 2402 | } 2403 | 2404 | .mdi-decimal-decrease:before { 2405 | content: "\F1BE"; 2406 | } 2407 | 2408 | .mdi-decimal-increase:before { 2409 | content: "\F1BF"; 2410 | } 2411 | 2412 | .mdi-delete:before { 2413 | content: "\F1C0"; 2414 | } 2415 | 2416 | .mdi-delete-circle:before { 2417 | content: "\F682"; 2418 | } 2419 | 2420 | .mdi-delete-empty:before { 2421 | content: "\F6CB"; 2422 | } 2423 | 2424 | .mdi-delete-forever:before { 2425 | content: "\F5E8"; 2426 | } 2427 | 2428 | .mdi-delete-sweep:before { 2429 | content: "\F5E9"; 2430 | } 2431 | 2432 | .mdi-delete-variant:before { 2433 | content: "\F1C1"; 2434 | } 2435 | 2436 | .mdi-delta:before { 2437 | content: "\F1C2"; 2438 | } 2439 | 2440 | .mdi-deskphone:before { 2441 | content: "\F1C3"; 2442 | } 2443 | 2444 | .mdi-desktop-classic:before { 2445 | content: "\F7BF"; 2446 | } 2447 | 2448 | .mdi-desktop-mac:before { 2449 | content: "\F1C4"; 2450 | } 2451 | 2452 | .mdi-desktop-tower:before { 2453 | content: "\F1C5"; 2454 | } 2455 | 2456 | .mdi-details:before { 2457 | content: "\F1C6"; 2458 | } 2459 | 2460 | .mdi-developer-board:before { 2461 | content: "\F696"; 2462 | } 2463 | 2464 | .mdi-deviantart:before { 2465 | content: "\F1C7"; 2466 | } 2467 | 2468 | .mdi-dialpad:before { 2469 | content: "\F61C"; 2470 | } 2471 | 2472 | .mdi-diamond:before { 2473 | content: "\F1C8"; 2474 | } 2475 | 2476 | .mdi-dice-1:before { 2477 | content: "\F1CA"; 2478 | } 2479 | 2480 | .mdi-dice-2:before { 2481 | content: "\F1CB"; 2482 | } 2483 | 2484 | .mdi-dice-3:before { 2485 | content: "\F1CC"; 2486 | } 2487 | 2488 | .mdi-dice-4:before { 2489 | content: "\F1CD"; 2490 | } 2491 | 2492 | .mdi-dice-5:before { 2493 | content: "\F1CE"; 2494 | } 2495 | 2496 | .mdi-dice-6:before { 2497 | content: "\F1CF"; 2498 | } 2499 | 2500 | .mdi-dice-d10:before { 2501 | content: "\F76E"; 2502 | } 2503 | 2504 | .mdi-dice-d20:before { 2505 | content: "\F5EA"; 2506 | } 2507 | 2508 | .mdi-dice-d4:before { 2509 | content: "\F5EB"; 2510 | } 2511 | 2512 | .mdi-dice-d6:before { 2513 | content: "\F5EC"; 2514 | } 2515 | 2516 | .mdi-dice-d8:before { 2517 | content: "\F5ED"; 2518 | } 2519 | 2520 | .mdi-dice-multiple:before { 2521 | content: "\F76D"; 2522 | } 2523 | 2524 | .mdi-dictionary:before { 2525 | content: "\F61D"; 2526 | } 2527 | 2528 | .mdi-dip-switch:before { 2529 | content: "\F7C0"; 2530 | } 2531 | 2532 | .mdi-directions:before { 2533 | content: "\F1D0"; 2534 | } 2535 | 2536 | .mdi-directions-fork:before { 2537 | content: "\F641"; 2538 | } 2539 | 2540 | .mdi-discord:before { 2541 | content: "\F66F"; 2542 | } 2543 | 2544 | .mdi-disk:before { 2545 | content: "\F5EE"; 2546 | } 2547 | 2548 | .mdi-disk-alert:before { 2549 | content: "\F1D1"; 2550 | } 2551 | 2552 | .mdi-disqus:before { 2553 | content: "\F1D2"; 2554 | } 2555 | 2556 | .mdi-disqus-outline:before { 2557 | content: "\F1D3"; 2558 | } 2559 | 2560 | .mdi-division:before { 2561 | content: "\F1D4"; 2562 | } 2563 | 2564 | .mdi-division-box:before { 2565 | content: "\F1D5"; 2566 | } 2567 | 2568 | .mdi-dna:before { 2569 | content: "\F683"; 2570 | } 2571 | 2572 | .mdi-dns:before { 2573 | content: "\F1D6"; 2574 | } 2575 | 2576 | .mdi-do-not-disturb:before { 2577 | content: "\F697"; 2578 | } 2579 | 2580 | .mdi-do-not-disturb-off:before { 2581 | content: "\F698"; 2582 | } 2583 | 2584 | .mdi-dolby:before { 2585 | content: "\F6B2"; 2586 | } 2587 | 2588 | .mdi-domain:before { 2589 | content: "\F1D7"; 2590 | } 2591 | 2592 | .mdi-donkey:before { 2593 | content: "\F7C1"; 2594 | } 2595 | 2596 | .mdi-dots-horizontal:before { 2597 | content: "\F1D8"; 2598 | } 2599 | 2600 | .mdi-dots-horizontal-circle:before { 2601 | content: "\F7C2"; 2602 | } 2603 | 2604 | .mdi-dots-vertical:before { 2605 | content: "\F1D9"; 2606 | } 2607 | 2608 | .mdi-dots-vertical-circle:before { 2609 | content: "\F7C3"; 2610 | } 2611 | 2612 | .mdi-douban:before { 2613 | content: "\F699"; 2614 | } 2615 | 2616 | .mdi-download:before { 2617 | content: "\F1DA"; 2618 | } 2619 | 2620 | .mdi-download-network:before { 2621 | content: "\F6F3"; 2622 | } 2623 | 2624 | .mdi-drag:before { 2625 | content: "\F1DB"; 2626 | } 2627 | 2628 | .mdi-drag-horizontal:before { 2629 | content: "\F1DC"; 2630 | } 2631 | 2632 | .mdi-drag-vertical:before { 2633 | content: "\F1DD"; 2634 | } 2635 | 2636 | .mdi-drawing:before { 2637 | content: "\F1DE"; 2638 | } 2639 | 2640 | .mdi-drawing-box:before { 2641 | content: "\F1DF"; 2642 | } 2643 | 2644 | .mdi-dribbble:before { 2645 | content: "\F1E0"; 2646 | } 2647 | 2648 | .mdi-dribbble-box:before { 2649 | content: "\F1E1"; 2650 | } 2651 | 2652 | .mdi-drone:before { 2653 | content: "\F1E2"; 2654 | } 2655 | 2656 | .mdi-dropbox:before { 2657 | content: "\F1E3"; 2658 | } 2659 | 2660 | .mdi-drupal:before { 2661 | content: "\F1E4"; 2662 | } 2663 | 2664 | .mdi-duck:before { 2665 | content: "\F1E5"; 2666 | } 2667 | 2668 | .mdi-dumbbell:before { 2669 | content: "\F1E6"; 2670 | } 2671 | 2672 | .mdi-ear-hearing:before { 2673 | content: "\F7C4"; 2674 | } 2675 | 2676 | .mdi-earth:before { 2677 | content: "\F1E7"; 2678 | } 2679 | 2680 | .mdi-earth-box:before { 2681 | content: "\F6CC"; 2682 | } 2683 | 2684 | .mdi-earth-box-off:before { 2685 | content: "\F6CD"; 2686 | } 2687 | 2688 | .mdi-earth-off:before { 2689 | content: "\F1E8"; 2690 | } 2691 | 2692 | .mdi-edge:before { 2693 | content: "\F1E9"; 2694 | } 2695 | 2696 | .mdi-eject:before { 2697 | content: "\F1EA"; 2698 | } 2699 | 2700 | .mdi-elephant:before { 2701 | content: "\F7C5"; 2702 | } 2703 | 2704 | .mdi-elevation-decline:before { 2705 | content: "\F1EB"; 2706 | } 2707 | 2708 | .mdi-elevation-rise:before { 2709 | content: "\F1EC"; 2710 | } 2711 | 2712 | .mdi-elevator:before { 2713 | content: "\F1ED"; 2714 | } 2715 | 2716 | .mdi-email:before { 2717 | content: "\F1EE"; 2718 | } 2719 | 2720 | .mdi-email-alert:before { 2721 | content: "\F6CE"; 2722 | } 2723 | 2724 | .mdi-email-open:before { 2725 | content: "\F1EF"; 2726 | } 2727 | 2728 | .mdi-email-open-outline:before { 2729 | content: "\F5EF"; 2730 | } 2731 | 2732 | .mdi-email-outline:before { 2733 | content: "\F1F0"; 2734 | } 2735 | 2736 | .mdi-email-secure:before { 2737 | content: "\F1F1"; 2738 | } 2739 | 2740 | .mdi-email-variant:before { 2741 | content: "\F5F0"; 2742 | } 2743 | 2744 | .mdi-emby:before { 2745 | content: "\F6B3"; 2746 | } 2747 | 2748 | .mdi-emoticon:before { 2749 | content: "\F1F2"; 2750 | } 2751 | 2752 | .mdi-emoticon-cool:before { 2753 | content: "\F1F3"; 2754 | } 2755 | 2756 | .mdi-emoticon-dead:before { 2757 | content: "\F69A"; 2758 | } 2759 | 2760 | .mdi-emoticon-devil:before { 2761 | content: "\F1F4"; 2762 | } 2763 | 2764 | .mdi-emoticon-excited:before { 2765 | content: "\F69B"; 2766 | } 2767 | 2768 | .mdi-emoticon-happy:before { 2769 | content: "\F1F5"; 2770 | } 2771 | 2772 | .mdi-emoticon-neutral:before { 2773 | content: "\F1F6"; 2774 | } 2775 | 2776 | .mdi-emoticon-poop:before { 2777 | content: "\F1F7"; 2778 | } 2779 | 2780 | .mdi-emoticon-sad:before { 2781 | content: "\F1F8"; 2782 | } 2783 | 2784 | .mdi-emoticon-tongue:before { 2785 | content: "\F1F9"; 2786 | } 2787 | 2788 | .mdi-engine:before { 2789 | content: "\F1FA"; 2790 | } 2791 | 2792 | .mdi-engine-outline:before { 2793 | content: "\F1FB"; 2794 | } 2795 | 2796 | .mdi-equal:before { 2797 | content: "\F1FC"; 2798 | } 2799 | 2800 | .mdi-equal-box:before { 2801 | content: "\F1FD"; 2802 | } 2803 | 2804 | .mdi-eraser:before { 2805 | content: "\F1FE"; 2806 | } 2807 | 2808 | .mdi-eraser-variant:before { 2809 | content: "\F642"; 2810 | } 2811 | 2812 | .mdi-escalator:before { 2813 | content: "\F1FF"; 2814 | } 2815 | 2816 | .mdi-ethernet:before { 2817 | content: "\F200"; 2818 | } 2819 | 2820 | .mdi-ethernet-cable:before { 2821 | content: "\F201"; 2822 | } 2823 | 2824 | .mdi-ethernet-cable-off:before { 2825 | content: "\F202"; 2826 | } 2827 | 2828 | .mdi-etsy:before { 2829 | content: "\F203"; 2830 | } 2831 | 2832 | .mdi-ev-station:before { 2833 | content: "\F5F1"; 2834 | } 2835 | 2836 | .mdi-eventbrite:before { 2837 | content: "\F7C6"; 2838 | } 2839 | 2840 | .mdi-evernote:before { 2841 | content: "\F204"; 2842 | } 2843 | 2844 | .mdi-exclamation:before { 2845 | content: "\F205"; 2846 | } 2847 | 2848 | .mdi-exit-to-app:before { 2849 | content: "\F206"; 2850 | } 2851 | 2852 | .mdi-export:before { 2853 | content: "\F207"; 2854 | } 2855 | 2856 | .mdi-eye:before { 2857 | content: "\F208"; 2858 | } 2859 | 2860 | .mdi-eye-off:before { 2861 | content: "\F209"; 2862 | } 2863 | 2864 | .mdi-eye-off-outline:before { 2865 | content: "\F6D0"; 2866 | } 2867 | 2868 | .mdi-eye-outline:before { 2869 | content: "\F6CF"; 2870 | } 2871 | 2872 | .mdi-eyedropper:before { 2873 | content: "\F20A"; 2874 | } 2875 | 2876 | .mdi-eyedropper-variant:before { 2877 | content: "\F20B"; 2878 | } 2879 | 2880 | .mdi-face:before { 2881 | content: "\F643"; 2882 | } 2883 | 2884 | .mdi-face-profile:before { 2885 | content: "\F644"; 2886 | } 2887 | 2888 | .mdi-facebook:before { 2889 | content: "\F20C"; 2890 | } 2891 | 2892 | .mdi-facebook-box:before { 2893 | content: "\F20D"; 2894 | } 2895 | 2896 | .mdi-facebook-messenger:before { 2897 | content: "\F20E"; 2898 | } 2899 | 2900 | .mdi-factory:before { 2901 | content: "\F20F"; 2902 | } 2903 | 2904 | .mdi-fan:before { 2905 | content: "\F210"; 2906 | } 2907 | 2908 | .mdi-fast-forward:before { 2909 | content: "\F211"; 2910 | } 2911 | 2912 | .mdi-fast-forward-outline:before { 2913 | content: "\F6D1"; 2914 | } 2915 | 2916 | .mdi-fax:before { 2917 | content: "\F212"; 2918 | } 2919 | 2920 | .mdi-feather:before { 2921 | content: "\F6D2"; 2922 | } 2923 | 2924 | .mdi-ferry:before { 2925 | content: "\F213"; 2926 | } 2927 | 2928 | .mdi-file:before { 2929 | content: "\F214"; 2930 | } 2931 | 2932 | .mdi-file-account:before { 2933 | content: "\F73A"; 2934 | } 2935 | 2936 | .mdi-file-chart:before { 2937 | content: "\F215"; 2938 | } 2939 | 2940 | .mdi-file-check:before { 2941 | content: "\F216"; 2942 | } 2943 | 2944 | .mdi-file-cloud:before { 2945 | content: "\F217"; 2946 | } 2947 | 2948 | .mdi-file-delimited:before { 2949 | content: "\F218"; 2950 | } 2951 | 2952 | .mdi-file-document:before { 2953 | content: "\F219"; 2954 | } 2955 | 2956 | .mdi-file-document-box:before { 2957 | content: "\F21A"; 2958 | } 2959 | 2960 | .mdi-file-excel:before { 2961 | content: "\F21B"; 2962 | } 2963 | 2964 | .mdi-file-excel-box:before { 2965 | content: "\F21C"; 2966 | } 2967 | 2968 | .mdi-file-export:before { 2969 | content: "\F21D"; 2970 | } 2971 | 2972 | .mdi-file-find:before { 2973 | content: "\F21E"; 2974 | } 2975 | 2976 | .mdi-file-hidden:before { 2977 | content: "\F613"; 2978 | } 2979 | 2980 | .mdi-file-image:before { 2981 | content: "\F21F"; 2982 | } 2983 | 2984 | .mdi-file-import:before { 2985 | content: "\F220"; 2986 | } 2987 | 2988 | .mdi-file-lock:before { 2989 | content: "\F221"; 2990 | } 2991 | 2992 | .mdi-file-multiple:before { 2993 | content: "\F222"; 2994 | } 2995 | 2996 | .mdi-file-music:before { 2997 | content: "\F223"; 2998 | } 2999 | 3000 | .mdi-file-outline:before { 3001 | content: "\F224"; 3002 | } 3003 | 3004 | .mdi-file-pdf:before { 3005 | content: "\F225"; 3006 | } 3007 | 3008 | .mdi-file-pdf-box:before { 3009 | content: "\F226"; 3010 | } 3011 | 3012 | .mdi-file-plus:before { 3013 | content: "\F751"; 3014 | } 3015 | 3016 | .mdi-file-powerpoint:before { 3017 | content: "\F227"; 3018 | } 3019 | 3020 | .mdi-file-powerpoint-box:before { 3021 | content: "\F228"; 3022 | } 3023 | 3024 | .mdi-file-presentation-box:before { 3025 | content: "\F229"; 3026 | } 3027 | 3028 | .mdi-file-restore:before { 3029 | content: "\F670"; 3030 | } 3031 | 3032 | .mdi-file-send:before { 3033 | content: "\F22A"; 3034 | } 3035 | 3036 | .mdi-file-tree:before { 3037 | content: "\F645"; 3038 | } 3039 | 3040 | .mdi-file-video:before { 3041 | content: "\F22B"; 3042 | } 3043 | 3044 | .mdi-file-word:before { 3045 | content: "\F22C"; 3046 | } 3047 | 3048 | .mdi-file-word-box:before { 3049 | content: "\F22D"; 3050 | } 3051 | 3052 | .mdi-file-xml:before { 3053 | content: "\F22E"; 3054 | } 3055 | 3056 | .mdi-film:before { 3057 | content: "\F22F"; 3058 | } 3059 | 3060 | .mdi-filmstrip:before { 3061 | content: "\F230"; 3062 | } 3063 | 3064 | .mdi-filmstrip-off:before { 3065 | content: "\F231"; 3066 | } 3067 | 3068 | .mdi-filter:before { 3069 | content: "\F232"; 3070 | } 3071 | 3072 | .mdi-filter-outline:before { 3073 | content: "\F233"; 3074 | } 3075 | 3076 | .mdi-filter-remove:before { 3077 | content: "\F234"; 3078 | } 3079 | 3080 | .mdi-filter-remove-outline:before { 3081 | content: "\F235"; 3082 | } 3083 | 3084 | .mdi-filter-variant:before { 3085 | content: "\F236"; 3086 | } 3087 | 3088 | .mdi-find-replace:before { 3089 | content: "\F6D3"; 3090 | } 3091 | 3092 | .mdi-fingerprint:before { 3093 | content: "\F237"; 3094 | } 3095 | 3096 | .mdi-fire:before { 3097 | content: "\F238"; 3098 | } 3099 | 3100 | .mdi-firefox:before { 3101 | content: "\F239"; 3102 | } 3103 | 3104 | .mdi-fish:before { 3105 | content: "\F23A"; 3106 | } 3107 | 3108 | .mdi-flag:before { 3109 | content: "\F23B"; 3110 | } 3111 | 3112 | .mdi-flag-checkered:before { 3113 | content: "\F23C"; 3114 | } 3115 | 3116 | .mdi-flag-outline:before { 3117 | content: "\F23D"; 3118 | } 3119 | 3120 | .mdi-flag-outline-variant:before { 3121 | content: "\F23E"; 3122 | } 3123 | 3124 | .mdi-flag-triangle:before { 3125 | content: "\F23F"; 3126 | } 3127 | 3128 | .mdi-flag-variant:before { 3129 | content: "\F240"; 3130 | } 3131 | 3132 | .mdi-flash:before { 3133 | content: "\F241"; 3134 | } 3135 | 3136 | .mdi-flash-auto:before { 3137 | content: "\F242"; 3138 | } 3139 | 3140 | .mdi-flash-off:before { 3141 | content: "\F243"; 3142 | } 3143 | 3144 | .mdi-flash-outline:before { 3145 | content: "\F6D4"; 3146 | } 3147 | 3148 | .mdi-flash-red-eye:before { 3149 | content: "\F67A"; 3150 | } 3151 | 3152 | .mdi-flashlight:before { 3153 | content: "\F244"; 3154 | } 3155 | 3156 | .mdi-flashlight-off:before { 3157 | content: "\F245"; 3158 | } 3159 | 3160 | .mdi-flask:before { 3161 | content: "\F093"; 3162 | } 3163 | 3164 | .mdi-flask-empty:before { 3165 | content: "\F094"; 3166 | } 3167 | 3168 | .mdi-flask-empty-outline:before { 3169 | content: "\F095"; 3170 | } 3171 | 3172 | .mdi-flask-outline:before { 3173 | content: "\F096"; 3174 | } 3175 | 3176 | .mdi-flattr:before { 3177 | content: "\F246"; 3178 | } 3179 | 3180 | .mdi-flip-to-back:before { 3181 | content: "\F247"; 3182 | } 3183 | 3184 | .mdi-flip-to-front:before { 3185 | content: "\F248"; 3186 | } 3187 | 3188 | .mdi-floppy:before { 3189 | content: "\F249"; 3190 | } 3191 | 3192 | .mdi-flower:before { 3193 | content: "\F24A"; 3194 | } 3195 | 3196 | .mdi-folder:before { 3197 | content: "\F24B"; 3198 | } 3199 | 3200 | .mdi-folder-account:before { 3201 | content: "\F24C"; 3202 | } 3203 | 3204 | .mdi-folder-download:before { 3205 | content: "\F24D"; 3206 | } 3207 | 3208 | .mdi-folder-google-drive:before { 3209 | content: "\F24E"; 3210 | } 3211 | 3212 | .mdi-folder-image:before { 3213 | content: "\F24F"; 3214 | } 3215 | 3216 | .mdi-folder-lock:before { 3217 | content: "\F250"; 3218 | } 3219 | 3220 | .mdi-folder-lock-open:before { 3221 | content: "\F251"; 3222 | } 3223 | 3224 | .mdi-folder-move:before { 3225 | content: "\F252"; 3226 | } 3227 | 3228 | .mdi-folder-multiple:before { 3229 | content: "\F253"; 3230 | } 3231 | 3232 | .mdi-folder-multiple-image:before { 3233 | content: "\F254"; 3234 | } 3235 | 3236 | .mdi-folder-multiple-outline:before { 3237 | content: "\F255"; 3238 | } 3239 | 3240 | .mdi-folder-open:before { 3241 | content: "\F76F"; 3242 | } 3243 | 3244 | .mdi-folder-outline:before { 3245 | content: "\F256"; 3246 | } 3247 | 3248 | .mdi-folder-plus:before { 3249 | content: "\F257"; 3250 | } 3251 | 3252 | .mdi-folder-remove:before { 3253 | content: "\F258"; 3254 | } 3255 | 3256 | .mdi-folder-star:before { 3257 | content: "\F69C"; 3258 | } 3259 | 3260 | .mdi-folder-upload:before { 3261 | content: "\F259"; 3262 | } 3263 | 3264 | .mdi-font-awesome:before { 3265 | content: "\F03A"; 3266 | } 3267 | 3268 | .mdi-food:before { 3269 | content: "\F25A"; 3270 | } 3271 | 3272 | .mdi-food-apple:before { 3273 | content: "\F25B"; 3274 | } 3275 | 3276 | .mdi-food-croissant:before { 3277 | content: "\F7C7"; 3278 | } 3279 | 3280 | .mdi-food-fork-drink:before { 3281 | content: "\F5F2"; 3282 | } 3283 | 3284 | .mdi-food-off:before { 3285 | content: "\F5F3"; 3286 | } 3287 | 3288 | .mdi-food-variant:before { 3289 | content: "\F25C"; 3290 | } 3291 | 3292 | .mdi-football:before { 3293 | content: "\F25D"; 3294 | } 3295 | 3296 | .mdi-football-australian:before { 3297 | content: "\F25E"; 3298 | } 3299 | 3300 | .mdi-football-helmet:before { 3301 | content: "\F25F"; 3302 | } 3303 | 3304 | .mdi-forklift:before { 3305 | content: "\F7C8"; 3306 | } 3307 | 3308 | .mdi-format-align-bottom:before { 3309 | content: "\F752"; 3310 | } 3311 | 3312 | .mdi-format-align-center:before { 3313 | content: "\F260"; 3314 | } 3315 | 3316 | .mdi-format-align-justify:before { 3317 | content: "\F261"; 3318 | } 3319 | 3320 | .mdi-format-align-left:before { 3321 | content: "\F262"; 3322 | } 3323 | 3324 | .mdi-format-align-middle:before { 3325 | content: "\F753"; 3326 | } 3327 | 3328 | .mdi-format-align-right:before { 3329 | content: "\F263"; 3330 | } 3331 | 3332 | .mdi-format-align-top:before { 3333 | content: "\F754"; 3334 | } 3335 | 3336 | .mdi-format-annotation-plus:before { 3337 | content: "\F646"; 3338 | } 3339 | 3340 | .mdi-format-bold:before { 3341 | content: "\F264"; 3342 | } 3343 | 3344 | .mdi-format-clear:before { 3345 | content: "\F265"; 3346 | } 3347 | 3348 | .mdi-format-color-fill:before { 3349 | content: "\F266"; 3350 | } 3351 | 3352 | .mdi-format-color-text:before { 3353 | content: "\F69D"; 3354 | } 3355 | 3356 | .mdi-format-float-center:before { 3357 | content: "\F267"; 3358 | } 3359 | 3360 | .mdi-format-float-left:before { 3361 | content: "\F268"; 3362 | } 3363 | 3364 | .mdi-format-float-none:before { 3365 | content: "\F269"; 3366 | } 3367 | 3368 | .mdi-format-float-right:before { 3369 | content: "\F26A"; 3370 | } 3371 | 3372 | .mdi-format-font:before { 3373 | content: "\F6D5"; 3374 | } 3375 | 3376 | .mdi-format-header-1:before { 3377 | content: "\F26B"; 3378 | } 3379 | 3380 | .mdi-format-header-2:before { 3381 | content: "\F26C"; 3382 | } 3383 | 3384 | .mdi-format-header-3:before { 3385 | content: "\F26D"; 3386 | } 3387 | 3388 | .mdi-format-header-4:before { 3389 | content: "\F26E"; 3390 | } 3391 | 3392 | .mdi-format-header-5:before { 3393 | content: "\F26F"; 3394 | } 3395 | 3396 | .mdi-format-header-6:before { 3397 | content: "\F270"; 3398 | } 3399 | 3400 | .mdi-format-header-decrease:before { 3401 | content: "\F271"; 3402 | } 3403 | 3404 | .mdi-format-header-equal:before { 3405 | content: "\F272"; 3406 | } 3407 | 3408 | .mdi-format-header-increase:before { 3409 | content: "\F273"; 3410 | } 3411 | 3412 | .mdi-format-header-pound:before { 3413 | content: "\F274"; 3414 | } 3415 | 3416 | .mdi-format-horizontal-align-center:before { 3417 | content: "\F61E"; 3418 | } 3419 | 3420 | .mdi-format-horizontal-align-left:before { 3421 | content: "\F61F"; 3422 | } 3423 | 3424 | .mdi-format-horizontal-align-right:before { 3425 | content: "\F620"; 3426 | } 3427 | 3428 | .mdi-format-indent-decrease:before { 3429 | content: "\F275"; 3430 | } 3431 | 3432 | .mdi-format-indent-increase:before { 3433 | content: "\F276"; 3434 | } 3435 | 3436 | .mdi-format-italic:before { 3437 | content: "\F277"; 3438 | } 3439 | 3440 | .mdi-format-line-spacing:before { 3441 | content: "\F278"; 3442 | } 3443 | 3444 | .mdi-format-line-style:before { 3445 | content: "\F5C8"; 3446 | } 3447 | 3448 | .mdi-format-line-weight:before { 3449 | content: "\F5C9"; 3450 | } 3451 | 3452 | .mdi-format-list-bulleted:before { 3453 | content: "\F279"; 3454 | } 3455 | 3456 | .mdi-format-list-bulleted-type:before { 3457 | content: "\F27A"; 3458 | } 3459 | 3460 | .mdi-format-list-checks:before { 3461 | content: "\F755"; 3462 | } 3463 | 3464 | .mdi-format-list-numbers:before { 3465 | content: "\F27B"; 3466 | } 3467 | 3468 | .mdi-format-page-break:before { 3469 | content: "\F6D6"; 3470 | } 3471 | 3472 | .mdi-format-paint:before { 3473 | content: "\F27C"; 3474 | } 3475 | 3476 | .mdi-format-paragraph:before { 3477 | content: "\F27D"; 3478 | } 3479 | 3480 | .mdi-format-pilcrow:before { 3481 | content: "\F6D7"; 3482 | } 3483 | 3484 | .mdi-format-quote-close:before { 3485 | content: "\F27E"; 3486 | } 3487 | 3488 | .mdi-format-quote-open:before { 3489 | content: "\F756"; 3490 | } 3491 | 3492 | .mdi-format-rotate-90:before { 3493 | content: "\F6A9"; 3494 | } 3495 | 3496 | .mdi-format-section:before { 3497 | content: "\F69E"; 3498 | } 3499 | 3500 | .mdi-format-size:before { 3501 | content: "\F27F"; 3502 | } 3503 | 3504 | .mdi-format-strikethrough:before { 3505 | content: "\F280"; 3506 | } 3507 | 3508 | .mdi-format-strikethrough-variant:before { 3509 | content: "\F281"; 3510 | } 3511 | 3512 | .mdi-format-subscript:before { 3513 | content: "\F282"; 3514 | } 3515 | 3516 | .mdi-format-superscript:before { 3517 | content: "\F283"; 3518 | } 3519 | 3520 | .mdi-format-text:before { 3521 | content: "\F284"; 3522 | } 3523 | 3524 | .mdi-format-textdirection-l-to-r:before { 3525 | content: "\F285"; 3526 | } 3527 | 3528 | .mdi-format-textdirection-r-to-l:before { 3529 | content: "\F286"; 3530 | } 3531 | 3532 | .mdi-format-title:before { 3533 | content: "\F5F4"; 3534 | } 3535 | 3536 | .mdi-format-underline:before { 3537 | content: "\F287"; 3538 | } 3539 | 3540 | .mdi-format-vertical-align-bottom:before { 3541 | content: "\F621"; 3542 | } 3543 | 3544 | .mdi-format-vertical-align-center:before { 3545 | content: "\F622"; 3546 | } 3547 | 3548 | .mdi-format-vertical-align-top:before { 3549 | content: "\F623"; 3550 | } 3551 | 3552 | .mdi-format-wrap-inline:before { 3553 | content: "\F288"; 3554 | } 3555 | 3556 | .mdi-format-wrap-square:before { 3557 | content: "\F289"; 3558 | } 3559 | 3560 | .mdi-format-wrap-tight:before { 3561 | content: "\F28A"; 3562 | } 3563 | 3564 | .mdi-format-wrap-top-bottom:before { 3565 | content: "\F28B"; 3566 | } 3567 | 3568 | .mdi-forum:before { 3569 | content: "\F28C"; 3570 | } 3571 | 3572 | .mdi-forward:before { 3573 | content: "\F28D"; 3574 | } 3575 | 3576 | .mdi-foursquare:before { 3577 | content: "\F28E"; 3578 | } 3579 | 3580 | .mdi-fridge:before { 3581 | content: "\F28F"; 3582 | } 3583 | 3584 | .mdi-fridge-filled:before { 3585 | content: "\F290"; 3586 | } 3587 | 3588 | .mdi-fridge-filled-bottom:before { 3589 | content: "\F291"; 3590 | } 3591 | 3592 | .mdi-fridge-filled-top:before { 3593 | content: "\F292"; 3594 | } 3595 | 3596 | .mdi-fuel:before { 3597 | content: "\F7C9"; 3598 | } 3599 | 3600 | .mdi-fullscreen:before { 3601 | content: "\F293"; 3602 | } 3603 | 3604 | .mdi-fullscreen-exit:before { 3605 | content: "\F294"; 3606 | } 3607 | 3608 | .mdi-function:before { 3609 | content: "\F295"; 3610 | } 3611 | 3612 | .mdi-gamepad:before { 3613 | content: "\F296"; 3614 | } 3615 | 3616 | .mdi-gamepad-variant:before { 3617 | content: "\F297"; 3618 | } 3619 | 3620 | .mdi-garage:before { 3621 | content: "\F6D8"; 3622 | } 3623 | 3624 | .mdi-garage-open:before { 3625 | content: "\F6D9"; 3626 | } 3627 | 3628 | .mdi-gas-cylinder:before { 3629 | content: "\F647"; 3630 | } 3631 | 3632 | .mdi-gas-station:before { 3633 | content: "\F298"; 3634 | } 3635 | 3636 | .mdi-gate:before { 3637 | content: "\F299"; 3638 | } 3639 | 3640 | .mdi-gauge:before { 3641 | content: "\F29A"; 3642 | } 3643 | 3644 | .mdi-gavel:before { 3645 | content: "\F29B"; 3646 | } 3647 | 3648 | .mdi-gender-female:before { 3649 | content: "\F29C"; 3650 | } 3651 | 3652 | .mdi-gender-male:before { 3653 | content: "\F29D"; 3654 | } 3655 | 3656 | .mdi-gender-male-female:before { 3657 | content: "\F29E"; 3658 | } 3659 | 3660 | .mdi-gender-transgender:before { 3661 | content: "\F29F"; 3662 | } 3663 | 3664 | .mdi-gesture:before { 3665 | content: "\F7CA"; 3666 | } 3667 | 3668 | .mdi-gesture-double-tap:before { 3669 | content: "\F73B"; 3670 | } 3671 | 3672 | .mdi-gesture-swipe-down:before { 3673 | content: "\F73C"; 3674 | } 3675 | 3676 | .mdi-gesture-swipe-left:before { 3677 | content: "\F73D"; 3678 | } 3679 | 3680 | .mdi-gesture-swipe-right:before { 3681 | content: "\F73E"; 3682 | } 3683 | 3684 | .mdi-gesture-swipe-up:before { 3685 | content: "\F73F"; 3686 | } 3687 | 3688 | .mdi-gesture-tap:before { 3689 | content: "\F740"; 3690 | } 3691 | 3692 | .mdi-gesture-two-double-tap:before { 3693 | content: "\F741"; 3694 | } 3695 | 3696 | .mdi-gesture-two-tap:before { 3697 | content: "\F742"; 3698 | } 3699 | 3700 | .mdi-ghost:before { 3701 | content: "\F2A0"; 3702 | } 3703 | 3704 | .mdi-gift:before { 3705 | content: "\F2A1"; 3706 | } 3707 | 3708 | .mdi-git:before { 3709 | content: "\F2A2"; 3710 | } 3711 | 3712 | .mdi-github-box:before { 3713 | content: "\F2A3"; 3714 | } 3715 | 3716 | .mdi-github-circle:before { 3717 | content: "\F2A4"; 3718 | } 3719 | 3720 | .mdi-github-face:before { 3721 | content: "\F6DA"; 3722 | } 3723 | 3724 | .mdi-glass-flute:before { 3725 | content: "\F2A5"; 3726 | } 3727 | 3728 | .mdi-glass-mug:before { 3729 | content: "\F2A6"; 3730 | } 3731 | 3732 | .mdi-glass-stange:before { 3733 | content: "\F2A7"; 3734 | } 3735 | 3736 | .mdi-glass-tulip:before { 3737 | content: "\F2A8"; 3738 | } 3739 | 3740 | .mdi-glassdoor:before { 3741 | content: "\F2A9"; 3742 | } 3743 | 3744 | .mdi-glasses:before { 3745 | content: "\F2AA"; 3746 | } 3747 | 3748 | .mdi-gmail:before { 3749 | content: "\F2AB"; 3750 | } 3751 | 3752 | .mdi-gnome:before { 3753 | content: "\F2AC"; 3754 | } 3755 | 3756 | .mdi-gondola:before { 3757 | content: "\F685"; 3758 | } 3759 | 3760 | .mdi-google:before { 3761 | content: "\F2AD"; 3762 | } 3763 | 3764 | .mdi-google-analytics:before { 3765 | content: "\F7CB"; 3766 | } 3767 | 3768 | .mdi-google-assistant:before { 3769 | content: "\F7CC"; 3770 | } 3771 | 3772 | .mdi-google-cardboard:before { 3773 | content: "\F2AE"; 3774 | } 3775 | 3776 | .mdi-google-chrome:before { 3777 | content: "\F2AF"; 3778 | } 3779 | 3780 | .mdi-google-circles:before { 3781 | content: "\F2B0"; 3782 | } 3783 | 3784 | .mdi-google-circles-communities:before { 3785 | content: "\F2B1"; 3786 | } 3787 | 3788 | .mdi-google-circles-extended:before { 3789 | content: "\F2B2"; 3790 | } 3791 | 3792 | .mdi-google-circles-group:before { 3793 | content: "\F2B3"; 3794 | } 3795 | 3796 | .mdi-google-controller:before { 3797 | content: "\F2B4"; 3798 | } 3799 | 3800 | .mdi-google-controller-off:before { 3801 | content: "\F2B5"; 3802 | } 3803 | 3804 | .mdi-google-drive:before { 3805 | content: "\F2B6"; 3806 | } 3807 | 3808 | .mdi-google-earth:before { 3809 | content: "\F2B7"; 3810 | } 3811 | 3812 | .mdi-google-glass:before { 3813 | content: "\F2B8"; 3814 | } 3815 | 3816 | .mdi-google-keep:before { 3817 | content: "\F6DB"; 3818 | } 3819 | 3820 | .mdi-google-maps:before { 3821 | content: "\F5F5"; 3822 | } 3823 | 3824 | .mdi-google-nearby:before { 3825 | content: "\F2B9"; 3826 | } 3827 | 3828 | .mdi-google-pages:before { 3829 | content: "\F2BA"; 3830 | } 3831 | 3832 | .mdi-google-photos:before { 3833 | content: "\F6DC"; 3834 | } 3835 | 3836 | .mdi-google-physical-web:before { 3837 | content: "\F2BB"; 3838 | } 3839 | 3840 | .mdi-google-play:before { 3841 | content: "\F2BC"; 3842 | } 3843 | 3844 | .mdi-google-plus:before { 3845 | content: "\F2BD"; 3846 | } 3847 | 3848 | .mdi-google-plus-box:before { 3849 | content: "\F2BE"; 3850 | } 3851 | 3852 | .mdi-google-translate:before { 3853 | content: "\F2BF"; 3854 | } 3855 | 3856 | .mdi-google-wallet:before { 3857 | content: "\F2C0"; 3858 | } 3859 | 3860 | .mdi-gradient:before { 3861 | content: "\F69F"; 3862 | } 3863 | 3864 | .mdi-grease-pencil:before { 3865 | content: "\F648"; 3866 | } 3867 | 3868 | .mdi-grid:before { 3869 | content: "\F2C1"; 3870 | } 3871 | 3872 | .mdi-grid-large:before { 3873 | content: "\F757"; 3874 | } 3875 | 3876 | .mdi-grid-off:before { 3877 | content: "\F2C2"; 3878 | } 3879 | 3880 | .mdi-group:before { 3881 | content: "\F2C3"; 3882 | } 3883 | 3884 | .mdi-guitar-acoustic:before { 3885 | content: "\F770"; 3886 | } 3887 | 3888 | .mdi-guitar-electric:before { 3889 | content: "\F2C4"; 3890 | } 3891 | 3892 | .mdi-guitar-pick:before { 3893 | content: "\F2C5"; 3894 | } 3895 | 3896 | .mdi-guitar-pick-outline:before { 3897 | content: "\F2C6"; 3898 | } 3899 | 3900 | .mdi-hackernews:before { 3901 | content: "\F624"; 3902 | } 3903 | 3904 | .mdi-hamburger:before { 3905 | content: "\F684"; 3906 | } 3907 | 3908 | .mdi-hand-pointing-right:before { 3909 | content: "\F2C7"; 3910 | } 3911 | 3912 | .mdi-hanger:before { 3913 | content: "\F2C8"; 3914 | } 3915 | 3916 | .mdi-hangouts:before { 3917 | content: "\F2C9"; 3918 | } 3919 | 3920 | .mdi-harddisk:before { 3921 | content: "\F2CA"; 3922 | } 3923 | 3924 | .mdi-headphones:before { 3925 | content: "\F2CB"; 3926 | } 3927 | 3928 | .mdi-headphones-box:before { 3929 | content: "\F2CC"; 3930 | } 3931 | 3932 | .mdi-headphones-off:before { 3933 | content: "\F7CD"; 3934 | } 3935 | 3936 | .mdi-headphones-settings:before { 3937 | content: "\F2CD"; 3938 | } 3939 | 3940 | .mdi-headset:before { 3941 | content: "\F2CE"; 3942 | } 3943 | 3944 | .mdi-headset-dock:before { 3945 | content: "\F2CF"; 3946 | } 3947 | 3948 | .mdi-headset-off:before { 3949 | content: "\F2D0"; 3950 | } 3951 | 3952 | .mdi-heart:before { 3953 | content: "\F2D1"; 3954 | } 3955 | 3956 | .mdi-heart-box:before { 3957 | content: "\F2D2"; 3958 | } 3959 | 3960 | .mdi-heart-box-outline:before { 3961 | content: "\F2D3"; 3962 | } 3963 | 3964 | .mdi-heart-broken:before { 3965 | content: "\F2D4"; 3966 | } 3967 | 3968 | .mdi-heart-half:before { 3969 | content: "\F6DE"; 3970 | } 3971 | 3972 | .mdi-heart-half-full:before { 3973 | content: "\F6DD"; 3974 | } 3975 | 3976 | .mdi-heart-half-outline:before { 3977 | content: "\F6DF"; 3978 | } 3979 | 3980 | .mdi-heart-off:before { 3981 | content: "\F758"; 3982 | } 3983 | 3984 | .mdi-heart-outline:before { 3985 | content: "\F2D5"; 3986 | } 3987 | 3988 | .mdi-heart-pulse:before { 3989 | content: "\F5F6"; 3990 | } 3991 | 3992 | .mdi-help:before { 3993 | content: "\F2D6"; 3994 | } 3995 | 3996 | .mdi-help-box:before { 3997 | content: "\F78A"; 3998 | } 3999 | 4000 | .mdi-help-circle:before { 4001 | content: "\F2D7"; 4002 | } 4003 | 4004 | .mdi-help-circle-outline:before { 4005 | content: "\F625"; 4006 | } 4007 | 4008 | .mdi-help-network:before { 4009 | content: "\F6F4"; 4010 | } 4011 | 4012 | .mdi-hexagon:before { 4013 | content: "\F2D8"; 4014 | } 4015 | 4016 | .mdi-hexagon-multiple:before { 4017 | content: "\F6E0"; 4018 | } 4019 | 4020 | .mdi-hexagon-outline:before { 4021 | content: "\F2D9"; 4022 | } 4023 | 4024 | .mdi-high-definition:before { 4025 | content: "\F7CE"; 4026 | } 4027 | 4028 | .mdi-highway:before { 4029 | content: "\F5F7"; 4030 | } 4031 | 4032 | .mdi-history:before { 4033 | content: "\F2DA"; 4034 | } 4035 | 4036 | .mdi-hololens:before { 4037 | content: "\F2DB"; 4038 | } 4039 | 4040 | .mdi-home:before { 4041 | content: "\F2DC"; 4042 | } 4043 | 4044 | .mdi-home-assistant:before { 4045 | content: "\F7CF"; 4046 | } 4047 | 4048 | .mdi-home-automation:before { 4049 | content: "\F7D0"; 4050 | } 4051 | 4052 | .mdi-home-circle:before { 4053 | content: "\F7D1"; 4054 | } 4055 | 4056 | .mdi-home-map-marker:before { 4057 | content: "\F5F8"; 4058 | } 4059 | 4060 | .mdi-home-modern:before { 4061 | content: "\F2DD"; 4062 | } 4063 | 4064 | .mdi-home-outline:before { 4065 | content: "\F6A0"; 4066 | } 4067 | 4068 | .mdi-home-variant:before { 4069 | content: "\F2DE"; 4070 | } 4071 | 4072 | .mdi-hook:before { 4073 | content: "\F6E1"; 4074 | } 4075 | 4076 | .mdi-hook-off:before { 4077 | content: "\F6E2"; 4078 | } 4079 | 4080 | .mdi-hops:before { 4081 | content: "\F2DF"; 4082 | } 4083 | 4084 | .mdi-hospital:before { 4085 | content: "\F2E0"; 4086 | } 4087 | 4088 | .mdi-hospital-building:before { 4089 | content: "\F2E1"; 4090 | } 4091 | 4092 | .mdi-hospital-marker:before { 4093 | content: "\F2E2"; 4094 | } 4095 | 4096 | .mdi-hotel:before { 4097 | content: "\F2E3"; 4098 | } 4099 | 4100 | .mdi-houzz:before { 4101 | content: "\F2E4"; 4102 | } 4103 | 4104 | .mdi-houzz-box:before { 4105 | content: "\F2E5"; 4106 | } 4107 | 4108 | .mdi-human:before { 4109 | content: "\F2E6"; 4110 | } 4111 | 4112 | .mdi-human-child:before { 4113 | content: "\F2E7"; 4114 | } 4115 | 4116 | .mdi-human-female:before { 4117 | content: "\F649"; 4118 | } 4119 | 4120 | .mdi-human-greeting:before { 4121 | content: "\F64A"; 4122 | } 4123 | 4124 | .mdi-human-handsdown:before { 4125 | content: "\F64B"; 4126 | } 4127 | 4128 | .mdi-human-handsup:before { 4129 | content: "\F64C"; 4130 | } 4131 | 4132 | .mdi-human-male:before { 4133 | content: "\F64D"; 4134 | } 4135 | 4136 | .mdi-human-male-female:before { 4137 | content: "\F2E8"; 4138 | } 4139 | 4140 | .mdi-human-pregnant:before { 4141 | content: "\F5CF"; 4142 | } 4143 | 4144 | .mdi-humble-bundle:before { 4145 | content: "\F743"; 4146 | } 4147 | 4148 | .mdi-image:before { 4149 | content: "\F2E9"; 4150 | } 4151 | 4152 | .mdi-image-album:before { 4153 | content: "\F2EA"; 4154 | } 4155 | 4156 | .mdi-image-area:before { 4157 | content: "\F2EB"; 4158 | } 4159 | 4160 | .mdi-image-area-close:before { 4161 | content: "\F2EC"; 4162 | } 4163 | 4164 | .mdi-image-broken:before { 4165 | content: "\F2ED"; 4166 | } 4167 | 4168 | .mdi-image-broken-variant:before { 4169 | content: "\F2EE"; 4170 | } 4171 | 4172 | .mdi-image-filter:before { 4173 | content: "\F2EF"; 4174 | } 4175 | 4176 | .mdi-image-filter-black-white:before { 4177 | content: "\F2F0"; 4178 | } 4179 | 4180 | .mdi-image-filter-center-focus:before { 4181 | content: "\F2F1"; 4182 | } 4183 | 4184 | .mdi-image-filter-center-focus-weak:before { 4185 | content: "\F2F2"; 4186 | } 4187 | 4188 | .mdi-image-filter-drama:before { 4189 | content: "\F2F3"; 4190 | } 4191 | 4192 | .mdi-image-filter-frames:before { 4193 | content: "\F2F4"; 4194 | } 4195 | 4196 | .mdi-image-filter-hdr:before { 4197 | content: "\F2F5"; 4198 | } 4199 | 4200 | .mdi-image-filter-none:before { 4201 | content: "\F2F6"; 4202 | } 4203 | 4204 | .mdi-image-filter-tilt-shift:before { 4205 | content: "\F2F7"; 4206 | } 4207 | 4208 | .mdi-image-filter-vintage:before { 4209 | content: "\F2F8"; 4210 | } 4211 | 4212 | .mdi-image-multiple:before { 4213 | content: "\F2F9"; 4214 | } 4215 | 4216 | .mdi-import:before { 4217 | content: "\F2FA"; 4218 | } 4219 | 4220 | .mdi-inbox:before { 4221 | content: "\F686"; 4222 | } 4223 | 4224 | .mdi-inbox-arrow-down:before { 4225 | content: "\F2FB"; 4226 | } 4227 | 4228 | .mdi-inbox-arrow-up:before { 4229 | content: "\F3D1"; 4230 | } 4231 | 4232 | .mdi-incognito:before { 4233 | content: "\F5F9"; 4234 | } 4235 | 4236 | .mdi-infinity:before { 4237 | content: "\F6E3"; 4238 | } 4239 | 4240 | .mdi-information:before { 4241 | content: "\F2FC"; 4242 | } 4243 | 4244 | .mdi-information-outline:before { 4245 | content: "\F2FD"; 4246 | } 4247 | 4248 | .mdi-information-variant:before { 4249 | content: "\F64E"; 4250 | } 4251 | 4252 | .mdi-instagram:before { 4253 | content: "\F2FE"; 4254 | } 4255 | 4256 | .mdi-instapaper:before { 4257 | content: "\F2FF"; 4258 | } 4259 | 4260 | .mdi-internet-explorer:before { 4261 | content: "\F300"; 4262 | } 4263 | 4264 | .mdi-invert-colors:before { 4265 | content: "\F301"; 4266 | } 4267 | 4268 | .mdi-itunes:before { 4269 | content: "\F676"; 4270 | } 4271 | 4272 | .mdi-jeepney:before { 4273 | content: "\F302"; 4274 | } 4275 | 4276 | .mdi-jira:before { 4277 | content: "\F303"; 4278 | } 4279 | 4280 | .mdi-jsfiddle:before { 4281 | content: "\F304"; 4282 | } 4283 | 4284 | .mdi-json:before { 4285 | content: "\F626"; 4286 | } 4287 | 4288 | .mdi-keg:before { 4289 | content: "\F305"; 4290 | } 4291 | 4292 | .mdi-kettle:before { 4293 | content: "\F5FA"; 4294 | } 4295 | 4296 | .mdi-key:before { 4297 | content: "\F306"; 4298 | } 4299 | 4300 | .mdi-key-change:before { 4301 | content: "\F307"; 4302 | } 4303 | 4304 | .mdi-key-minus:before { 4305 | content: "\F308"; 4306 | } 4307 | 4308 | .mdi-key-plus:before { 4309 | content: "\F309"; 4310 | } 4311 | 4312 | .mdi-key-remove:before { 4313 | content: "\F30A"; 4314 | } 4315 | 4316 | .mdi-key-variant:before { 4317 | content: "\F30B"; 4318 | } 4319 | 4320 | .mdi-keyboard:before { 4321 | content: "\F30C"; 4322 | } 4323 | 4324 | .mdi-keyboard-backspace:before { 4325 | content: "\F30D"; 4326 | } 4327 | 4328 | .mdi-keyboard-caps:before { 4329 | content: "\F30E"; 4330 | } 4331 | 4332 | .mdi-keyboard-close:before { 4333 | content: "\F30F"; 4334 | } 4335 | 4336 | .mdi-keyboard-off:before { 4337 | content: "\F310"; 4338 | } 4339 | 4340 | .mdi-keyboard-return:before { 4341 | content: "\F311"; 4342 | } 4343 | 4344 | .mdi-keyboard-tab:before { 4345 | content: "\F312"; 4346 | } 4347 | 4348 | .mdi-keyboard-variant:before { 4349 | content: "\F313"; 4350 | } 4351 | 4352 | .mdi-kickstarter:before { 4353 | content: "\F744"; 4354 | } 4355 | 4356 | .mdi-kodi:before { 4357 | content: "\F314"; 4358 | } 4359 | 4360 | .mdi-label:before { 4361 | content: "\F315"; 4362 | } 4363 | 4364 | .mdi-label-outline:before { 4365 | content: "\F316"; 4366 | } 4367 | 4368 | .mdi-lambda:before { 4369 | content: "\F627"; 4370 | } 4371 | 4372 | .mdi-lamp:before { 4373 | content: "\F6B4"; 4374 | } 4375 | 4376 | .mdi-lan:before { 4377 | content: "\F317"; 4378 | } 4379 | 4380 | .mdi-lan-connect:before { 4381 | content: "\F318"; 4382 | } 4383 | 4384 | .mdi-lan-disconnect:before { 4385 | content: "\F319"; 4386 | } 4387 | 4388 | .mdi-lan-pending:before { 4389 | content: "\F31A"; 4390 | } 4391 | 4392 | .mdi-language-c:before { 4393 | content: "\F671"; 4394 | } 4395 | 4396 | .mdi-language-cpp:before { 4397 | content: "\F672"; 4398 | } 4399 | 4400 | .mdi-language-csharp:before { 4401 | content: "\F31B"; 4402 | } 4403 | 4404 | .mdi-language-css3:before { 4405 | content: "\F31C"; 4406 | } 4407 | 4408 | .mdi-language-go:before { 4409 | content: "\F7D2"; 4410 | } 4411 | 4412 | .mdi-language-html5:before { 4413 | content: "\F31D"; 4414 | } 4415 | 4416 | .mdi-language-javascript:before { 4417 | content: "\F31E"; 4418 | } 4419 | 4420 | .mdi-language-php:before { 4421 | content: "\F31F"; 4422 | } 4423 | 4424 | .mdi-language-python:before { 4425 | content: "\F320"; 4426 | } 4427 | 4428 | .mdi-language-python-text:before { 4429 | content: "\F321"; 4430 | } 4431 | 4432 | .mdi-language-r:before { 4433 | content: "\F7D3"; 4434 | } 4435 | 4436 | .mdi-language-swift:before { 4437 | content: "\F6E4"; 4438 | } 4439 | 4440 | .mdi-language-typescript:before { 4441 | content: "\F6E5"; 4442 | } 4443 | 4444 | .mdi-laptop:before { 4445 | content: "\F322"; 4446 | } 4447 | 4448 | .mdi-laptop-chromebook:before { 4449 | content: "\F323"; 4450 | } 4451 | 4452 | .mdi-laptop-mac:before { 4453 | content: "\F324"; 4454 | } 4455 | 4456 | .mdi-laptop-off:before { 4457 | content: "\F6E6"; 4458 | } 4459 | 4460 | .mdi-laptop-windows:before { 4461 | content: "\F325"; 4462 | } 4463 | 4464 | .mdi-lastfm:before { 4465 | content: "\F326"; 4466 | } 4467 | 4468 | .mdi-launch:before { 4469 | content: "\F327"; 4470 | } 4471 | 4472 | .mdi-lava-lamp:before { 4473 | content: "\F7D4"; 4474 | } 4475 | 4476 | .mdi-layers:before { 4477 | content: "\F328"; 4478 | } 4479 | 4480 | .mdi-layers-off:before { 4481 | content: "\F329"; 4482 | } 4483 | 4484 | .mdi-lead-pencil:before { 4485 | content: "\F64F"; 4486 | } 4487 | 4488 | .mdi-leaf:before { 4489 | content: "\F32A"; 4490 | } 4491 | 4492 | .mdi-led-off:before { 4493 | content: "\F32B"; 4494 | } 4495 | 4496 | .mdi-led-on:before { 4497 | content: "\F32C"; 4498 | } 4499 | 4500 | .mdi-led-outline:before { 4501 | content: "\F32D"; 4502 | } 4503 | 4504 | .mdi-led-strip:before { 4505 | content: "\F7D5"; 4506 | } 4507 | 4508 | .mdi-led-variant-off:before { 4509 | content: "\F32E"; 4510 | } 4511 | 4512 | .mdi-led-variant-on:before { 4513 | content: "\F32F"; 4514 | } 4515 | 4516 | .mdi-led-variant-outline:before { 4517 | content: "\F330"; 4518 | } 4519 | 4520 | .mdi-library:before { 4521 | content: "\F331"; 4522 | } 4523 | 4524 | .mdi-library-books:before { 4525 | content: "\F332"; 4526 | } 4527 | 4528 | .mdi-library-music:before { 4529 | content: "\F333"; 4530 | } 4531 | 4532 | .mdi-library-plus:before { 4533 | content: "\F334"; 4534 | } 4535 | 4536 | .mdi-lightbulb:before { 4537 | content: "\F335"; 4538 | } 4539 | 4540 | .mdi-lightbulb-on:before { 4541 | content: "\F6E7"; 4542 | } 4543 | 4544 | .mdi-lightbulb-on-outline:before { 4545 | content: "\F6E8"; 4546 | } 4547 | 4548 | .mdi-lightbulb-outline:before { 4549 | content: "\F336"; 4550 | } 4551 | 4552 | .mdi-link:before { 4553 | content: "\F337"; 4554 | } 4555 | 4556 | .mdi-link-off:before { 4557 | content: "\F338"; 4558 | } 4559 | 4560 | .mdi-link-variant:before { 4561 | content: "\F339"; 4562 | } 4563 | 4564 | .mdi-link-variant-off:before { 4565 | content: "\F33A"; 4566 | } 4567 | 4568 | .mdi-linkedin:before { 4569 | content: "\F33B"; 4570 | } 4571 | 4572 | .mdi-linkedin-box:before { 4573 | content: "\F33C"; 4574 | } 4575 | 4576 | .mdi-linux:before { 4577 | content: "\F33D"; 4578 | } 4579 | 4580 | .mdi-loading:before { 4581 | content: "\F771"; 4582 | } 4583 | 4584 | .mdi-lock:before { 4585 | content: "\F33E"; 4586 | } 4587 | 4588 | .mdi-lock-open:before { 4589 | content: "\F33F"; 4590 | } 4591 | 4592 | .mdi-lock-open-outline:before { 4593 | content: "\F340"; 4594 | } 4595 | 4596 | .mdi-lock-outline:before { 4597 | content: "\F341"; 4598 | } 4599 | 4600 | .mdi-lock-pattern:before { 4601 | content: "\F6E9"; 4602 | } 4603 | 4604 | .mdi-lock-plus:before { 4605 | content: "\F5FB"; 4606 | } 4607 | 4608 | .mdi-lock-reset:before { 4609 | content: "\F772"; 4610 | } 4611 | 4612 | .mdi-locker:before { 4613 | content: "\F7D6"; 4614 | } 4615 | 4616 | .mdi-locker-multiple:before { 4617 | content: "\F7D7"; 4618 | } 4619 | 4620 | .mdi-login:before { 4621 | content: "\F342"; 4622 | } 4623 | 4624 | .mdi-login-variant:before { 4625 | content: "\F5FC"; 4626 | } 4627 | 4628 | .mdi-logout:before { 4629 | content: "\F343"; 4630 | } 4631 | 4632 | .mdi-logout-variant:before { 4633 | content: "\F5FD"; 4634 | } 4635 | 4636 | .mdi-looks:before { 4637 | content: "\F344"; 4638 | } 4639 | 4640 | .mdi-loop:before { 4641 | content: "\F6EA"; 4642 | } 4643 | 4644 | .mdi-loupe:before { 4645 | content: "\F345"; 4646 | } 4647 | 4648 | .mdi-lumx:before { 4649 | content: "\F346"; 4650 | } 4651 | 4652 | .mdi-magnet:before { 4653 | content: "\F347"; 4654 | } 4655 | 4656 | .mdi-magnet-on:before { 4657 | content: "\F348"; 4658 | } 4659 | 4660 | .mdi-magnify:before { 4661 | content: "\F349"; 4662 | } 4663 | 4664 | .mdi-magnify-minus:before { 4665 | content: "\F34A"; 4666 | } 4667 | 4668 | .mdi-magnify-minus-outline:before { 4669 | content: "\F6EB"; 4670 | } 4671 | 4672 | .mdi-magnify-plus:before { 4673 | content: "\F34B"; 4674 | } 4675 | 4676 | .mdi-magnify-plus-outline:before { 4677 | content: "\F6EC"; 4678 | } 4679 | 4680 | .mdi-mail-ru:before { 4681 | content: "\F34C"; 4682 | } 4683 | 4684 | .mdi-mailbox:before { 4685 | content: "\F6ED"; 4686 | } 4687 | 4688 | .mdi-map:before { 4689 | content: "\F34D"; 4690 | } 4691 | 4692 | .mdi-map-marker:before { 4693 | content: "\F34E"; 4694 | } 4695 | 4696 | .mdi-map-marker-circle:before { 4697 | content: "\F34F"; 4698 | } 4699 | 4700 | .mdi-map-marker-minus:before { 4701 | content: "\F650"; 4702 | } 4703 | 4704 | .mdi-map-marker-multiple:before { 4705 | content: "\F350"; 4706 | } 4707 | 4708 | .mdi-map-marker-off:before { 4709 | content: "\F351"; 4710 | } 4711 | 4712 | .mdi-map-marker-outline:before { 4713 | content: "\F7D8"; 4714 | } 4715 | 4716 | .mdi-map-marker-plus:before { 4717 | content: "\F651"; 4718 | } 4719 | 4720 | .mdi-map-marker-radius:before { 4721 | content: "\F352"; 4722 | } 4723 | 4724 | .mdi-margin:before { 4725 | content: "\F353"; 4726 | } 4727 | 4728 | .mdi-markdown:before { 4729 | content: "\F354"; 4730 | } 4731 | 4732 | .mdi-marker:before { 4733 | content: "\F652"; 4734 | } 4735 | 4736 | .mdi-marker-check:before { 4737 | content: "\F355"; 4738 | } 4739 | 4740 | .mdi-martini:before { 4741 | content: "\F356"; 4742 | } 4743 | 4744 | .mdi-material-ui:before { 4745 | content: "\F357"; 4746 | } 4747 | 4748 | .mdi-math-compass:before { 4749 | content: "\F358"; 4750 | } 4751 | 4752 | .mdi-matrix:before { 4753 | content: "\F628"; 4754 | } 4755 | 4756 | .mdi-maxcdn:before { 4757 | content: "\F359"; 4758 | } 4759 | 4760 | .mdi-medical-bag:before { 4761 | content: "\F6EE"; 4762 | } 4763 | 4764 | .mdi-medium:before { 4765 | content: "\F35A"; 4766 | } 4767 | 4768 | .mdi-memory:before { 4769 | content: "\F35B"; 4770 | } 4771 | 4772 | .mdi-menu:before { 4773 | content: "\F35C"; 4774 | } 4775 | 4776 | .mdi-menu-down:before { 4777 | content: "\F35D"; 4778 | } 4779 | 4780 | .mdi-menu-down-outline:before { 4781 | content: "\F6B5"; 4782 | } 4783 | 4784 | .mdi-menu-left:before { 4785 | content: "\F35E"; 4786 | } 4787 | 4788 | .mdi-menu-right:before { 4789 | content: "\F35F"; 4790 | } 4791 | 4792 | .mdi-menu-up:before { 4793 | content: "\F360"; 4794 | } 4795 | 4796 | .mdi-menu-up-outline:before { 4797 | content: "\F6B6"; 4798 | } 4799 | 4800 | .mdi-message:before { 4801 | content: "\F361"; 4802 | } 4803 | 4804 | .mdi-message-alert:before { 4805 | content: "\F362"; 4806 | } 4807 | 4808 | .mdi-message-bulleted:before { 4809 | content: "\F6A1"; 4810 | } 4811 | 4812 | .mdi-message-bulleted-off:before { 4813 | content: "\F6A2"; 4814 | } 4815 | 4816 | .mdi-message-draw:before { 4817 | content: "\F363"; 4818 | } 4819 | 4820 | .mdi-message-image:before { 4821 | content: "\F364"; 4822 | } 4823 | 4824 | .mdi-message-outline:before { 4825 | content: "\F365"; 4826 | } 4827 | 4828 | .mdi-message-plus:before { 4829 | content: "\F653"; 4830 | } 4831 | 4832 | .mdi-message-processing:before { 4833 | content: "\F366"; 4834 | } 4835 | 4836 | .mdi-message-reply:before { 4837 | content: "\F367"; 4838 | } 4839 | 4840 | .mdi-message-reply-text:before { 4841 | content: "\F368"; 4842 | } 4843 | 4844 | .mdi-message-settings:before { 4845 | content: "\F6EF"; 4846 | } 4847 | 4848 | .mdi-message-settings-variant:before { 4849 | content: "\F6F0"; 4850 | } 4851 | 4852 | .mdi-message-text:before { 4853 | content: "\F369"; 4854 | } 4855 | 4856 | .mdi-message-text-outline:before { 4857 | content: "\F36A"; 4858 | } 4859 | 4860 | .mdi-message-video:before { 4861 | content: "\F36B"; 4862 | } 4863 | 4864 | .mdi-meteor:before { 4865 | content: "\F629"; 4866 | } 4867 | 4868 | .mdi-metronome:before { 4869 | content: "\F7D9"; 4870 | } 4871 | 4872 | .mdi-metronome-tick:before { 4873 | content: "\F7DA"; 4874 | } 4875 | 4876 | .mdi-micro-sd:before { 4877 | content: "\F7DB"; 4878 | } 4879 | 4880 | .mdi-microphone:before { 4881 | content: "\F36C"; 4882 | } 4883 | 4884 | .mdi-microphone-off:before { 4885 | content: "\F36D"; 4886 | } 4887 | 4888 | .mdi-microphone-outline:before { 4889 | content: "\F36E"; 4890 | } 4891 | 4892 | .mdi-microphone-settings:before { 4893 | content: "\F36F"; 4894 | } 4895 | 4896 | .mdi-microphone-variant:before { 4897 | content: "\F370"; 4898 | } 4899 | 4900 | .mdi-microphone-variant-off:before { 4901 | content: "\F371"; 4902 | } 4903 | 4904 | .mdi-microscope:before { 4905 | content: "\F654"; 4906 | } 4907 | 4908 | .mdi-microsoft:before { 4909 | content: "\F372"; 4910 | } 4911 | 4912 | .mdi-minecraft:before { 4913 | content: "\F373"; 4914 | } 4915 | 4916 | .mdi-minus:before { 4917 | content: "\F374"; 4918 | } 4919 | 4920 | .mdi-minus-box:before { 4921 | content: "\F375"; 4922 | } 4923 | 4924 | .mdi-minus-box-outline:before { 4925 | content: "\F6F1"; 4926 | } 4927 | 4928 | .mdi-minus-circle:before { 4929 | content: "\F376"; 4930 | } 4931 | 4932 | .mdi-minus-circle-outline:before { 4933 | content: "\F377"; 4934 | } 4935 | 4936 | .mdi-minus-network:before { 4937 | content: "\F378"; 4938 | } 4939 | 4940 | .mdi-mixcloud:before { 4941 | content: "\F62A"; 4942 | } 4943 | 4944 | .mdi-mixer:before { 4945 | content: "\F7DC"; 4946 | } 4947 | 4948 | .mdi-monitor:before { 4949 | content: "\F379"; 4950 | } 4951 | 4952 | .mdi-monitor-multiple:before { 4953 | content: "\F37A"; 4954 | } 4955 | 4956 | .mdi-more:before { 4957 | content: "\F37B"; 4958 | } 4959 | 4960 | .mdi-motorbike:before { 4961 | content: "\F37C"; 4962 | } 4963 | 4964 | .mdi-mouse:before { 4965 | content: "\F37D"; 4966 | } 4967 | 4968 | .mdi-mouse-off:before { 4969 | content: "\F37E"; 4970 | } 4971 | 4972 | .mdi-mouse-variant:before { 4973 | content: "\F37F"; 4974 | } 4975 | 4976 | .mdi-mouse-variant-off:before { 4977 | content: "\F380"; 4978 | } 4979 | 4980 | .mdi-move-resize:before { 4981 | content: "\F655"; 4982 | } 4983 | 4984 | .mdi-move-resize-variant:before { 4985 | content: "\F656"; 4986 | } 4987 | 4988 | .mdi-movie:before { 4989 | content: "\F381"; 4990 | } 4991 | 4992 | .mdi-movie-roll:before { 4993 | content: "\F7DD"; 4994 | } 4995 | 4996 | .mdi-multiplication:before { 4997 | content: "\F382"; 4998 | } 4999 | 5000 | .mdi-multiplication-box:before { 5001 | content: "\F383"; 5002 | } 5003 | 5004 | .mdi-mushroom:before { 5005 | content: "\F7DE"; 5006 | } 5007 | 5008 | .mdi-mushroom-outline:before { 5009 | content: "\F7DF"; 5010 | } 5011 | 5012 | .mdi-music:before { 5013 | content: "\F759"; 5014 | } 5015 | 5016 | .mdi-music-box:before { 5017 | content: "\F384"; 5018 | } 5019 | 5020 | .mdi-music-box-outline:before { 5021 | content: "\F385"; 5022 | } 5023 | 5024 | .mdi-music-circle:before { 5025 | content: "\F386"; 5026 | } 5027 | 5028 | .mdi-music-note:before { 5029 | content: "\F387"; 5030 | } 5031 | 5032 | .mdi-music-note-bluetooth:before { 5033 | content: "\F5FE"; 5034 | } 5035 | 5036 | .mdi-music-note-bluetooth-off:before { 5037 | content: "\F5FF"; 5038 | } 5039 | 5040 | .mdi-music-note-eighth:before { 5041 | content: "\F388"; 5042 | } 5043 | 5044 | .mdi-music-note-half:before { 5045 | content: "\F389"; 5046 | } 5047 | 5048 | .mdi-music-note-off:before { 5049 | content: "\F38A"; 5050 | } 5051 | 5052 | .mdi-music-note-quarter:before { 5053 | content: "\F38B"; 5054 | } 5055 | 5056 | .mdi-music-note-sixteenth:before { 5057 | content: "\F38C"; 5058 | } 5059 | 5060 | .mdi-music-note-whole:before { 5061 | content: "\F38D"; 5062 | } 5063 | 5064 | .mdi-music-off:before { 5065 | content: "\F75A"; 5066 | } 5067 | 5068 | .mdi-nature:before { 5069 | content: "\F38E"; 5070 | } 5071 | 5072 | .mdi-nature-people:before { 5073 | content: "\F38F"; 5074 | } 5075 | 5076 | .mdi-navigation:before { 5077 | content: "\F390"; 5078 | } 5079 | 5080 | .mdi-near-me:before { 5081 | content: "\F5CD"; 5082 | } 5083 | 5084 | .mdi-needle:before { 5085 | content: "\F391"; 5086 | } 5087 | 5088 | .mdi-nest-protect:before { 5089 | content: "\F392"; 5090 | } 5091 | 5092 | .mdi-nest-thermostat:before { 5093 | content: "\F393"; 5094 | } 5095 | 5096 | .mdi-netflix:before { 5097 | content: "\F745"; 5098 | } 5099 | 5100 | .mdi-network:before { 5101 | content: "\F6F2"; 5102 | } 5103 | 5104 | .mdi-new-box:before { 5105 | content: "\F394"; 5106 | } 5107 | 5108 | .mdi-newspaper:before { 5109 | content: "\F395"; 5110 | } 5111 | 5112 | .mdi-nfc:before { 5113 | content: "\F396"; 5114 | } 5115 | 5116 | .mdi-nfc-tap:before { 5117 | content: "\F397"; 5118 | } 5119 | 5120 | .mdi-nfc-variant:before { 5121 | content: "\F398"; 5122 | } 5123 | 5124 | .mdi-ninja:before { 5125 | content: "\F773"; 5126 | } 5127 | 5128 | .mdi-nintendo-switch:before { 5129 | content: "\F7E0"; 5130 | } 5131 | 5132 | .mdi-nodejs:before { 5133 | content: "\F399"; 5134 | } 5135 | 5136 | .mdi-note:before { 5137 | content: "\F39A"; 5138 | } 5139 | 5140 | .mdi-note-multiple:before { 5141 | content: "\F6B7"; 5142 | } 5143 | 5144 | .mdi-note-multiple-outline:before { 5145 | content: "\F6B8"; 5146 | } 5147 | 5148 | .mdi-note-outline:before { 5149 | content: "\F39B"; 5150 | } 5151 | 5152 | .mdi-note-plus:before { 5153 | content: "\F39C"; 5154 | } 5155 | 5156 | .mdi-note-plus-outline:before { 5157 | content: "\F39D"; 5158 | } 5159 | 5160 | .mdi-note-text:before { 5161 | content: "\F39E"; 5162 | } 5163 | 5164 | .mdi-notification-clear-all:before { 5165 | content: "\F39F"; 5166 | } 5167 | 5168 | .mdi-npm:before { 5169 | content: "\F6F6"; 5170 | } 5171 | 5172 | .mdi-nuke:before { 5173 | content: "\F6A3"; 5174 | } 5175 | 5176 | .mdi-null:before { 5177 | content: "\F7E1"; 5178 | } 5179 | 5180 | .mdi-numeric:before { 5181 | content: "\F3A0"; 5182 | } 5183 | 5184 | .mdi-numeric-0-box:before { 5185 | content: "\F3A1"; 5186 | } 5187 | 5188 | .mdi-numeric-0-box-multiple-outline:before { 5189 | content: "\F3A2"; 5190 | } 5191 | 5192 | .mdi-numeric-0-box-outline:before { 5193 | content: "\F3A3"; 5194 | } 5195 | 5196 | .mdi-numeric-1-box:before { 5197 | content: "\F3A4"; 5198 | } 5199 | 5200 | .mdi-numeric-1-box-multiple-outline:before { 5201 | content: "\F3A5"; 5202 | } 5203 | 5204 | .mdi-numeric-1-box-outline:before { 5205 | content: "\F3A6"; 5206 | } 5207 | 5208 | .mdi-numeric-2-box:before { 5209 | content: "\F3A7"; 5210 | } 5211 | 5212 | .mdi-numeric-2-box-multiple-outline:before { 5213 | content: "\F3A8"; 5214 | } 5215 | 5216 | .mdi-numeric-2-box-outline:before { 5217 | content: "\F3A9"; 5218 | } 5219 | 5220 | .mdi-numeric-3-box:before { 5221 | content: "\F3AA"; 5222 | } 5223 | 5224 | .mdi-numeric-3-box-multiple-outline:before { 5225 | content: "\F3AB"; 5226 | } 5227 | 5228 | .mdi-numeric-3-box-outline:before { 5229 | content: "\F3AC"; 5230 | } 5231 | 5232 | .mdi-numeric-4-box:before { 5233 | content: "\F3AD"; 5234 | } 5235 | 5236 | .mdi-numeric-4-box-multiple-outline:before { 5237 | content: "\F3AE"; 5238 | } 5239 | 5240 | .mdi-numeric-4-box-outline:before { 5241 | content: "\F3AF"; 5242 | } 5243 | 5244 | .mdi-numeric-5-box:before { 5245 | content: "\F3B0"; 5246 | } 5247 | 5248 | .mdi-numeric-5-box-multiple-outline:before { 5249 | content: "\F3B1"; 5250 | } 5251 | 5252 | .mdi-numeric-5-box-outline:before { 5253 | content: "\F3B2"; 5254 | } 5255 | 5256 | .mdi-numeric-6-box:before { 5257 | content: "\F3B3"; 5258 | } 5259 | 5260 | .mdi-numeric-6-box-multiple-outline:before { 5261 | content: "\F3B4"; 5262 | } 5263 | 5264 | .mdi-numeric-6-box-outline:before { 5265 | content: "\F3B5"; 5266 | } 5267 | 5268 | .mdi-numeric-7-box:before { 5269 | content: "\F3B6"; 5270 | } 5271 | 5272 | .mdi-numeric-7-box-multiple-outline:before { 5273 | content: "\F3B7"; 5274 | } 5275 | 5276 | .mdi-numeric-7-box-outline:before { 5277 | content: "\F3B8"; 5278 | } 5279 | 5280 | .mdi-numeric-8-box:before { 5281 | content: "\F3B9"; 5282 | } 5283 | 5284 | .mdi-numeric-8-box-multiple-outline:before { 5285 | content: "\F3BA"; 5286 | } 5287 | 5288 | .mdi-numeric-8-box-outline:before { 5289 | content: "\F3BB"; 5290 | } 5291 | 5292 | .mdi-numeric-9-box:before { 5293 | content: "\F3BC"; 5294 | } 5295 | 5296 | .mdi-numeric-9-box-multiple-outline:before { 5297 | content: "\F3BD"; 5298 | } 5299 | 5300 | .mdi-numeric-9-box-outline:before { 5301 | content: "\F3BE"; 5302 | } 5303 | 5304 | .mdi-numeric-9-plus-box:before { 5305 | content: "\F3BF"; 5306 | } 5307 | 5308 | .mdi-numeric-9-plus-box-multiple-outline:before { 5309 | content: "\F3C0"; 5310 | } 5311 | 5312 | .mdi-numeric-9-plus-box-outline:before { 5313 | content: "\F3C1"; 5314 | } 5315 | 5316 | .mdi-nut:before { 5317 | content: "\F6F7"; 5318 | } 5319 | 5320 | .mdi-nutrition:before { 5321 | content: "\F3C2"; 5322 | } 5323 | 5324 | .mdi-oar:before { 5325 | content: "\F67B"; 5326 | } 5327 | 5328 | .mdi-octagon:before { 5329 | content: "\F3C3"; 5330 | } 5331 | 5332 | .mdi-octagon-outline:before { 5333 | content: "\F3C4"; 5334 | } 5335 | 5336 | .mdi-octagram:before { 5337 | content: "\F6F8"; 5338 | } 5339 | 5340 | .mdi-octagram-outline:before { 5341 | content: "\F774"; 5342 | } 5343 | 5344 | .mdi-odnoklassniki:before { 5345 | content: "\F3C5"; 5346 | } 5347 | 5348 | .mdi-office:before { 5349 | content: "\F3C6"; 5350 | } 5351 | 5352 | .mdi-oil:before { 5353 | content: "\F3C7"; 5354 | } 5355 | 5356 | .mdi-oil-temperature:before { 5357 | content: "\F3C8"; 5358 | } 5359 | 5360 | .mdi-omega:before { 5361 | content: "\F3C9"; 5362 | } 5363 | 5364 | .mdi-onedrive:before { 5365 | content: "\F3CA"; 5366 | } 5367 | 5368 | .mdi-onenote:before { 5369 | content: "\F746"; 5370 | } 5371 | 5372 | .mdi-opacity:before { 5373 | content: "\F5CC"; 5374 | } 5375 | 5376 | .mdi-open-in-app:before { 5377 | content: "\F3CB"; 5378 | } 5379 | 5380 | .mdi-open-in-new:before { 5381 | content: "\F3CC"; 5382 | } 5383 | 5384 | .mdi-openid:before { 5385 | content: "\F3CD"; 5386 | } 5387 | 5388 | .mdi-opera:before { 5389 | content: "\F3CE"; 5390 | } 5391 | 5392 | .mdi-orbit:before { 5393 | content: "\F018"; 5394 | } 5395 | 5396 | .mdi-ornament:before { 5397 | content: "\F3CF"; 5398 | } 5399 | 5400 | .mdi-ornament-variant:before { 5401 | content: "\F3D0"; 5402 | } 5403 | 5404 | .mdi-owl:before { 5405 | content: "\F3D2"; 5406 | } 5407 | 5408 | .mdi-package:before { 5409 | content: "\F3D3"; 5410 | } 5411 | 5412 | .mdi-package-down:before { 5413 | content: "\F3D4"; 5414 | } 5415 | 5416 | .mdi-package-up:before { 5417 | content: "\F3D5"; 5418 | } 5419 | 5420 | .mdi-package-variant:before { 5421 | content: "\F3D6"; 5422 | } 5423 | 5424 | .mdi-package-variant-closed:before { 5425 | content: "\F3D7"; 5426 | } 5427 | 5428 | .mdi-page-first:before { 5429 | content: "\F600"; 5430 | } 5431 | 5432 | .mdi-page-last:before { 5433 | content: "\F601"; 5434 | } 5435 | 5436 | .mdi-page-layout-body:before { 5437 | content: "\F6F9"; 5438 | } 5439 | 5440 | .mdi-page-layout-footer:before { 5441 | content: "\F6FA"; 5442 | } 5443 | 5444 | .mdi-page-layout-header:before { 5445 | content: "\F6FB"; 5446 | } 5447 | 5448 | .mdi-page-layout-sidebar-left:before { 5449 | content: "\F6FC"; 5450 | } 5451 | 5452 | .mdi-page-layout-sidebar-right:before { 5453 | content: "\F6FD"; 5454 | } 5455 | 5456 | .mdi-palette:before { 5457 | content: "\F3D8"; 5458 | } 5459 | 5460 | .mdi-palette-advanced:before { 5461 | content: "\F3D9"; 5462 | } 5463 | 5464 | .mdi-panda:before { 5465 | content: "\F3DA"; 5466 | } 5467 | 5468 | .mdi-pandora:before { 5469 | content: "\F3DB"; 5470 | } 5471 | 5472 | .mdi-panorama:before { 5473 | content: "\F3DC"; 5474 | } 5475 | 5476 | .mdi-panorama-fisheye:before { 5477 | content: "\F3DD"; 5478 | } 5479 | 5480 | .mdi-panorama-horizontal:before { 5481 | content: "\F3DE"; 5482 | } 5483 | 5484 | .mdi-panorama-vertical:before { 5485 | content: "\F3DF"; 5486 | } 5487 | 5488 | .mdi-panorama-wide-angle:before { 5489 | content: "\F3E0"; 5490 | } 5491 | 5492 | .mdi-paper-cut-vertical:before { 5493 | content: "\F3E1"; 5494 | } 5495 | 5496 | .mdi-paperclip:before { 5497 | content: "\F3E2"; 5498 | } 5499 | 5500 | .mdi-parking:before { 5501 | content: "\F3E3"; 5502 | } 5503 | 5504 | .mdi-passport:before { 5505 | content: "\F7E2"; 5506 | } 5507 | 5508 | .mdi-pause:before { 5509 | content: "\F3E4"; 5510 | } 5511 | 5512 | .mdi-pause-circle:before { 5513 | content: "\F3E5"; 5514 | } 5515 | 5516 | .mdi-pause-circle-outline:before { 5517 | content: "\F3E6"; 5518 | } 5519 | 5520 | .mdi-pause-octagon:before { 5521 | content: "\F3E7"; 5522 | } 5523 | 5524 | .mdi-pause-octagon-outline:before { 5525 | content: "\F3E8"; 5526 | } 5527 | 5528 | .mdi-paw:before { 5529 | content: "\F3E9"; 5530 | } 5531 | 5532 | .mdi-paw-off:before { 5533 | content: "\F657"; 5534 | } 5535 | 5536 | .mdi-pen:before { 5537 | content: "\F3EA"; 5538 | } 5539 | 5540 | .mdi-pencil:before { 5541 | content: "\F3EB"; 5542 | } 5543 | 5544 | .mdi-pencil-box:before { 5545 | content: "\F3EC"; 5546 | } 5547 | 5548 | .mdi-pencil-box-outline:before { 5549 | content: "\F3ED"; 5550 | } 5551 | 5552 | .mdi-pencil-circle:before { 5553 | content: "\F6FE"; 5554 | } 5555 | 5556 | .mdi-pencil-circle-outline:before { 5557 | content: "\F775"; 5558 | } 5559 | 5560 | .mdi-pencil-lock:before { 5561 | content: "\F3EE"; 5562 | } 5563 | 5564 | .mdi-pencil-off:before { 5565 | content: "\F3EF"; 5566 | } 5567 | 5568 | .mdi-pentagon:before { 5569 | content: "\F6FF"; 5570 | } 5571 | 5572 | .mdi-pentagon-outline:before { 5573 | content: "\F700"; 5574 | } 5575 | 5576 | .mdi-percent:before { 5577 | content: "\F3F0"; 5578 | } 5579 | 5580 | .mdi-periodic-table-co2:before { 5581 | content: "\F7E3"; 5582 | } 5583 | 5584 | .mdi-periscope:before { 5585 | content: "\F747"; 5586 | } 5587 | 5588 | .mdi-pharmacy:before { 5589 | content: "\F3F1"; 5590 | } 5591 | 5592 | .mdi-phone:before { 5593 | content: "\F3F2"; 5594 | } 5595 | 5596 | .mdi-phone-bluetooth:before { 5597 | content: "\F3F3"; 5598 | } 5599 | 5600 | .mdi-phone-classic:before { 5601 | content: "\F602"; 5602 | } 5603 | 5604 | .mdi-phone-forward:before { 5605 | content: "\F3F4"; 5606 | } 5607 | 5608 | .mdi-phone-hangup:before { 5609 | content: "\F3F5"; 5610 | } 5611 | 5612 | .mdi-phone-in-talk:before { 5613 | content: "\F3F6"; 5614 | } 5615 | 5616 | .mdi-phone-incoming:before { 5617 | content: "\F3F7"; 5618 | } 5619 | 5620 | .mdi-phone-locked:before { 5621 | content: "\F3F8"; 5622 | } 5623 | 5624 | .mdi-phone-log:before { 5625 | content: "\F3F9"; 5626 | } 5627 | 5628 | .mdi-phone-minus:before { 5629 | content: "\F658"; 5630 | } 5631 | 5632 | .mdi-phone-missed:before { 5633 | content: "\F3FA"; 5634 | } 5635 | 5636 | .mdi-phone-outgoing:before { 5637 | content: "\F3FB"; 5638 | } 5639 | 5640 | .mdi-phone-paused:before { 5641 | content: "\F3FC"; 5642 | } 5643 | 5644 | .mdi-phone-plus:before { 5645 | content: "\F659"; 5646 | } 5647 | 5648 | .mdi-phone-settings:before { 5649 | content: "\F3FD"; 5650 | } 5651 | 5652 | .mdi-phone-voip:before { 5653 | content: "\F3FE"; 5654 | } 5655 | 5656 | .mdi-pi:before { 5657 | content: "\F3FF"; 5658 | } 5659 | 5660 | .mdi-pi-box:before { 5661 | content: "\F400"; 5662 | } 5663 | 5664 | .mdi-piano:before { 5665 | content: "\F67C"; 5666 | } 5667 | 5668 | .mdi-pig:before { 5669 | content: "\F401"; 5670 | } 5671 | 5672 | .mdi-pill:before { 5673 | content: "\F402"; 5674 | } 5675 | 5676 | .mdi-pillar:before { 5677 | content: "\F701"; 5678 | } 5679 | 5680 | .mdi-pin:before { 5681 | content: "\F403"; 5682 | } 5683 | 5684 | .mdi-pin-off:before { 5685 | content: "\F404"; 5686 | } 5687 | 5688 | .mdi-pine-tree:before { 5689 | content: "\F405"; 5690 | } 5691 | 5692 | .mdi-pine-tree-box:before { 5693 | content: "\F406"; 5694 | } 5695 | 5696 | .mdi-pinterest:before { 5697 | content: "\F407"; 5698 | } 5699 | 5700 | .mdi-pinterest-box:before { 5701 | content: "\F408"; 5702 | } 5703 | 5704 | .mdi-pipe:before { 5705 | content: "\F7E4"; 5706 | } 5707 | 5708 | .mdi-pipe-disconnected:before { 5709 | content: "\F7E5"; 5710 | } 5711 | 5712 | .mdi-pistol:before { 5713 | content: "\F702"; 5714 | } 5715 | 5716 | .mdi-pizza:before { 5717 | content: "\F409"; 5718 | } 5719 | 5720 | .mdi-plane-shield:before { 5721 | content: "\F6BA"; 5722 | } 5723 | 5724 | .mdi-play:before { 5725 | content: "\F40A"; 5726 | } 5727 | 5728 | .mdi-play-box-outline:before { 5729 | content: "\F40B"; 5730 | } 5731 | 5732 | .mdi-play-circle:before { 5733 | content: "\F40C"; 5734 | } 5735 | 5736 | .mdi-play-circle-outline:before { 5737 | content: "\F40D"; 5738 | } 5739 | 5740 | .mdi-play-pause:before { 5741 | content: "\F40E"; 5742 | } 5743 | 5744 | .mdi-play-protected-content:before { 5745 | content: "\F40F"; 5746 | } 5747 | 5748 | .mdi-playlist-check:before { 5749 | content: "\F5C7"; 5750 | } 5751 | 5752 | .mdi-playlist-minus:before { 5753 | content: "\F410"; 5754 | } 5755 | 5756 | .mdi-playlist-play:before { 5757 | content: "\F411"; 5758 | } 5759 | 5760 | .mdi-playlist-plus:before { 5761 | content: "\F412"; 5762 | } 5763 | 5764 | .mdi-playlist-remove:before { 5765 | content: "\F413"; 5766 | } 5767 | 5768 | .mdi-playstation:before { 5769 | content: "\F414"; 5770 | } 5771 | 5772 | .mdi-plex:before { 5773 | content: "\F6B9"; 5774 | } 5775 | 5776 | .mdi-plus:before { 5777 | content: "\F415"; 5778 | } 5779 | 5780 | .mdi-plus-box:before { 5781 | content: "\F416"; 5782 | } 5783 | 5784 | .mdi-plus-box-outline:before { 5785 | content: "\F703"; 5786 | } 5787 | 5788 | .mdi-plus-circle:before { 5789 | content: "\F417"; 5790 | } 5791 | 5792 | .mdi-plus-circle-multiple-outline:before { 5793 | content: "\F418"; 5794 | } 5795 | 5796 | .mdi-plus-circle-outline:before { 5797 | content: "\F419"; 5798 | } 5799 | 5800 | .mdi-plus-network:before { 5801 | content: "\F41A"; 5802 | } 5803 | 5804 | .mdi-plus-one:before { 5805 | content: "\F41B"; 5806 | } 5807 | 5808 | .mdi-plus-outline:before { 5809 | content: "\F704"; 5810 | } 5811 | 5812 | .mdi-pocket:before { 5813 | content: "\F41C"; 5814 | } 5815 | 5816 | .mdi-pokeball:before { 5817 | content: "\F41D"; 5818 | } 5819 | 5820 | .mdi-polaroid:before { 5821 | content: "\F41E"; 5822 | } 5823 | 5824 | .mdi-poll:before { 5825 | content: "\F41F"; 5826 | } 5827 | 5828 | .mdi-poll-box:before { 5829 | content: "\F420"; 5830 | } 5831 | 5832 | .mdi-polymer:before { 5833 | content: "\F421"; 5834 | } 5835 | 5836 | .mdi-pool:before { 5837 | content: "\F606"; 5838 | } 5839 | 5840 | .mdi-popcorn:before { 5841 | content: "\F422"; 5842 | } 5843 | 5844 | .mdi-pot:before { 5845 | content: "\F65A"; 5846 | } 5847 | 5848 | .mdi-pot-mix:before { 5849 | content: "\F65B"; 5850 | } 5851 | 5852 | .mdi-pound:before { 5853 | content: "\F423"; 5854 | } 5855 | 5856 | .mdi-pound-box:before { 5857 | content: "\F424"; 5858 | } 5859 | 5860 | .mdi-power:before { 5861 | content: "\F425"; 5862 | } 5863 | 5864 | .mdi-power-plug:before { 5865 | content: "\F6A4"; 5866 | } 5867 | 5868 | .mdi-power-plug-off:before { 5869 | content: "\F6A5"; 5870 | } 5871 | 5872 | .mdi-power-settings:before { 5873 | content: "\F426"; 5874 | } 5875 | 5876 | .mdi-power-socket:before { 5877 | content: "\F427"; 5878 | } 5879 | 5880 | .mdi-power-socket-eu:before { 5881 | content: "\F7E6"; 5882 | } 5883 | 5884 | .mdi-power-socket-uk:before { 5885 | content: "\F7E7"; 5886 | } 5887 | 5888 | .mdi-power-socket-us:before { 5889 | content: "\F7E8"; 5890 | } 5891 | 5892 | .mdi-prescription:before { 5893 | content: "\F705"; 5894 | } 5895 | 5896 | .mdi-presentation:before { 5897 | content: "\F428"; 5898 | } 5899 | 5900 | .mdi-presentation-play:before { 5901 | content: "\F429"; 5902 | } 5903 | 5904 | .mdi-printer:before { 5905 | content: "\F42A"; 5906 | } 5907 | 5908 | .mdi-printer-3d:before { 5909 | content: "\F42B"; 5910 | } 5911 | 5912 | .mdi-printer-alert:before { 5913 | content: "\F42C"; 5914 | } 5915 | 5916 | .mdi-printer-settings:before { 5917 | content: "\F706"; 5918 | } 5919 | 5920 | .mdi-priority-high:before { 5921 | content: "\F603"; 5922 | } 5923 | 5924 | .mdi-priority-low:before { 5925 | content: "\F604"; 5926 | } 5927 | 5928 | .mdi-professional-hexagon:before { 5929 | content: "\F42D"; 5930 | } 5931 | 5932 | .mdi-projector:before { 5933 | content: "\F42E"; 5934 | } 5935 | 5936 | .mdi-projector-screen:before { 5937 | content: "\F42F"; 5938 | } 5939 | 5940 | .mdi-publish:before { 5941 | content: "\F6A6"; 5942 | } 5943 | 5944 | .mdi-pulse:before { 5945 | content: "\F430"; 5946 | } 5947 | 5948 | .mdi-puzzle:before { 5949 | content: "\F431"; 5950 | } 5951 | 5952 | .mdi-qqchat:before { 5953 | content: "\F605"; 5954 | } 5955 | 5956 | .mdi-qrcode:before { 5957 | content: "\F432"; 5958 | } 5959 | 5960 | .mdi-qrcode-scan:before { 5961 | content: "\F433"; 5962 | } 5963 | 5964 | .mdi-quadcopter:before { 5965 | content: "\F434"; 5966 | } 5967 | 5968 | .mdi-quality-high:before { 5969 | content: "\F435"; 5970 | } 5971 | 5972 | .mdi-quicktime:before { 5973 | content: "\F436"; 5974 | } 5975 | 5976 | .mdi-radar:before { 5977 | content: "\F437"; 5978 | } 5979 | 5980 | .mdi-radiator:before { 5981 | content: "\F438"; 5982 | } 5983 | 5984 | .mdi-radio:before { 5985 | content: "\F439"; 5986 | } 5987 | 5988 | .mdi-radio-handheld:before { 5989 | content: "\F43A"; 5990 | } 5991 | 5992 | .mdi-radio-tower:before { 5993 | content: "\F43B"; 5994 | } 5995 | 5996 | .mdi-radioactive:before { 5997 | content: "\F43C"; 5998 | } 5999 | 6000 | .mdi-radiobox-blank:before { 6001 | content: "\F43D"; 6002 | } 6003 | 6004 | .mdi-radiobox-marked:before { 6005 | content: "\F43E"; 6006 | } 6007 | 6008 | .mdi-raspberrypi:before { 6009 | content: "\F43F"; 6010 | } 6011 | 6012 | .mdi-ray-end:before { 6013 | content: "\F440"; 6014 | } 6015 | 6016 | .mdi-ray-end-arrow:before { 6017 | content: "\F441"; 6018 | } 6019 | 6020 | .mdi-ray-start:before { 6021 | content: "\F442"; 6022 | } 6023 | 6024 | .mdi-ray-start-arrow:before { 6025 | content: "\F443"; 6026 | } 6027 | 6028 | .mdi-ray-start-end:before { 6029 | content: "\F444"; 6030 | } 6031 | 6032 | .mdi-ray-vertex:before { 6033 | content: "\F445"; 6034 | } 6035 | 6036 | .mdi-rdio:before { 6037 | content: "\F446"; 6038 | } 6039 | 6040 | .mdi-react:before { 6041 | content: "\F707"; 6042 | } 6043 | 6044 | .mdi-read:before { 6045 | content: "\F447"; 6046 | } 6047 | 6048 | .mdi-readability:before { 6049 | content: "\F448"; 6050 | } 6051 | 6052 | .mdi-receipt:before { 6053 | content: "\F449"; 6054 | } 6055 | 6056 | .mdi-record:before { 6057 | content: "\F44A"; 6058 | } 6059 | 6060 | .mdi-record-rec:before { 6061 | content: "\F44B"; 6062 | } 6063 | 6064 | .mdi-recycle:before { 6065 | content: "\F44C"; 6066 | } 6067 | 6068 | .mdi-reddit:before { 6069 | content: "\F44D"; 6070 | } 6071 | 6072 | .mdi-redo:before { 6073 | content: "\F44E"; 6074 | } 6075 | 6076 | .mdi-redo-variant:before { 6077 | content: "\F44F"; 6078 | } 6079 | 6080 | .mdi-refresh:before { 6081 | content: "\F450"; 6082 | } 6083 | 6084 | .mdi-regex:before { 6085 | content: "\F451"; 6086 | } 6087 | 6088 | .mdi-relative-scale:before { 6089 | content: "\F452"; 6090 | } 6091 | 6092 | .mdi-reload:before { 6093 | content: "\F453"; 6094 | } 6095 | 6096 | .mdi-remote:before { 6097 | content: "\F454"; 6098 | } 6099 | 6100 | .mdi-rename-box:before { 6101 | content: "\F455"; 6102 | } 6103 | 6104 | .mdi-reorder-horizontal:before { 6105 | content: "\F687"; 6106 | } 6107 | 6108 | .mdi-reorder-vertical:before { 6109 | content: "\F688"; 6110 | } 6111 | 6112 | .mdi-repeat:before { 6113 | content: "\F456"; 6114 | } 6115 | 6116 | .mdi-repeat-off:before { 6117 | content: "\F457"; 6118 | } 6119 | 6120 | .mdi-repeat-once:before { 6121 | content: "\F458"; 6122 | } 6123 | 6124 | .mdi-replay:before { 6125 | content: "\F459"; 6126 | } 6127 | 6128 | .mdi-reply:before { 6129 | content: "\F45A"; 6130 | } 6131 | 6132 | .mdi-reply-all:before { 6133 | content: "\F45B"; 6134 | } 6135 | 6136 | .mdi-reproduction:before { 6137 | content: "\F45C"; 6138 | } 6139 | 6140 | .mdi-resize-bottom-right:before { 6141 | content: "\F45D"; 6142 | } 6143 | 6144 | .mdi-responsive:before { 6145 | content: "\F45E"; 6146 | } 6147 | 6148 | .mdi-restart:before { 6149 | content: "\F708"; 6150 | } 6151 | 6152 | .mdi-restore:before { 6153 | content: "\F6A7"; 6154 | } 6155 | 6156 | .mdi-rewind:before { 6157 | content: "\F45F"; 6158 | } 6159 | 6160 | .mdi-rewind-outline:before { 6161 | content: "\F709"; 6162 | } 6163 | 6164 | .mdi-rhombus:before { 6165 | content: "\F70A"; 6166 | } 6167 | 6168 | .mdi-rhombus-outline:before { 6169 | content: "\F70B"; 6170 | } 6171 | 6172 | .mdi-ribbon:before { 6173 | content: "\F460"; 6174 | } 6175 | 6176 | .mdi-rice:before { 6177 | content: "\F7E9"; 6178 | } 6179 | 6180 | .mdi-ring:before { 6181 | content: "\F7EA"; 6182 | } 6183 | 6184 | .mdi-road:before { 6185 | content: "\F461"; 6186 | } 6187 | 6188 | .mdi-road-variant:before { 6189 | content: "\F462"; 6190 | } 6191 | 6192 | .mdi-robot:before { 6193 | content: "\F6A8"; 6194 | } 6195 | 6196 | .mdi-rocket:before { 6197 | content: "\F463"; 6198 | } 6199 | 6200 | .mdi-roomba:before { 6201 | content: "\F70C"; 6202 | } 6203 | 6204 | .mdi-rotate-3d:before { 6205 | content: "\F464"; 6206 | } 6207 | 6208 | .mdi-rotate-left:before { 6209 | content: "\F465"; 6210 | } 6211 | 6212 | .mdi-rotate-left-variant:before { 6213 | content: "\F466"; 6214 | } 6215 | 6216 | .mdi-rotate-right:before { 6217 | content: "\F467"; 6218 | } 6219 | 6220 | .mdi-rotate-right-variant:before { 6221 | content: "\F468"; 6222 | } 6223 | 6224 | .mdi-rounded-corner:before { 6225 | content: "\F607"; 6226 | } 6227 | 6228 | .mdi-router-wireless:before { 6229 | content: "\F469"; 6230 | } 6231 | 6232 | .mdi-routes:before { 6233 | content: "\F46A"; 6234 | } 6235 | 6236 | .mdi-rowing:before { 6237 | content: "\F608"; 6238 | } 6239 | 6240 | .mdi-rss:before { 6241 | content: "\F46B"; 6242 | } 6243 | 6244 | .mdi-rss-box:before { 6245 | content: "\F46C"; 6246 | } 6247 | 6248 | .mdi-ruler:before { 6249 | content: "\F46D"; 6250 | } 6251 | 6252 | .mdi-run:before { 6253 | content: "\F70D"; 6254 | } 6255 | 6256 | .mdi-run-fast:before { 6257 | content: "\F46E"; 6258 | } 6259 | 6260 | .mdi-sale:before { 6261 | content: "\F46F"; 6262 | } 6263 | 6264 | .mdi-sass:before { 6265 | content: "\F7EB"; 6266 | } 6267 | 6268 | .mdi-satellite:before { 6269 | content: "\F470"; 6270 | } 6271 | 6272 | .mdi-satellite-variant:before { 6273 | content: "\F471"; 6274 | } 6275 | 6276 | .mdi-saxophone:before { 6277 | content: "\F609"; 6278 | } 6279 | 6280 | .mdi-scale:before { 6281 | content: "\F472"; 6282 | } 6283 | 6284 | .mdi-scale-balance:before { 6285 | content: "\F5D1"; 6286 | } 6287 | 6288 | .mdi-scale-bathroom:before { 6289 | content: "\F473"; 6290 | } 6291 | 6292 | .mdi-scanner:before { 6293 | content: "\F6AA"; 6294 | } 6295 | 6296 | .mdi-school:before { 6297 | content: "\F474"; 6298 | } 6299 | 6300 | .mdi-screen-rotation:before { 6301 | content: "\F475"; 6302 | } 6303 | 6304 | .mdi-screen-rotation-lock:before { 6305 | content: "\F476"; 6306 | } 6307 | 6308 | .mdi-screwdriver:before { 6309 | content: "\F477"; 6310 | } 6311 | 6312 | .mdi-script:before { 6313 | content: "\F478"; 6314 | } 6315 | 6316 | .mdi-sd:before { 6317 | content: "\F479"; 6318 | } 6319 | 6320 | .mdi-seal:before { 6321 | content: "\F47A"; 6322 | } 6323 | 6324 | .mdi-search-web:before { 6325 | content: "\F70E"; 6326 | } 6327 | 6328 | .mdi-seat-flat:before { 6329 | content: "\F47B"; 6330 | } 6331 | 6332 | .mdi-seat-flat-angled:before { 6333 | content: "\F47C"; 6334 | } 6335 | 6336 | .mdi-seat-individual-suite:before { 6337 | content: "\F47D"; 6338 | } 6339 | 6340 | .mdi-seat-legroom-extra:before { 6341 | content: "\F47E"; 6342 | } 6343 | 6344 | .mdi-seat-legroom-normal:before { 6345 | content: "\F47F"; 6346 | } 6347 | 6348 | .mdi-seat-legroom-reduced:before { 6349 | content: "\F480"; 6350 | } 6351 | 6352 | .mdi-seat-recline-extra:before { 6353 | content: "\F481"; 6354 | } 6355 | 6356 | .mdi-seat-recline-normal:before { 6357 | content: "\F482"; 6358 | } 6359 | 6360 | .mdi-security:before { 6361 | content: "\F483"; 6362 | } 6363 | 6364 | .mdi-security-home:before { 6365 | content: "\F689"; 6366 | } 6367 | 6368 | .mdi-security-network:before { 6369 | content: "\F484"; 6370 | } 6371 | 6372 | .mdi-select:before { 6373 | content: "\F485"; 6374 | } 6375 | 6376 | .mdi-select-all:before { 6377 | content: "\F486"; 6378 | } 6379 | 6380 | .mdi-select-inverse:before { 6381 | content: "\F487"; 6382 | } 6383 | 6384 | .mdi-select-off:before { 6385 | content: "\F488"; 6386 | } 6387 | 6388 | .mdi-selection:before { 6389 | content: "\F489"; 6390 | } 6391 | 6392 | .mdi-selection-off:before { 6393 | content: "\F776"; 6394 | } 6395 | 6396 | .mdi-send:before { 6397 | content: "\F48A"; 6398 | } 6399 | 6400 | .mdi-send-secure:before { 6401 | content: "\F7EC"; 6402 | } 6403 | 6404 | .mdi-serial-port:before { 6405 | content: "\F65C"; 6406 | } 6407 | 6408 | .mdi-server:before { 6409 | content: "\F48B"; 6410 | } 6411 | 6412 | .mdi-server-minus:before { 6413 | content: "\F48C"; 6414 | } 6415 | 6416 | .mdi-server-network:before { 6417 | content: "\F48D"; 6418 | } 6419 | 6420 | .mdi-server-network-off:before { 6421 | content: "\F48E"; 6422 | } 6423 | 6424 | .mdi-server-off:before { 6425 | content: "\F48F"; 6426 | } 6427 | 6428 | .mdi-server-plus:before { 6429 | content: "\F490"; 6430 | } 6431 | 6432 | .mdi-server-remove:before { 6433 | content: "\F491"; 6434 | } 6435 | 6436 | .mdi-server-security:before { 6437 | content: "\F492"; 6438 | } 6439 | 6440 | .mdi-set-all:before { 6441 | content: "\F777"; 6442 | } 6443 | 6444 | .mdi-set-center:before { 6445 | content: "\F778"; 6446 | } 6447 | 6448 | .mdi-set-center-right:before { 6449 | content: "\F779"; 6450 | } 6451 | 6452 | .mdi-set-left:before { 6453 | content: "\F77A"; 6454 | } 6455 | 6456 | .mdi-set-left-center:before { 6457 | content: "\F77B"; 6458 | } 6459 | 6460 | .mdi-set-left-right:before { 6461 | content: "\F77C"; 6462 | } 6463 | 6464 | .mdi-set-none:before { 6465 | content: "\F77D"; 6466 | } 6467 | 6468 | .mdi-set-right:before { 6469 | content: "\F77E"; 6470 | } 6471 | 6472 | .mdi-settings:before { 6473 | content: "\F493"; 6474 | } 6475 | 6476 | .mdi-settings-box:before { 6477 | content: "\F494"; 6478 | } 6479 | 6480 | .mdi-shape-circle-plus:before { 6481 | content: "\F65D"; 6482 | } 6483 | 6484 | .mdi-shape-plus:before { 6485 | content: "\F495"; 6486 | } 6487 | 6488 | .mdi-shape-polygon-plus:before { 6489 | content: "\F65E"; 6490 | } 6491 | 6492 | .mdi-shape-rectangle-plus:before { 6493 | content: "\F65F"; 6494 | } 6495 | 6496 | .mdi-shape-square-plus:before { 6497 | content: "\F660"; 6498 | } 6499 | 6500 | .mdi-share:before { 6501 | content: "\F496"; 6502 | } 6503 | 6504 | .mdi-share-variant:before { 6505 | content: "\F497"; 6506 | } 6507 | 6508 | .mdi-shield:before { 6509 | content: "\F498"; 6510 | } 6511 | 6512 | .mdi-shield-half-full:before { 6513 | content: "\F77F"; 6514 | } 6515 | 6516 | .mdi-shield-outline:before { 6517 | content: "\F499"; 6518 | } 6519 | 6520 | .mdi-shopping:before { 6521 | content: "\F49A"; 6522 | } 6523 | 6524 | .mdi-shopping-music:before { 6525 | content: "\F49B"; 6526 | } 6527 | 6528 | .mdi-shovel:before { 6529 | content: "\F70F"; 6530 | } 6531 | 6532 | .mdi-shovel-off:before { 6533 | content: "\F710"; 6534 | } 6535 | 6536 | .mdi-shredder:before { 6537 | content: "\F49C"; 6538 | } 6539 | 6540 | .mdi-shuffle:before { 6541 | content: "\F49D"; 6542 | } 6543 | 6544 | .mdi-shuffle-disabled:before { 6545 | content: "\F49E"; 6546 | } 6547 | 6548 | .mdi-shuffle-variant:before { 6549 | content: "\F49F"; 6550 | } 6551 | 6552 | .mdi-sigma:before { 6553 | content: "\F4A0"; 6554 | } 6555 | 6556 | .mdi-sigma-lower:before { 6557 | content: "\F62B"; 6558 | } 6559 | 6560 | .mdi-sign-caution:before { 6561 | content: "\F4A1"; 6562 | } 6563 | 6564 | .mdi-sign-direction:before { 6565 | content: "\F780"; 6566 | } 6567 | 6568 | .mdi-sign-text:before { 6569 | content: "\F781"; 6570 | } 6571 | 6572 | .mdi-signal:before { 6573 | content: "\F4A2"; 6574 | } 6575 | 6576 | .mdi-signal-2g:before { 6577 | content: "\F711"; 6578 | } 6579 | 6580 | .mdi-signal-3g:before { 6581 | content: "\F712"; 6582 | } 6583 | 6584 | .mdi-signal-4g:before { 6585 | content: "\F713"; 6586 | } 6587 | 6588 | .mdi-signal-hspa:before { 6589 | content: "\F714"; 6590 | } 6591 | 6592 | .mdi-signal-hspa-plus:before { 6593 | content: "\F715"; 6594 | } 6595 | 6596 | .mdi-signal-off:before { 6597 | content: "\F782"; 6598 | } 6599 | 6600 | .mdi-signal-variant:before { 6601 | content: "\F60A"; 6602 | } 6603 | 6604 | .mdi-silverware:before { 6605 | content: "\F4A3"; 6606 | } 6607 | 6608 | .mdi-silverware-fork:before { 6609 | content: "\F4A4"; 6610 | } 6611 | 6612 | .mdi-silverware-spoon:before { 6613 | content: "\F4A5"; 6614 | } 6615 | 6616 | .mdi-silverware-variant:before { 6617 | content: "\F4A6"; 6618 | } 6619 | 6620 | .mdi-sim:before { 6621 | content: "\F4A7"; 6622 | } 6623 | 6624 | .mdi-sim-alert:before { 6625 | content: "\F4A8"; 6626 | } 6627 | 6628 | .mdi-sim-off:before { 6629 | content: "\F4A9"; 6630 | } 6631 | 6632 | .mdi-sitemap:before { 6633 | content: "\F4AA"; 6634 | } 6635 | 6636 | .mdi-skip-backward:before { 6637 | content: "\F4AB"; 6638 | } 6639 | 6640 | .mdi-skip-forward:before { 6641 | content: "\F4AC"; 6642 | } 6643 | 6644 | .mdi-skip-next:before { 6645 | content: "\F4AD"; 6646 | } 6647 | 6648 | .mdi-skip-next-circle:before { 6649 | content: "\F661"; 6650 | } 6651 | 6652 | .mdi-skip-next-circle-outline:before { 6653 | content: "\F662"; 6654 | } 6655 | 6656 | .mdi-skip-previous:before { 6657 | content: "\F4AE"; 6658 | } 6659 | 6660 | .mdi-skip-previous-circle:before { 6661 | content: "\F663"; 6662 | } 6663 | 6664 | .mdi-skip-previous-circle-outline:before { 6665 | content: "\F664"; 6666 | } 6667 | 6668 | .mdi-skull:before { 6669 | content: "\F68B"; 6670 | } 6671 | 6672 | .mdi-skype:before { 6673 | content: "\F4AF"; 6674 | } 6675 | 6676 | .mdi-skype-business:before { 6677 | content: "\F4B0"; 6678 | } 6679 | 6680 | .mdi-slack:before { 6681 | content: "\F4B1"; 6682 | } 6683 | 6684 | .mdi-sleep:before { 6685 | content: "\F4B2"; 6686 | } 6687 | 6688 | .mdi-sleep-off:before { 6689 | content: "\F4B3"; 6690 | } 6691 | 6692 | .mdi-smoking:before { 6693 | content: "\F4B4"; 6694 | } 6695 | 6696 | .mdi-smoking-off:before { 6697 | content: "\F4B5"; 6698 | } 6699 | 6700 | .mdi-snapchat:before { 6701 | content: "\F4B6"; 6702 | } 6703 | 6704 | .mdi-snowflake:before { 6705 | content: "\F716"; 6706 | } 6707 | 6708 | .mdi-snowman:before { 6709 | content: "\F4B7"; 6710 | } 6711 | 6712 | .mdi-soccer:before { 6713 | content: "\F4B8"; 6714 | } 6715 | 6716 | .mdi-sofa:before { 6717 | content: "\F4B9"; 6718 | } 6719 | 6720 | .mdi-solid:before { 6721 | content: "\F68C"; 6722 | } 6723 | 6724 | .mdi-sort:before { 6725 | content: "\F4BA"; 6726 | } 6727 | 6728 | .mdi-sort-alphabetical:before { 6729 | content: "\F4BB"; 6730 | } 6731 | 6732 | .mdi-sort-ascending:before { 6733 | content: "\F4BC"; 6734 | } 6735 | 6736 | .mdi-sort-descending:before { 6737 | content: "\F4BD"; 6738 | } 6739 | 6740 | .mdi-sort-numeric:before { 6741 | content: "\F4BE"; 6742 | } 6743 | 6744 | .mdi-sort-variant:before { 6745 | content: "\F4BF"; 6746 | } 6747 | 6748 | .mdi-soundcloud:before { 6749 | content: "\F4C0"; 6750 | } 6751 | 6752 | .mdi-source-branch:before { 6753 | content: "\F62C"; 6754 | } 6755 | 6756 | .mdi-source-commit:before { 6757 | content: "\F717"; 6758 | } 6759 | 6760 | .mdi-source-commit-end:before { 6761 | content: "\F718"; 6762 | } 6763 | 6764 | .mdi-source-commit-end-local:before { 6765 | content: "\F719"; 6766 | } 6767 | 6768 | .mdi-source-commit-local:before { 6769 | content: "\F71A"; 6770 | } 6771 | 6772 | .mdi-source-commit-next-local:before { 6773 | content: "\F71B"; 6774 | } 6775 | 6776 | .mdi-source-commit-start:before { 6777 | content: "\F71C"; 6778 | } 6779 | 6780 | .mdi-source-commit-start-next-local:before { 6781 | content: "\F71D"; 6782 | } 6783 | 6784 | .mdi-source-fork:before { 6785 | content: "\F4C1"; 6786 | } 6787 | 6788 | .mdi-source-merge:before { 6789 | content: "\F62D"; 6790 | } 6791 | 6792 | .mdi-source-pull:before { 6793 | content: "\F4C2"; 6794 | } 6795 | 6796 | .mdi-soy-sauce:before { 6797 | content: "\F7ED"; 6798 | } 6799 | 6800 | .mdi-speaker:before { 6801 | content: "\F4C3"; 6802 | } 6803 | 6804 | .mdi-speaker-off:before { 6805 | content: "\F4C4"; 6806 | } 6807 | 6808 | .mdi-speaker-wireless:before { 6809 | content: "\F71E"; 6810 | } 6811 | 6812 | .mdi-speedometer:before { 6813 | content: "\F4C5"; 6814 | } 6815 | 6816 | .mdi-spellcheck:before { 6817 | content: "\F4C6"; 6818 | } 6819 | 6820 | .mdi-spotify:before { 6821 | content: "\F4C7"; 6822 | } 6823 | 6824 | .mdi-spotlight:before { 6825 | content: "\F4C8"; 6826 | } 6827 | 6828 | .mdi-spotlight-beam:before { 6829 | content: "\F4C9"; 6830 | } 6831 | 6832 | .mdi-spray:before { 6833 | content: "\F665"; 6834 | } 6835 | 6836 | .mdi-square:before { 6837 | content: "\F763"; 6838 | } 6839 | 6840 | .mdi-square-inc:before { 6841 | content: "\F4CA"; 6842 | } 6843 | 6844 | .mdi-square-inc-cash:before { 6845 | content: "\F4CB"; 6846 | } 6847 | 6848 | .mdi-square-outline:before { 6849 | content: "\F762"; 6850 | } 6851 | 6852 | .mdi-square-root:before { 6853 | content: "\F783"; 6854 | } 6855 | 6856 | .mdi-stackexchange:before { 6857 | content: "\F60B"; 6858 | } 6859 | 6860 | .mdi-stackoverflow:before { 6861 | content: "\F4CC"; 6862 | } 6863 | 6864 | .mdi-stadium:before { 6865 | content: "\F71F"; 6866 | } 6867 | 6868 | .mdi-stairs:before { 6869 | content: "\F4CD"; 6870 | } 6871 | 6872 | .mdi-standard-definition:before { 6873 | content: "\F7EE"; 6874 | } 6875 | 6876 | .mdi-star:before { 6877 | content: "\F4CE"; 6878 | } 6879 | 6880 | .mdi-star-circle:before { 6881 | content: "\F4CF"; 6882 | } 6883 | 6884 | .mdi-star-half:before { 6885 | content: "\F4D0"; 6886 | } 6887 | 6888 | .mdi-star-off:before { 6889 | content: "\F4D1"; 6890 | } 6891 | 6892 | .mdi-star-outline:before { 6893 | content: "\F4D2"; 6894 | } 6895 | 6896 | .mdi-steam:before { 6897 | content: "\F4D3"; 6898 | } 6899 | 6900 | .mdi-steering:before { 6901 | content: "\F4D4"; 6902 | } 6903 | 6904 | .mdi-step-backward:before { 6905 | content: "\F4D5"; 6906 | } 6907 | 6908 | .mdi-step-backward-2:before { 6909 | content: "\F4D6"; 6910 | } 6911 | 6912 | .mdi-step-forward:before { 6913 | content: "\F4D7"; 6914 | } 6915 | 6916 | .mdi-step-forward-2:before { 6917 | content: "\F4D8"; 6918 | } 6919 | 6920 | .mdi-stethoscope:before { 6921 | content: "\F4D9"; 6922 | } 6923 | 6924 | .mdi-sticker:before { 6925 | content: "\F5D0"; 6926 | } 6927 | 6928 | .mdi-sticker-emoji:before { 6929 | content: "\F784"; 6930 | } 6931 | 6932 | .mdi-stocking:before { 6933 | content: "\F4DA"; 6934 | } 6935 | 6936 | .mdi-stop:before { 6937 | content: "\F4DB"; 6938 | } 6939 | 6940 | .mdi-stop-circle:before { 6941 | content: "\F666"; 6942 | } 6943 | 6944 | .mdi-stop-circle-outline:before { 6945 | content: "\F667"; 6946 | } 6947 | 6948 | .mdi-store:before { 6949 | content: "\F4DC"; 6950 | } 6951 | 6952 | .mdi-store-24-hour:before { 6953 | content: "\F4DD"; 6954 | } 6955 | 6956 | .mdi-stove:before { 6957 | content: "\F4DE"; 6958 | } 6959 | 6960 | .mdi-subdirectory-arrow-left:before { 6961 | content: "\F60C"; 6962 | } 6963 | 6964 | .mdi-subdirectory-arrow-right:before { 6965 | content: "\F60D"; 6966 | } 6967 | 6968 | .mdi-subway:before { 6969 | content: "\F6AB"; 6970 | } 6971 | 6972 | .mdi-subway-variant:before { 6973 | content: "\F4DF"; 6974 | } 6975 | 6976 | .mdi-summit:before { 6977 | content: "\F785"; 6978 | } 6979 | 6980 | .mdi-sunglasses:before { 6981 | content: "\F4E0"; 6982 | } 6983 | 6984 | .mdi-surround-sound:before { 6985 | content: "\F5C5"; 6986 | } 6987 | 6988 | .mdi-surround-sound-2-0:before { 6989 | content: "\F7EF"; 6990 | } 6991 | 6992 | .mdi-surround-sound-3-1:before { 6993 | content: "\F7F0"; 6994 | } 6995 | 6996 | .mdi-surround-sound-5-1:before { 6997 | content: "\F7F1"; 6998 | } 6999 | 7000 | .mdi-surround-sound-7-1:before { 7001 | content: "\F7F2"; 7002 | } 7003 | 7004 | .mdi-svg:before { 7005 | content: "\F720"; 7006 | } 7007 | 7008 | .mdi-swap-horizontal:before { 7009 | content: "\F4E1"; 7010 | } 7011 | 7012 | .mdi-swap-vertical:before { 7013 | content: "\F4E2"; 7014 | } 7015 | 7016 | .mdi-swim:before { 7017 | content: "\F4E3"; 7018 | } 7019 | 7020 | .mdi-switch:before { 7021 | content: "\F4E4"; 7022 | } 7023 | 7024 | .mdi-sword:before { 7025 | content: "\F4E5"; 7026 | } 7027 | 7028 | .mdi-sword-cross:before { 7029 | content: "\F786"; 7030 | } 7031 | 7032 | .mdi-sync:before { 7033 | content: "\F4E6"; 7034 | } 7035 | 7036 | .mdi-sync-alert:before { 7037 | content: "\F4E7"; 7038 | } 7039 | 7040 | .mdi-sync-off:before { 7041 | content: "\F4E8"; 7042 | } 7043 | 7044 | .mdi-tab:before { 7045 | content: "\F4E9"; 7046 | } 7047 | 7048 | .mdi-tab-plus:before { 7049 | content: "\F75B"; 7050 | } 7051 | 7052 | .mdi-tab-unselected:before { 7053 | content: "\F4EA"; 7054 | } 7055 | 7056 | .mdi-table:before { 7057 | content: "\F4EB"; 7058 | } 7059 | 7060 | .mdi-table-column-plus-after:before { 7061 | content: "\F4EC"; 7062 | } 7063 | 7064 | .mdi-table-column-plus-before:before { 7065 | content: "\F4ED"; 7066 | } 7067 | 7068 | .mdi-table-column-remove:before { 7069 | content: "\F4EE"; 7070 | } 7071 | 7072 | .mdi-table-column-width:before { 7073 | content: "\F4EF"; 7074 | } 7075 | 7076 | .mdi-table-edit:before { 7077 | content: "\F4F0"; 7078 | } 7079 | 7080 | .mdi-table-large:before { 7081 | content: "\F4F1"; 7082 | } 7083 | 7084 | .mdi-table-row-height:before { 7085 | content: "\F4F2"; 7086 | } 7087 | 7088 | .mdi-table-row-plus-after:before { 7089 | content: "\F4F3"; 7090 | } 7091 | 7092 | .mdi-table-row-plus-before:before { 7093 | content: "\F4F4"; 7094 | } 7095 | 7096 | .mdi-table-row-remove:before { 7097 | content: "\F4F5"; 7098 | } 7099 | 7100 | .mdi-tablet:before { 7101 | content: "\F4F6"; 7102 | } 7103 | 7104 | .mdi-tablet-android:before { 7105 | content: "\F4F7"; 7106 | } 7107 | 7108 | .mdi-tablet-ipad:before { 7109 | content: "\F4F8"; 7110 | } 7111 | 7112 | .mdi-taco:before { 7113 | content: "\F761"; 7114 | } 7115 | 7116 | .mdi-tag:before { 7117 | content: "\F4F9"; 7118 | } 7119 | 7120 | .mdi-tag-faces:before { 7121 | content: "\F4FA"; 7122 | } 7123 | 7124 | .mdi-tag-heart:before { 7125 | content: "\F68A"; 7126 | } 7127 | 7128 | .mdi-tag-multiple:before { 7129 | content: "\F4FB"; 7130 | } 7131 | 7132 | .mdi-tag-outline:before { 7133 | content: "\F4FC"; 7134 | } 7135 | 7136 | .mdi-tag-plus:before { 7137 | content: "\F721"; 7138 | } 7139 | 7140 | .mdi-tag-remove:before { 7141 | content: "\F722"; 7142 | } 7143 | 7144 | .mdi-tag-text-outline:before { 7145 | content: "\F4FD"; 7146 | } 7147 | 7148 | .mdi-target:before { 7149 | content: "\F4FE"; 7150 | } 7151 | 7152 | .mdi-taxi:before { 7153 | content: "\F4FF"; 7154 | } 7155 | 7156 | .mdi-teamviewer:before { 7157 | content: "\F500"; 7158 | } 7159 | 7160 | .mdi-telegram:before { 7161 | content: "\F501"; 7162 | } 7163 | 7164 | .mdi-television:before { 7165 | content: "\F502"; 7166 | } 7167 | 7168 | .mdi-television-classic:before { 7169 | content: "\F7F3"; 7170 | } 7171 | 7172 | .mdi-television-guide:before { 7173 | content: "\F503"; 7174 | } 7175 | 7176 | .mdi-temperature-celsius:before { 7177 | content: "\F504"; 7178 | } 7179 | 7180 | .mdi-temperature-fahrenheit:before { 7181 | content: "\F505"; 7182 | } 7183 | 7184 | .mdi-temperature-kelvin:before { 7185 | content: "\F506"; 7186 | } 7187 | 7188 | .mdi-tennis:before { 7189 | content: "\F507"; 7190 | } 7191 | 7192 | .mdi-tent:before { 7193 | content: "\F508"; 7194 | } 7195 | 7196 | .mdi-terrain:before { 7197 | content: "\F509"; 7198 | } 7199 | 7200 | .mdi-test-tube:before { 7201 | content: "\F668"; 7202 | } 7203 | 7204 | .mdi-text-shadow:before { 7205 | content: "\F669"; 7206 | } 7207 | 7208 | .mdi-text-to-speech:before { 7209 | content: "\F50A"; 7210 | } 7211 | 7212 | .mdi-text-to-speech-off:before { 7213 | content: "\F50B"; 7214 | } 7215 | 7216 | .mdi-textbox:before { 7217 | content: "\F60E"; 7218 | } 7219 | 7220 | .mdi-textbox-password:before { 7221 | content: "\F7F4"; 7222 | } 7223 | 7224 | .mdi-texture:before { 7225 | content: "\F50C"; 7226 | } 7227 | 7228 | .mdi-theater:before { 7229 | content: "\F50D"; 7230 | } 7231 | 7232 | .mdi-theme-light-dark:before { 7233 | content: "\F50E"; 7234 | } 7235 | 7236 | .mdi-thermometer:before { 7237 | content: "\F50F"; 7238 | } 7239 | 7240 | .mdi-thermometer-lines:before { 7241 | content: "\F510"; 7242 | } 7243 | 7244 | .mdi-thought-bubble:before { 7245 | content: "\F7F5"; 7246 | } 7247 | 7248 | .mdi-thought-bubble-outline:before { 7249 | content: "\F7F6"; 7250 | } 7251 | 7252 | .mdi-thumb-down:before { 7253 | content: "\F511"; 7254 | } 7255 | 7256 | .mdi-thumb-down-outline:before { 7257 | content: "\F512"; 7258 | } 7259 | 7260 | .mdi-thumb-up:before { 7261 | content: "\F513"; 7262 | } 7263 | 7264 | .mdi-thumb-up-outline:before { 7265 | content: "\F514"; 7266 | } 7267 | 7268 | .mdi-thumbs-up-down:before { 7269 | content: "\F515"; 7270 | } 7271 | 7272 | .mdi-ticket:before { 7273 | content: "\F516"; 7274 | } 7275 | 7276 | .mdi-ticket-account:before { 7277 | content: "\F517"; 7278 | } 7279 | 7280 | .mdi-ticket-confirmation:before { 7281 | content: "\F518"; 7282 | } 7283 | 7284 | .mdi-ticket-percent:before { 7285 | content: "\F723"; 7286 | } 7287 | 7288 | .mdi-tie:before { 7289 | content: "\F519"; 7290 | } 7291 | 7292 | .mdi-tilde:before { 7293 | content: "\F724"; 7294 | } 7295 | 7296 | .mdi-timelapse:before { 7297 | content: "\F51A"; 7298 | } 7299 | 7300 | .mdi-timer:before { 7301 | content: "\F51B"; 7302 | } 7303 | 7304 | .mdi-timer-10:before { 7305 | content: "\F51C"; 7306 | } 7307 | 7308 | .mdi-timer-3:before { 7309 | content: "\F51D"; 7310 | } 7311 | 7312 | .mdi-timer-off:before { 7313 | content: "\F51E"; 7314 | } 7315 | 7316 | .mdi-timer-sand:before { 7317 | content: "\F51F"; 7318 | } 7319 | 7320 | .mdi-timer-sand-empty:before { 7321 | content: "\F6AC"; 7322 | } 7323 | 7324 | .mdi-timer-sand-full:before { 7325 | content: "\F78B"; 7326 | } 7327 | 7328 | .mdi-timetable:before { 7329 | content: "\F520"; 7330 | } 7331 | 7332 | .mdi-toggle-switch:before { 7333 | content: "\F521"; 7334 | } 7335 | 7336 | .mdi-toggle-switch-off:before { 7337 | content: "\F522"; 7338 | } 7339 | 7340 | .mdi-tooltip:before { 7341 | content: "\F523"; 7342 | } 7343 | 7344 | .mdi-tooltip-edit:before { 7345 | content: "\F524"; 7346 | } 7347 | 7348 | .mdi-tooltip-image:before { 7349 | content: "\F525"; 7350 | } 7351 | 7352 | .mdi-tooltip-outline:before { 7353 | content: "\F526"; 7354 | } 7355 | 7356 | .mdi-tooltip-outline-plus:before { 7357 | content: "\F527"; 7358 | } 7359 | 7360 | .mdi-tooltip-text:before { 7361 | content: "\F528"; 7362 | } 7363 | 7364 | .mdi-tooth:before { 7365 | content: "\F529"; 7366 | } 7367 | 7368 | .mdi-tor:before { 7369 | content: "\F52A"; 7370 | } 7371 | 7372 | .mdi-tower-beach:before { 7373 | content: "\F680"; 7374 | } 7375 | 7376 | .mdi-tower-fire:before { 7377 | content: "\F681"; 7378 | } 7379 | 7380 | .mdi-trackpad:before { 7381 | content: "\F7F7"; 7382 | } 7383 | 7384 | .mdi-traffic-light:before { 7385 | content: "\F52B"; 7386 | } 7387 | 7388 | .mdi-train:before { 7389 | content: "\F52C"; 7390 | } 7391 | 7392 | .mdi-tram:before { 7393 | content: "\F52D"; 7394 | } 7395 | 7396 | .mdi-transcribe:before { 7397 | content: "\F52E"; 7398 | } 7399 | 7400 | .mdi-transcribe-close:before { 7401 | content: "\F52F"; 7402 | } 7403 | 7404 | .mdi-transfer:before { 7405 | content: "\F530"; 7406 | } 7407 | 7408 | .mdi-transit-transfer:before { 7409 | content: "\F6AD"; 7410 | } 7411 | 7412 | .mdi-translate:before { 7413 | content: "\F5CA"; 7414 | } 7415 | 7416 | .mdi-treasure-chest:before { 7417 | content: "\F725"; 7418 | } 7419 | 7420 | .mdi-tree:before { 7421 | content: "\F531"; 7422 | } 7423 | 7424 | .mdi-trello:before { 7425 | content: "\F532"; 7426 | } 7427 | 7428 | .mdi-trending-down:before { 7429 | content: "\F533"; 7430 | } 7431 | 7432 | .mdi-trending-neutral:before { 7433 | content: "\F534"; 7434 | } 7435 | 7436 | .mdi-trending-up:before { 7437 | content: "\F535"; 7438 | } 7439 | 7440 | .mdi-triangle:before { 7441 | content: "\F536"; 7442 | } 7443 | 7444 | .mdi-triangle-outline:before { 7445 | content: "\F537"; 7446 | } 7447 | 7448 | .mdi-trophy:before { 7449 | content: "\F538"; 7450 | } 7451 | 7452 | .mdi-trophy-award:before { 7453 | content: "\F539"; 7454 | } 7455 | 7456 | .mdi-trophy-outline:before { 7457 | content: "\F53A"; 7458 | } 7459 | 7460 | .mdi-trophy-variant:before { 7461 | content: "\F53B"; 7462 | } 7463 | 7464 | .mdi-trophy-variant-outline:before { 7465 | content: "\F53C"; 7466 | } 7467 | 7468 | .mdi-truck:before { 7469 | content: "\F53D"; 7470 | } 7471 | 7472 | .mdi-truck-delivery:before { 7473 | content: "\F53E"; 7474 | } 7475 | 7476 | .mdi-truck-fast:before { 7477 | content: "\F787"; 7478 | } 7479 | 7480 | .mdi-truck-trailer:before { 7481 | content: "\F726"; 7482 | } 7483 | 7484 | .mdi-tshirt-crew:before { 7485 | content: "\F53F"; 7486 | } 7487 | 7488 | .mdi-tshirt-v:before { 7489 | content: "\F540"; 7490 | } 7491 | 7492 | .mdi-tumblr:before { 7493 | content: "\F541"; 7494 | } 7495 | 7496 | .mdi-tumblr-reblog:before { 7497 | content: "\F542"; 7498 | } 7499 | 7500 | .mdi-tune:before { 7501 | content: "\F62E"; 7502 | } 7503 | 7504 | .mdi-tune-vertical:before { 7505 | content: "\F66A"; 7506 | } 7507 | 7508 | .mdi-twitch:before { 7509 | content: "\F543"; 7510 | } 7511 | 7512 | .mdi-twitter:before { 7513 | content: "\F544"; 7514 | } 7515 | 7516 | .mdi-twitter-box:before { 7517 | content: "\F545"; 7518 | } 7519 | 7520 | .mdi-twitter-circle:before { 7521 | content: "\F546"; 7522 | } 7523 | 7524 | .mdi-twitter-retweet:before { 7525 | content: "\F547"; 7526 | } 7527 | 7528 | .mdi-uber:before { 7529 | content: "\F748"; 7530 | } 7531 | 7532 | .mdi-ubuntu:before { 7533 | content: "\F548"; 7534 | } 7535 | 7536 | .mdi-ultra-high-definition:before { 7537 | content: "\F7F8"; 7538 | } 7539 | 7540 | .mdi-umbraco:before { 7541 | content: "\F549"; 7542 | } 7543 | 7544 | .mdi-umbrella:before { 7545 | content: "\F54A"; 7546 | } 7547 | 7548 | .mdi-umbrella-outline:before { 7549 | content: "\F54B"; 7550 | } 7551 | 7552 | .mdi-undo:before { 7553 | content: "\F54C"; 7554 | } 7555 | 7556 | .mdi-undo-variant:before { 7557 | content: "\F54D"; 7558 | } 7559 | 7560 | .mdi-unfold-less-horizontal:before { 7561 | content: "\F54E"; 7562 | } 7563 | 7564 | .mdi-unfold-less-vertical:before { 7565 | content: "\F75F"; 7566 | } 7567 | 7568 | .mdi-unfold-more-horizontal:before { 7569 | content: "\F54F"; 7570 | } 7571 | 7572 | .mdi-unfold-more-vertical:before { 7573 | content: "\F760"; 7574 | } 7575 | 7576 | .mdi-ungroup:before { 7577 | content: "\F550"; 7578 | } 7579 | 7580 | .mdi-unity:before { 7581 | content: "\F6AE"; 7582 | } 7583 | 7584 | .mdi-untappd:before { 7585 | content: "\F551"; 7586 | } 7587 | 7588 | .mdi-update:before { 7589 | content: "\F6AF"; 7590 | } 7591 | 7592 | .mdi-upload:before { 7593 | content: "\F552"; 7594 | } 7595 | 7596 | .mdi-upload-network:before { 7597 | content: "\F6F5"; 7598 | } 7599 | 7600 | .mdi-usb:before { 7601 | content: "\F553"; 7602 | } 7603 | 7604 | .mdi-van-passenger:before { 7605 | content: "\F7F9"; 7606 | } 7607 | 7608 | .mdi-van-utility:before { 7609 | content: "\F7FA"; 7610 | } 7611 | 7612 | .mdi-vanish:before { 7613 | content: "\F7FB"; 7614 | } 7615 | 7616 | .mdi-vector-arrange-above:before { 7617 | content: "\F554"; 7618 | } 7619 | 7620 | .mdi-vector-arrange-below:before { 7621 | content: "\F555"; 7622 | } 7623 | 7624 | .mdi-vector-circle:before { 7625 | content: "\F556"; 7626 | } 7627 | 7628 | .mdi-vector-circle-variant:before { 7629 | content: "\F557"; 7630 | } 7631 | 7632 | .mdi-vector-combine:before { 7633 | content: "\F558"; 7634 | } 7635 | 7636 | .mdi-vector-curve:before { 7637 | content: "\F559"; 7638 | } 7639 | 7640 | .mdi-vector-difference:before { 7641 | content: "\F55A"; 7642 | } 7643 | 7644 | .mdi-vector-difference-ab:before { 7645 | content: "\F55B"; 7646 | } 7647 | 7648 | .mdi-vector-difference-ba:before { 7649 | content: "\F55C"; 7650 | } 7651 | 7652 | .mdi-vector-intersection:before { 7653 | content: "\F55D"; 7654 | } 7655 | 7656 | .mdi-vector-line:before { 7657 | content: "\F55E"; 7658 | } 7659 | 7660 | .mdi-vector-point:before { 7661 | content: "\F55F"; 7662 | } 7663 | 7664 | .mdi-vector-polygon:before { 7665 | content: "\F560"; 7666 | } 7667 | 7668 | .mdi-vector-polyline:before { 7669 | content: "\F561"; 7670 | } 7671 | 7672 | .mdi-vector-radius:before { 7673 | content: "\F749"; 7674 | } 7675 | 7676 | .mdi-vector-rectangle:before { 7677 | content: "\F5C6"; 7678 | } 7679 | 7680 | .mdi-vector-selection:before { 7681 | content: "\F562"; 7682 | } 7683 | 7684 | .mdi-vector-square:before { 7685 | content: "\F001"; 7686 | } 7687 | 7688 | .mdi-vector-triangle:before { 7689 | content: "\F563"; 7690 | } 7691 | 7692 | .mdi-vector-union:before { 7693 | content: "\F564"; 7694 | } 7695 | 7696 | .mdi-verified:before { 7697 | content: "\F565"; 7698 | } 7699 | 7700 | .mdi-vibrate:before { 7701 | content: "\F566"; 7702 | } 7703 | 7704 | .mdi-video:before { 7705 | content: "\F567"; 7706 | } 7707 | 7708 | .mdi-video-3d:before { 7709 | content: "\F7FC"; 7710 | } 7711 | 7712 | .mdi-video-off:before { 7713 | content: "\F568"; 7714 | } 7715 | 7716 | .mdi-video-switch:before { 7717 | content: "\F569"; 7718 | } 7719 | 7720 | .mdi-view-agenda:before { 7721 | content: "\F56A"; 7722 | } 7723 | 7724 | .mdi-view-array:before { 7725 | content: "\F56B"; 7726 | } 7727 | 7728 | .mdi-view-carousel:before { 7729 | content: "\F56C"; 7730 | } 7731 | 7732 | .mdi-view-column:before { 7733 | content: "\F56D"; 7734 | } 7735 | 7736 | .mdi-view-dashboard:before { 7737 | content: "\F56E"; 7738 | } 7739 | 7740 | .mdi-view-day:before { 7741 | content: "\F56F"; 7742 | } 7743 | 7744 | .mdi-view-grid:before { 7745 | content: "\F570"; 7746 | } 7747 | 7748 | .mdi-view-headline:before { 7749 | content: "\F571"; 7750 | } 7751 | 7752 | .mdi-view-list:before { 7753 | content: "\F572"; 7754 | } 7755 | 7756 | .mdi-view-module:before { 7757 | content: "\F573"; 7758 | } 7759 | 7760 | .mdi-view-parallel:before { 7761 | content: "\F727"; 7762 | } 7763 | 7764 | .mdi-view-quilt:before { 7765 | content: "\F574"; 7766 | } 7767 | 7768 | .mdi-view-sequential:before { 7769 | content: "\F728"; 7770 | } 7771 | 7772 | .mdi-view-stream:before { 7773 | content: "\F575"; 7774 | } 7775 | 7776 | .mdi-view-week:before { 7777 | content: "\F576"; 7778 | } 7779 | 7780 | .mdi-vimeo:before { 7781 | content: "\F577"; 7782 | } 7783 | 7784 | .mdi-vine:before { 7785 | content: "\F578"; 7786 | } 7787 | 7788 | .mdi-violin:before { 7789 | content: "\F60F"; 7790 | } 7791 | 7792 | .mdi-visualstudio:before { 7793 | content: "\F610"; 7794 | } 7795 | 7796 | .mdi-vk:before { 7797 | content: "\F579"; 7798 | } 7799 | 7800 | .mdi-vk-box:before { 7801 | content: "\F57A"; 7802 | } 7803 | 7804 | .mdi-vk-circle:before { 7805 | content: "\F57B"; 7806 | } 7807 | 7808 | .mdi-vlc:before { 7809 | content: "\F57C"; 7810 | } 7811 | 7812 | .mdi-voice:before { 7813 | content: "\F5CB"; 7814 | } 7815 | 7816 | .mdi-voicemail:before { 7817 | content: "\F57D"; 7818 | } 7819 | 7820 | .mdi-volume-high:before { 7821 | content: "\F57E"; 7822 | } 7823 | 7824 | .mdi-volume-low:before { 7825 | content: "\F57F"; 7826 | } 7827 | 7828 | .mdi-volume-medium:before { 7829 | content: "\F580"; 7830 | } 7831 | 7832 | .mdi-volume-minus:before { 7833 | content: "\F75D"; 7834 | } 7835 | 7836 | .mdi-volume-mute:before { 7837 | content: "\F75E"; 7838 | } 7839 | 7840 | .mdi-volume-off:before { 7841 | content: "\F581"; 7842 | } 7843 | 7844 | .mdi-volume-plus:before { 7845 | content: "\F75C"; 7846 | } 7847 | 7848 | .mdi-vpn:before { 7849 | content: "\F582"; 7850 | } 7851 | 7852 | .mdi-walk:before { 7853 | content: "\F583"; 7854 | } 7855 | 7856 | .mdi-wall:before { 7857 | content: "\F7FD"; 7858 | } 7859 | 7860 | .mdi-wallet:before { 7861 | content: "\F584"; 7862 | } 7863 | 7864 | .mdi-wallet-giftcard:before { 7865 | content: "\F585"; 7866 | } 7867 | 7868 | .mdi-wallet-membership:before { 7869 | content: "\F586"; 7870 | } 7871 | 7872 | .mdi-wallet-travel:before { 7873 | content: "\F587"; 7874 | } 7875 | 7876 | .mdi-wan:before { 7877 | content: "\F588"; 7878 | } 7879 | 7880 | .mdi-washing-machine:before { 7881 | content: "\F729"; 7882 | } 7883 | 7884 | .mdi-watch:before { 7885 | content: "\F589"; 7886 | } 7887 | 7888 | .mdi-watch-export:before { 7889 | content: "\F58A"; 7890 | } 7891 | 7892 | .mdi-watch-import:before { 7893 | content: "\F58B"; 7894 | } 7895 | 7896 | .mdi-watch-vibrate:before { 7897 | content: "\F6B0"; 7898 | } 7899 | 7900 | .mdi-water:before { 7901 | content: "\F58C"; 7902 | } 7903 | 7904 | .mdi-water-off:before { 7905 | content: "\F58D"; 7906 | } 7907 | 7908 | .mdi-water-percent:before { 7909 | content: "\F58E"; 7910 | } 7911 | 7912 | .mdi-water-pump:before { 7913 | content: "\F58F"; 7914 | } 7915 | 7916 | .mdi-watermark:before { 7917 | content: "\F612"; 7918 | } 7919 | 7920 | .mdi-waves:before { 7921 | content: "\F78C"; 7922 | } 7923 | 7924 | .mdi-weather-cloudy:before { 7925 | content: "\F590"; 7926 | } 7927 | 7928 | .mdi-weather-fog:before { 7929 | content: "\F591"; 7930 | } 7931 | 7932 | .mdi-weather-hail:before { 7933 | content: "\F592"; 7934 | } 7935 | 7936 | .mdi-weather-lightning:before { 7937 | content: "\F593"; 7938 | } 7939 | 7940 | .mdi-weather-lightning-rainy:before { 7941 | content: "\F67D"; 7942 | } 7943 | 7944 | .mdi-weather-night:before { 7945 | content: "\F594"; 7946 | } 7947 | 7948 | .mdi-weather-partlycloudy:before { 7949 | content: "\F595"; 7950 | } 7951 | 7952 | .mdi-weather-pouring:before { 7953 | content: "\F596"; 7954 | } 7955 | 7956 | .mdi-weather-rainy:before { 7957 | content: "\F597"; 7958 | } 7959 | 7960 | .mdi-weather-snowy:before { 7961 | content: "\F598"; 7962 | } 7963 | 7964 | .mdi-weather-snowy-rainy:before { 7965 | content: "\F67E"; 7966 | } 7967 | 7968 | .mdi-weather-sunny:before { 7969 | content: "\F599"; 7970 | } 7971 | 7972 | .mdi-weather-sunset:before { 7973 | content: "\F59A"; 7974 | } 7975 | 7976 | .mdi-weather-sunset-down:before { 7977 | content: "\F59B"; 7978 | } 7979 | 7980 | .mdi-weather-sunset-up:before { 7981 | content: "\F59C"; 7982 | } 7983 | 7984 | .mdi-weather-windy:before { 7985 | content: "\F59D"; 7986 | } 7987 | 7988 | .mdi-weather-windy-variant:before { 7989 | content: "\F59E"; 7990 | } 7991 | 7992 | .mdi-web:before { 7993 | content: "\F59F"; 7994 | } 7995 | 7996 | .mdi-webcam:before { 7997 | content: "\F5A0"; 7998 | } 7999 | 8000 | .mdi-webhook:before { 8001 | content: "\F62F"; 8002 | } 8003 | 8004 | .mdi-webpack:before { 8005 | content: "\F72A"; 8006 | } 8007 | 8008 | .mdi-wechat:before { 8009 | content: "\F611"; 8010 | } 8011 | 8012 | .mdi-weight:before { 8013 | content: "\F5A1"; 8014 | } 8015 | 8016 | .mdi-weight-kilogram:before { 8017 | content: "\F5A2"; 8018 | } 8019 | 8020 | .mdi-whatsapp:before { 8021 | content: "\F5A3"; 8022 | } 8023 | 8024 | .mdi-wheelchair-accessibility:before { 8025 | content: "\F5A4"; 8026 | } 8027 | 8028 | .mdi-white-balance-auto:before { 8029 | content: "\F5A5"; 8030 | } 8031 | 8032 | .mdi-white-balance-incandescent:before { 8033 | content: "\F5A6"; 8034 | } 8035 | 8036 | .mdi-white-balance-iridescent:before { 8037 | content: "\F5A7"; 8038 | } 8039 | 8040 | .mdi-white-balance-sunny:before { 8041 | content: "\F5A8"; 8042 | } 8043 | 8044 | .mdi-widgets:before { 8045 | content: "\F72B"; 8046 | } 8047 | 8048 | .mdi-wifi:before { 8049 | content: "\F5A9"; 8050 | } 8051 | 8052 | .mdi-wifi-off:before { 8053 | content: "\F5AA"; 8054 | } 8055 | 8056 | .mdi-wii:before { 8057 | content: "\F5AB"; 8058 | } 8059 | 8060 | .mdi-wiiu:before { 8061 | content: "\F72C"; 8062 | } 8063 | 8064 | .mdi-wikipedia:before { 8065 | content: "\F5AC"; 8066 | } 8067 | 8068 | .mdi-window-close:before { 8069 | content: "\F5AD"; 8070 | } 8071 | 8072 | .mdi-window-closed:before { 8073 | content: "\F5AE"; 8074 | } 8075 | 8076 | .mdi-window-maximize:before { 8077 | content: "\F5AF"; 8078 | } 8079 | 8080 | .mdi-window-minimize:before { 8081 | content: "\F5B0"; 8082 | } 8083 | 8084 | .mdi-window-open:before { 8085 | content: "\F5B1"; 8086 | } 8087 | 8088 | .mdi-window-restore:before { 8089 | content: "\F5B2"; 8090 | } 8091 | 8092 | .mdi-windows:before { 8093 | content: "\F5B3"; 8094 | } 8095 | 8096 | .mdi-wordpress:before { 8097 | content: "\F5B4"; 8098 | } 8099 | 8100 | .mdi-worker:before { 8101 | content: "\F5B5"; 8102 | } 8103 | 8104 | .mdi-wrap:before { 8105 | content: "\F5B6"; 8106 | } 8107 | 8108 | .mdi-wrench:before { 8109 | content: "\F5B7"; 8110 | } 8111 | 8112 | .mdi-wunderlist:before { 8113 | content: "\F5B8"; 8114 | } 8115 | 8116 | .mdi-xaml:before { 8117 | content: "\F673"; 8118 | } 8119 | 8120 | .mdi-xbox:before { 8121 | content: "\F5B9"; 8122 | } 8123 | 8124 | .mdi-xbox-controller:before { 8125 | content: "\F5BA"; 8126 | } 8127 | 8128 | .mdi-xbox-controller-battery-alert:before { 8129 | content: "\F74A"; 8130 | } 8131 | 8132 | .mdi-xbox-controller-battery-empty:before { 8133 | content: "\F74B"; 8134 | } 8135 | 8136 | .mdi-xbox-controller-battery-full:before { 8137 | content: "\F74C"; 8138 | } 8139 | 8140 | .mdi-xbox-controller-battery-low:before { 8141 | content: "\F74D"; 8142 | } 8143 | 8144 | .mdi-xbox-controller-battery-medium:before { 8145 | content: "\F74E"; 8146 | } 8147 | 8148 | .mdi-xbox-controller-battery-unknown:before { 8149 | content: "\F74F"; 8150 | } 8151 | 8152 | .mdi-xbox-controller-off:before { 8153 | content: "\F5BB"; 8154 | } 8155 | 8156 | .mdi-xda:before { 8157 | content: "\F5BC"; 8158 | } 8159 | 8160 | .mdi-xing:before { 8161 | content: "\F5BD"; 8162 | } 8163 | 8164 | .mdi-xing-box:before { 8165 | content: "\F5BE"; 8166 | } 8167 | 8168 | .mdi-xing-circle:before { 8169 | content: "\F5BF"; 8170 | } 8171 | 8172 | .mdi-xml:before { 8173 | content: "\F5C0"; 8174 | } 8175 | 8176 | .mdi-xmpp:before { 8177 | content: "\F7FE"; 8178 | } 8179 | 8180 | .mdi-yammer:before { 8181 | content: "\F788"; 8182 | } 8183 | 8184 | .mdi-yeast:before { 8185 | content: "\F5C1"; 8186 | } 8187 | 8188 | .mdi-yelp:before { 8189 | content: "\F5C2"; 8190 | } 8191 | 8192 | .mdi-yin-yang:before { 8193 | content: "\F67F"; 8194 | } 8195 | 8196 | .mdi-youtube-play:before { 8197 | content: "\F5C3"; 8198 | } 8199 | 8200 | .mdi-zip-box:before { 8201 | content: "\F5C4"; 8202 | } 8203 | 8204 | .mdi-blank:before { 8205 | content: "\F68C"; 8206 | visibility: hidden; 8207 | } 8208 | 8209 | .mdi-18px.mdi-set, .mdi-18px.mdi:before { 8210 | font-size: 18px; 8211 | } 8212 | 8213 | .mdi-24px.mdi-set, .mdi-24px.mdi:before { 8214 | font-size: 24px; 8215 | } 8216 | 8217 | .mdi-36px.mdi-set, .mdi-36px.mdi:before { 8218 | font-size: 36px; 8219 | } 8220 | 8221 | .mdi-48px.mdi-set, .mdi-48px.mdi:before { 8222 | font-size: 48px; 8223 | } 8224 | 8225 | .mdi-dark:before { 8226 | color: rgba(0, 0, 0, 0.54); 8227 | } 8228 | .mdi-dark.mdi-inactive:before { 8229 | color: rgba(0, 0, 0, 0.26); 8230 | } 8231 | 8232 | .mdi-light:before { 8233 | color: white; 8234 | } 8235 | .mdi-light.mdi-inactive:before { 8236 | color: rgba(255, 255, 255, 0.3); 8237 | } 8238 | 8239 | .mdi-rotate-45 { 8240 | /* 8241 | // Not included in production 8242 | &.mdi-flip-h:before { 8243 | -webkit-transform: scaleX(-1) rotate(45deg); 8244 | transform: scaleX(-1) rotate(45deg); 8245 | filter: FlipH; 8246 | -ms-filter: "FlipH"; 8247 | } 8248 | &.mdi-flip-v:before { 8249 | -webkit-transform: scaleY(-1) rotate(45deg); 8250 | -ms-transform: rotate(45deg); 8251 | transform: scaleY(-1) rotate(45deg); 8252 | filter: FlipV; 8253 | -ms-filter: "FlipV"; 8254 | } 8255 | */ 8256 | } 8257 | .mdi-rotate-45:before { 8258 | -webkit-transform: rotate(45deg); 8259 | -ms-transform: rotate(45deg); 8260 | transform: rotate(45deg); 8261 | } 8262 | 8263 | .mdi-rotate-90 { 8264 | /* 8265 | // Not included in production 8266 | &.mdi-flip-h:before { 8267 | -webkit-transform: scaleX(-1) rotate(90deg); 8268 | transform: scaleX(-1) rotate(90deg); 8269 | filter: FlipH; 8270 | -ms-filter: "FlipH"; 8271 | } 8272 | &.mdi-flip-v:before { 8273 | -webkit-transform: scaleY(-1) rotate(90deg); 8274 | -ms-transform: rotate(90deg); 8275 | transform: scaleY(-1) rotate(90deg); 8276 | filter: FlipV; 8277 | -ms-filter: "FlipV"; 8278 | } 8279 | */ 8280 | } 8281 | .mdi-rotate-90:before { 8282 | -webkit-transform: rotate(90deg); 8283 | -ms-transform: rotate(90deg); 8284 | transform: rotate(90deg); 8285 | } 8286 | 8287 | .mdi-rotate-135 { 8288 | /* 8289 | // Not included in production 8290 | &.mdi-flip-h:before { 8291 | -webkit-transform: scaleX(-1) rotate(135deg); 8292 | transform: scaleX(-1) rotate(135deg); 8293 | filter: FlipH; 8294 | -ms-filter: "FlipH"; 8295 | } 8296 | &.mdi-flip-v:before { 8297 | -webkit-transform: scaleY(-1) rotate(135deg); 8298 | -ms-transform: rotate(135deg); 8299 | transform: scaleY(-1) rotate(135deg); 8300 | filter: FlipV; 8301 | -ms-filter: "FlipV"; 8302 | } 8303 | */ 8304 | } 8305 | .mdi-rotate-135:before { 8306 | -webkit-transform: rotate(135deg); 8307 | -ms-transform: rotate(135deg); 8308 | transform: rotate(135deg); 8309 | } 8310 | 8311 | .mdi-rotate-180 { 8312 | /* 8313 | // Not included in production 8314 | &.mdi-flip-h:before { 8315 | -webkit-transform: scaleX(-1) rotate(180deg); 8316 | transform: scaleX(-1) rotate(180deg); 8317 | filter: FlipH; 8318 | -ms-filter: "FlipH"; 8319 | } 8320 | &.mdi-flip-v:before { 8321 | -webkit-transform: scaleY(-1) rotate(180deg); 8322 | -ms-transform: rotate(180deg); 8323 | transform: scaleY(-1) rotate(180deg); 8324 | filter: FlipV; 8325 | -ms-filter: "FlipV"; 8326 | } 8327 | */ 8328 | } 8329 | .mdi-rotate-180:before { 8330 | -webkit-transform: rotate(180deg); 8331 | -ms-transform: rotate(180deg); 8332 | transform: rotate(180deg); 8333 | } 8334 | 8335 | .mdi-rotate-225 { 8336 | /* 8337 | // Not included in production 8338 | &.mdi-flip-h:before { 8339 | -webkit-transform: scaleX(-1) rotate(225deg); 8340 | transform: scaleX(-1) rotate(225deg); 8341 | filter: FlipH; 8342 | -ms-filter: "FlipH"; 8343 | } 8344 | &.mdi-flip-v:before { 8345 | -webkit-transform: scaleY(-1) rotate(225deg); 8346 | -ms-transform: rotate(225deg); 8347 | transform: scaleY(-1) rotate(225deg); 8348 | filter: FlipV; 8349 | -ms-filter: "FlipV"; 8350 | } 8351 | */ 8352 | } 8353 | .mdi-rotate-225:before { 8354 | -webkit-transform: rotate(225deg); 8355 | -ms-transform: rotate(225deg); 8356 | transform: rotate(225deg); 8357 | } 8358 | 8359 | .mdi-rotate-270 { 8360 | /* 8361 | // Not included in production 8362 | &.mdi-flip-h:before { 8363 | -webkit-transform: scaleX(-1) rotate(270deg); 8364 | transform: scaleX(-1) rotate(270deg); 8365 | filter: FlipH; 8366 | -ms-filter: "FlipH"; 8367 | } 8368 | &.mdi-flip-v:before { 8369 | -webkit-transform: scaleY(-1) rotate(270deg); 8370 | -ms-transform: rotate(270deg); 8371 | transform: scaleY(-1) rotate(270deg); 8372 | filter: FlipV; 8373 | -ms-filter: "FlipV"; 8374 | } 8375 | */ 8376 | } 8377 | .mdi-rotate-270:before { 8378 | -webkit-transform: rotate(270deg); 8379 | -ms-transform: rotate(270deg); 8380 | transform: rotate(270deg); 8381 | } 8382 | 8383 | .mdi-rotate-315 { 8384 | /* 8385 | // Not included in production 8386 | &.mdi-flip-h:before { 8387 | -webkit-transform: scaleX(-1) rotate(315deg); 8388 | transform: scaleX(-1) rotate(315deg); 8389 | filter: FlipH; 8390 | -ms-filter: "FlipH"; 8391 | } 8392 | &.mdi-flip-v:before { 8393 | -webkit-transform: scaleY(-1) rotate(315deg); 8394 | -ms-transform: rotate(315deg); 8395 | transform: scaleY(-1) rotate(315deg); 8396 | filter: FlipV; 8397 | -ms-filter: "FlipV"; 8398 | } 8399 | */ 8400 | } 8401 | .mdi-rotate-315:before { 8402 | -webkit-transform: rotate(315deg); 8403 | -ms-transform: rotate(315deg); 8404 | transform: rotate(315deg); 8405 | } 8406 | 8407 | .mdi-flip-h:before { 8408 | -webkit-transform: scaleX(-1); 8409 | transform: scaleX(-1); 8410 | filter: FlipH; 8411 | -ms-filter: "FlipH"; 8412 | } 8413 | 8414 | .mdi-flip-v:before { 8415 | -webkit-transform: scaleY(-1); 8416 | transform: scaleY(-1); 8417 | filter: FlipV; 8418 | -ms-filter: "FlipV"; 8419 | } 8420 | 8421 | .mdi-spin:before { 8422 | -webkit-animation: mdi-spin 2s infinite linear; 8423 | animation: mdi-spin 2s infinite linear; 8424 | } 8425 | 8426 | @-webkit-keyframes mdi-spin { 8427 | 0% { 8428 | -webkit-transform: rotate(0deg); 8429 | transform: rotate(0deg); 8430 | } 8431 | 100% { 8432 | -webkit-transform: rotate(359deg); 8433 | transform: rotate(359deg); 8434 | } 8435 | } 8436 | @keyframes mdi-spin { 8437 | 0% { 8438 | -webkit-transform: rotate(0deg); 8439 | transform: rotate(0deg); 8440 | } 8441 | 100% { 8442 | -webkit-transform: rotate(359deg); 8443 | transform: rotate(359deg); 8444 | } 8445 | } 8446 | 8447 | /*# sourceMappingURL=materialdesignicons.css.map */ 8448 | --------------------------------------------------------------------------------