├── .gitignore ├── src ├── .DS_Store ├── img │ ├── me5.png │ ├── demo.png │ ├── demo2.png │ ├── demo3.png │ ├── project.png │ ├── showcase.png │ ├── terminal.png │ ├── background.jpg │ ├── schoollogo1.png │ ├── schoollogo2.png │ ├── schoollogo3.png │ ├── patere-removebg-preview.png │ └── iislogo-removebg-preview.png ├── customization │ ├── Contact.json │ ├── Award.json │ ├── Introduction.json │ ├── Education.json │ ├── Experience.json │ ├── Project.json │ └── Publication.json ├── webfonts │ ├── fa-brands-400.eot │ ├── fa-brands-400.ttf │ ├── fa-solid-900.eot │ ├── fa-solid-900.ttf │ ├── fa-solid-900.woff │ ├── fa-brands-400.woff │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.eot │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff │ ├── fa-regular-400.woff2 │ └── fa-solid-900.woff2 ├── setupTests.js ├── App.test.js ├── reportWebVitals.js ├── award.js ├── index.js ├── exp.js ├── pub.js ├── pro.js ├── intro.js ├── tool.js ├── App.js ├── container.js └── styles │ ├── main.css │ └── fa-all.css ├── public ├── favicon.ico └── index.html ├── LEARN.md ├── LICENSE ├── package.json └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/img/me5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/me5.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /src/img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/demo.png -------------------------------------------------------------------------------- /src/img/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/demo2.png -------------------------------------------------------------------------------- /src/img/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/demo3.png -------------------------------------------------------------------------------- /src/img/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/project.png -------------------------------------------------------------------------------- /src/img/showcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/showcase.png -------------------------------------------------------------------------------- /src/img/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/terminal.png -------------------------------------------------------------------------------- /src/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/background.jpg -------------------------------------------------------------------------------- /src/img/schoollogo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/schoollogo1.png -------------------------------------------------------------------------------- /src/img/schoollogo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/schoollogo2.png -------------------------------------------------------------------------------- /src/img/schoollogo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/schoollogo3.png -------------------------------------------------------------------------------- /src/customization/Contact.json: -------------------------------------------------------------------------------- 1 | { 2 | "email": "your-email@gmail.com", 3 | "phone": "+886 0000666888" 4 | } -------------------------------------------------------------------------------- /src/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /src/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /src/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /src/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /src/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /src/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /src/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /src/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /src/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /src/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /src/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /src/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /src/img/patere-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/patere-removebg-preview.png -------------------------------------------------------------------------------- /src/img/iislogo-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chi-0828/profile-site/HEAD/src/img/iislogo-removebg-preview.png -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- 1 | # Leran How to build a termnial-style webpage 2 | Tools: 3 | - ascii art generator 4 | - [icon UNICODE] (https://www.toptal.com/designers/htmlarrows/symbols/) 5 | - html 6 | - css (vary with screen size) 7 | - javascript 8 | - React 9 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- 1 | import { render, screen } from '@testing-library/react'; 2 | import App from './App'; 3 | 4 | test('renders learn react link', () => { 5 | render(); 6 | const linkElement = screen.getByText(/learn react/i); 7 | expect(linkElement).toBeInTheDocument(); 8 | }); 9 | -------------------------------------------------------------------------------- /src/customization/Award.json: -------------------------------------------------------------------------------- 1 | { 2 | "awards" : [ 3 | { 4 | "entry" : "2023, NSTC - Travel Grants for graduate students to attend international conference" 5 | }, 6 | { 7 | "entry" : "2020, CCU - Presidential Honor Award in recognition of extraordinary academic achievement in the 2nd semester of Academic Year 2019-2020" 8 | } 9 | ] 10 | } -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /src/award.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Awdraw from "./customization/Award.json"; 3 | import "./styles/main.css"; 4 | 5 | export function Awd() { 6 | const result = []; 7 | Awdraw.awards.map((award) => { 8 | result.push( 9 |

{award.entry}

10 | ); 11 | }); 12 | 13 | return ( 14 |
15 | {result} 16 |
17 | ); 18 | } 19 | 20 | export default Awd; -------------------------------------------------------------------------------- /src/customization/Introduction.json: -------------------------------------------------------------------------------- 1 | { 2 | "intro" : "profile-site is a Reactjs project that builds a terminal style website for yourself. (you can put your introduction here) I am currently a M.S. student at ...., and ... . After the introduction, you have to replace the icon link to your social accounts.", 3 | "github" : "https://github.com/chi-0828", 4 | "googlescholar" : "https://scholar.google.com.tw/citations?user=SoyMWUsAAAAJ", 5 | "linkedin" : "https://www.linkedin.com/in/liang-chi-chen-882a531b9", 6 | "orcid" : "https://orcid.org/0000-0003-2579-4305" 7 | } -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import ReactDOM from 'react-dom/client'; 3 | import './styles/main.css'; 4 | import './styles/fa-all.css'; 5 | import Container from './container'; 6 | import reportWebVitals from './reportWebVitals'; 7 | 8 | const root = ReactDOM.createRoot(document.getElementById('root')); 9 | root.render( 10 | 11 | 12 | 13 | ); 14 | 15 | // If you want to start measuring performance in your app, pass a function 16 | // to log results (for example: reportWebVitals(console.log)) 17 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals 18 | reportWebVitals(); 19 | -------------------------------------------------------------------------------- /src/customization/Education.json: -------------------------------------------------------------------------------- 1 | { 2 | "schools" : [{ 3 | "logo" : "./img/schoollogo1.png", 4 | "name" : "???? University", 5 | "degree" : "PhD, Computer Science and Information Engineering", 6 | "time" : "??? - ???" 7 | },{ 8 | "logo" : "./img/schoollogo2.png", 9 | "name" : "National Cheng Kung University (NCKU)", 10 | "degree" : "MS, Computer Science and Information Engineering", 11 | "time" : "Sept. 2022 - present" 12 | },{ 13 | "logo" : "./img/schoollogo3.png", 14 | "name" : "National Chung Cheng University (CCU)", 15 | "degree" : "BS, Computer Science and Information Engineering", 16 | "time" : "Sept. 2018 - jun. 2022" 17 | } 18 | ] 19 | } -------------------------------------------------------------------------------- /src/customization/Experience.json: -------------------------------------------------------------------------------- 1 | { 2 | "companies" : [ 3 | { 4 | "logo" : "./img/iislogo-removebg-preview.png", 5 | "name" : "Institute of XXXXXX, OOOOOOO OOOO", 6 | "position_time" : "Research Intern, Summer, 2022", 7 | "discription" : "rocessing in/near memory system project, e.g., realizing genome sequencing on a processing-in-memory system" 8 | }, 9 | { 10 | "logo" : "./img/patere-removebg-preview.png", 11 | "name" : "XXXX Co.", 12 | "position_time" : "Software Engineering Intern, Aug. 2021 - Jun. 2022", 13 | "discription" : "Computer vision and deep learning project, e.g., implementing an object detection application for patient assistance" 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /src/customization/Project.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects" : [ 3 | { 4 | "project_img" : "./img/demo.png", 5 | "project_name" : "profile-site", 6 | "project_about" : "profile-site is a personal website template, which is made in macos terminal style; the project is built by React", 7 | "project_tool" : "React, Node, CSS, HTML", 8 | "project_link" : "https://github.com/chi-0828/profile-site" 9 | }, 10 | { 11 | "project_img" : "./img/project.png", 12 | "project_name" : "the project name", 13 | "project_about" : "the discription of the project", 14 | "project_tool" : "all tools used in the project", 15 | "project_link" : "link to the project, GitHub or others" 16 | } 17 | ] 18 | } -------------------------------------------------------------------------------- /src/exp.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Expraw from "./customization/Experience.json"; 3 | import "./styles/main.css"; 4 | 5 | export function Exp() { 6 | const result = []; 7 | Expraw.companies.map((company) => { 8 | result.push( 9 |
10 | 11 | {"company"} 12 | 13 | 14 |

{company.name}

15 |

{company.position_time}

16 |

{company.discription}

17 |
18 |
19 | ); 20 | }); 21 | 22 | return ( 23 | result 24 | ); 25 | } 26 | 27 | export default Exp; -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Liang-Chi Chen 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 all 13 | 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 THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "profile-site", 3 | "version": "0.1.0", 4 | "homepage": "https://chi-0828.github.io/profile-site", 5 | "private": true, 6 | "dependencies": { 7 | "@testing-library/jest-dom": "^5.16.5", 8 | "@testing-library/react": "^13.4.0", 9 | "@testing-library/user-event": "^13.5.0", 10 | "gh-pages": "^3.0.0", 11 | "react": "^18.2.0", 12 | "react-dom": "^18.2.0", 13 | "react-scripts": "^5.0.1", 14 | "web-vitals": "^2.1.4" 15 | }, 16 | "scripts": { 17 | "predeploy": "npm run build", 18 | "deploy": "gh-pages -d build", 19 | "start": "react-scripts start", 20 | "build": "react-scripts build", 21 | "test": "react-scripts test", 22 | "eject": "react-scripts eject" 23 | }, 24 | "eslintConfig": { 25 | "extends": [ 26 | "react-app", 27 | "react-app/jest" 28 | ] 29 | }, 30 | "browserslist": { 31 | "production": [ 32 | ">0.2%", 33 | "not dead", 34 | "not op_mini all" 35 | ], 36 | "development": [ 37 | "last 1 chrome version", 38 | "last 1 firefox version", 39 | "last 1 safari version" 40 | ] 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/customization/Publication.json: -------------------------------------------------------------------------------- 1 | { 2 | "journal" : [{ 3 | "title" : "LongPhase: an ultra-fast chromosome-scale phasing algorithm for small and large variants", 4 | "author" : "Jyun-Hong Lin, Liang-Chi Chen, Shu-Qi Yu, Yao-Ting Huang", 5 | "organization" : "Bioinformatics, Volume 38, Issue 7, March 2022, Pages 1816-1822", 6 | "link" : "https://doi.org/10.1093/bioinformatics/btac058" 7 | }], 8 | "conference" : [{ 9 | "title" : "Efficient Sanitization Design for LSM-based Key-Value Store over 3D MLC NAND Flash", 10 | "author" : "Liang-Chi Chen, Shu-Qi Yu, Chien-Chung Ho, Wei-Chen Wang, Yung-Chun Li", 11 | "organization" : "The 38th ACM/SIGAPP Symposium on Applied Computing (SAC), March 27-31, 2023", 12 | "link" : "https://dl.acm.org/doi/10.1145/3555776.3577780" 13 | },{ 14 | "title" : "Efficient Sanitization Design for LSM-based Key-Value Store over 3D MLC NAND Flash", 15 | "author" : "Liang-Chi Chen, Shu-Qi Yu, Chien-Chung Ho, Wei-Chen Wang, Yung-Chun Li", 16 | "organization" : "The 38th ACM/SIGAPP Symposium on Applied Computing (SAC), March 27-31, 2023", 17 | "link" : "https://dl.acm.org/doi/10.1145/3555776.3577780" 18 | }] 19 | } -------------------------------------------------------------------------------- /src/pub.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Pubraw from "./customization/Publication.json"; 3 | import "./styles/main.css"; 4 | 5 | 6 | export function Pub() { 7 | const journal = []; 8 | Pubraw.journal.map((paper) => { 9 | journal.push( 10 |
  • 11 | {paper.title}
    12 | {paper.author}
    13 | {paper.organization}
    14 | [Paper] 15 |
  • 16 | ); 17 | }); 18 | const conference = []; 19 | Pubraw.conference.map((paper) => { 20 | conference.push( 21 |
  • 22 | {paper.title}
    23 | {paper.author}
    24 | {paper.organization}
    25 | [Paper] 26 |
  • 27 | ); 28 | }); 29 | return ( 30 | 31 |
    32 |

    Journal papers

    33 | 36 |

    Conference papers

    37 | 40 | 41 |
    42 | ); 43 | } 44 | 45 | export default Pub; -------------------------------------------------------------------------------- /src/pro.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Proraw from "./customization/Project.json"; 3 | import "./styles/main.css"; 4 | 5 | 6 | export function Pro() { 7 | const result = []; 8 | Proraw.projects.map((project) => { 9 | result.push( 10 |
    11 | {"project"} 12 |
    13 |
    14 | {project.project_name} 15 |
    16 |
    17 | {project.project_about} 18 |
    19 |
    20 | Tools: {project.project_tool} 21 | 22 |
    23 |
    24 |
    25 | ); 26 | result.push(

    ) 27 | }); 28 | return ( 29 |
    30 | {result} 31 |
    32 | 33 | ); 34 | } 35 | 36 | export default Pro; -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | User 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /src/intro.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import head from "./img/me5.png"; 3 | import "./styles/main.css"; 4 | import Introraw from './customization/Introduction.json' 5 | import Eduraw from './customization/Education.json' 6 | 7 | 8 | export function Read_Intro() { 9 | return ( 10 | 11 | {Introraw.intro} 12 |

    13 | 14 | 15 | 16 | 17 |

    18 |
    19 | ); 20 | } 21 | 22 | export function Intro() { 23 | return ( 24 |
    25 | 26 | 27 | 28 | 29 |
    30 | ); 31 | } 32 | 33 | export function Edu() { 34 | const result = []; 35 | Eduraw.schools.map((school) => { 36 | result.push( 37 |
    38 | 39 | {"school"} 40 | 41 | 42 |

    {school.name}

    43 |

    {school.degree}

    44 |

    {school.time}

    45 |
    46 |
    47 | ); 48 | }); 49 | 50 | return ( 51 | result 52 | ); 53 | } -------------------------------------------------------------------------------- /src/tool.js: -------------------------------------------------------------------------------- 1 | import Contactraw from "./customization/Contact.json"; 2 | 3 | export function Path(props) { 4 | return ( 5 |

    6 |     7 |    {props.path}   8 |

    9 | ); 10 | } 11 | 12 | export function Code(props) { 13 | return ( 14 |

    15 |  > {props.command}
    16 |

    17 | ); 18 | } 19 | 20 | 21 | 22 | export function ASCII() { 23 | return ( 24 |
    25 |             

    26 | 27 | {` 28 | _______ ______ _______ _______ ___ ___ _______ _______ ___ _______ _______ 29 | | || _ | | || || || | | | | || || || | 30 | | _ || | || | _ || ___|| || | | ___|____ | _____|| ||_ _|| ___| 31 | | |_| || |_||_ | | | || |___ | || | | |___|____|| |_____ | | | | | |___ 32 | | ___|| __ || |_| || ___|| || |___ | ___| |_____ || | | | | ___| 33 | | | | | | || || | | || || |___ _____| || | | | | |___ 34 | |___| |___| |_||_______||___| |___||_______||_______| |_______||___| |___| |_______| 35 | 36 | `} 37 |

    38 |
    39 | ); 40 | } 41 | 42 | export function Contact() { 43 | return ( 44 |
    45 |

    Email: {Contactraw.email}

    46 |

    Phone: {Contactraw.phone}

    47 |
    48 | ); 49 | } 50 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import {Intro, Edu} from "./intro"; 3 | import Pub from "./pub"; 4 | import Exp from "./exp"; 5 | import Awd from "./award"; 6 | import Pro from "./pro"; 7 | import { ASCII } from "./tool"; 8 | import {Path, Code, Contact} from "./tool"; 9 | import "./styles/main.css"; 10 | 11 | const paths = ['~\Home', '~\Project', '~\Publication', '~\Experience', '~\Award', '~\Project']; 12 | 13 | function Intro_content(p) { 14 | return ( 15 |
    16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 |
    27 | ); 28 | } 29 | 30 | function Pro_content(p) { 31 | return ( 32 |
    33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 |
    41 | ); 42 | } 43 | 44 | function Pub_content(p) { 45 | return ( 46 |
    47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 |
    55 | ); 56 | } 57 | 58 | function Exp_content(p) { 59 | return ( 60 |
    61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 |
    69 | ); 70 | } 71 | 72 | function Awd_content(p) { 73 | return ( 74 |
    75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 |
    83 | ); 84 | } 85 | 86 | function App(props) { 87 | if (props.index == 1) { 88 | return ; 89 | } 90 | else if (props.index == 2) { 91 | return ; 92 | } 93 | else if (props.index == 3) { 94 | return ; 95 | } 96 | else if (props.index == 4) { 97 | return ; 98 | } 99 | else if (props.index == 5) { 100 | return ; 101 | } 102 | // TODO : Project 103 | else if (props.index == 6) { 104 | return ; 105 | } 106 | } 107 | 108 | export default App; -------------------------------------------------------------------------------- /src/container.js: -------------------------------------------------------------------------------- 1 | import App from "./App"; 2 | import "./styles/main.css"; 3 | import React, { Component } from 'react'; 4 | 5 | function Menu() { 6 | return ( 7 | 29 | ); 30 | } 31 | 32 | class Container extends Component { 33 | constructor() { 34 | super(); 35 | this.state = {Index: 1}; 36 | let value = localStorage.getItem('index'); 37 | this.state.Index = (value == null) ? 1 : value; 38 | } 39 | 40 | goPage(index) { 41 | this.setState((state) => { 42 | localStorage.setItem('index', index); 43 | return {Index: index} 44 | }); 45 | } 46 | 47 | 48 | render() { 49 | return ( 50 |
    51 | 52 | 86 | 87 |
    88 | ); 89 | } 90 | } 91 | 92 | 93 | export default Container; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # profile-site 2 | ![image](src/img/showcase.png) 3 | [![GitHub repository](https://img.shields.io/badge/GitHub-chi--0828%2Fprofile--site-blue.svg)](https://github.com/chi-0828/profile-site) 4 | ![GitHub top language](https://img.shields.io/github/languages/top/chi-0828/profile-site?color=blue&logo=Ionic&logoColor=white) 5 | ![GitHub stars](https://img.shields.io/github/stars/chi-0828/profile-site?color=success&logo=github) 6 | ![GitHub commit activity (branch)](https://img.shields.io/github/commit-activity/w/chi-0828/profile-site) 7 | ![GitHub last commit (by committer)](https://img.shields.io/github/last-commit/chi-0828/profile-site) 8 | [![MIT License](https://img.shields.io/npm/l/express.svg?maxAge=2592000)](LICENSE) 9 |
    10 | [![npm version](https://img.shields.io/badge/npm-9.5.1-yellow)](https://docs.npmjs.com/) 11 | [![node version](https://img.shields.io/badge/node-18.16.1-yellow)](https://nodejs.org/en) 12 |
    13 | profile-site is a template of MacOS terminal-style personal profile website 14 | 15 | - star :star: this project if you enjoy this template 16 | 17 | ## [Update log](#update) 18 | ## [Try it out](#usage) 19 | 20 | ## Demo 21 | > #### Demo website link 22 | > [see the demo website](https://chi-0828.github.io/profile-site/) 23 | 24 | ## Demo screenshot 25 | #### Some demo images 26 | ASCII art can be generated on an online tool, e.g., [patorjk](https://patorjk.com/software/taag/#p=display&f=Graffiti&t=Type%20Something%20) 27 | ![image](src/img/demo.png) 28 | ![image](src/img/demo2.png) 29 | 30 | ## Usage 31 | download the source 32 | ``` shell 33 | git clone https://github.com/chi-0828/profile-site.git 34 | ``` 35 | run npm 36 | ``` shell 37 | cd profile-site 38 | npm install 39 | npm run start 40 | ``` 41 | customize your website
    42 | modify the title of `public/index.html`, change `User` to your name 43 | ``` html 44 | 45 | 46 | 47 | User 48 | 49 | 50 | 51 | ``` 52 | `src/img/me5.png` is your personal image, `src/customization/*.json` is your personal information 53 | ``` shell 54 | cd src/customization 55 | # change the introduction in *.json to your own information 56 | # change the images in img/* to your own photo and your school/company logo 57 | ``` 58 | example-1: customize `Experience.json` 59 | ``` json 60 | { 61 | "companies" : [ 62 | { 63 | "logo" : "path related to src", 64 | "name" : "your company name", 65 | "position_time" : "your job title, when", 66 | "description" : "what you do" 67 | }, 68 | { 69 | "logo" : "./img/patere-removebg-preview.png", 70 | "name" : "XXXX Co.", 71 | "position_time" : "Software Engineering Intern, Aug. 2021 - Jun. 2022", 72 | "description" : "Computer vision and deep learning project, e.g., implementing an object detection application for patient assistance" 73 | } 74 | ] 75 | } 76 | ``` 77 | example-2: customize `Introduction.json` 78 | ``` json 79 | { 80 | "intro" : "write your portfolio here", 81 | "github" : "your GitHub", 82 | "googlescholar" : "your google scholar (or your Gmail)", 83 | "linkedin" : "your LinkedIn", 84 | "orcid" : "your orcid (or any other social account, e.g., FB, IG)" 85 | } 86 | ``` 87 | if you don't have npm on your PC, I recommend you download it or use the HTML version (the HTML version is no longer maintained) 88 | ``` shell 89 | git clone --branch html https://github.com/chi-0828/profile-site.git 90 | ``` 91 | if you want to deploy the site on your GitHub page 92 | ``` shell 93 | git clone https://github.com/chi-0828/profile-site.git 94 | cd profile-site 95 | vim package.json 96 | ``` 97 | configure `package.json` 98 | ``` json 99 | { 100 | "//": "name is your project name", 101 | "name": "profile-site", 102 | "version": "0.1.0", 103 | "//": "change 'your-account' to your GitHub account and 'profile-site' to repository", 104 | "homepage": "https://your-account.github.io/profile-site", 105 | "..." : "..." 106 | } 107 | ``` 108 | ``` shell 109 | npm run deploy 110 | ``` 111 | There will be a new branch `gh-pages` on your repository; you can host the branch to be the GitHub page in `setting`
    112 | [see the tutorial](https://github.com/gitname/react-gh-pages) 113 | 114 | # Update 115 | ### 2323/06/28 | Add new tab "Project 116 | customize `Project.json` to show your projects 117 | ![image](src/img/demo3.png) 118 | 119 | ## TODO 120 | The project is under-going 121 | - add the animation of terminal-style text printing 122 | - ~~add a new tab for "Project"~~ 123 | - ~~change the source code to React project (done)~~ 124 | -------------------------------------------------------------------------------- /src/styles/main.css: -------------------------------------------------------------------------------- 1 | * { 2 | margin:0; 3 | padding:0; 4 | box-sizing: border-box; 5 | } 6 | 7 | ::-webkit-scrollbar-track { 8 | box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 9 | -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 10 | 11 | background-color: #555; 12 | } 13 | 14 | ::-webkit-scrollbar { 15 | width: 12px; 16 | background-color: #555; 17 | } 18 | 19 | ::-webkit-scrollbar-thumb { 20 | border-radius: 10px; 21 | box-shadow: inset 0 0 6px rgba(0,0,0,.3); 22 | -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); 23 | background-color: rgba(209, 209, 209, 0.5); 24 | } 25 | 26 | .bg-red { background-color:#F5544D; } 27 | 28 | .bg-yellow { background-color:#FABD2F; } 29 | 30 | .bg-green { background-color:#47D043; } 31 | 32 | .white { color:rgb(238, 238, 238); } 33 | 34 | .blue { color:#9CEAF3; } 35 | 36 | a { 37 | text-decoration: none; 38 | color: rgb(238, 238, 238); 39 | } 40 | 41 | body { 42 | background-image: url('../img/background.jpg'); 43 | /* Full height */ 44 | height: 100%; 45 | 46 | /* Center and scale the image nicely */ 47 | background-position: center; 48 | background-repeat: no-repeat; 49 | background-size: cover; 50 | 51 | font-family: 'Fira Code', monospace; 52 | display:flex; 53 | align-items: center; 54 | justify-content: center; 55 | } 56 | 57 | .container { 58 | display:flex; 59 | flex-direction: column; 60 | width:100%; 61 | max-width:1150px; 62 | height: 1060px; /* for large screen */ 63 | overflow: hidden; 64 | border-radius: 6px; 65 | border: 1px solid rgb(12, 12, 12); 66 | margin:20px; 67 | cursor: text; 68 | } 69 | 70 | /* for normal screen */ 71 | @media print, screen and (max-width: 2000px) { 72 | .container{ 73 | height: 710px; 74 | } 75 | } 76 | 77 | .menu { 78 | display:flex; 79 | align-items: center; 80 | text-align: center; 81 | flex-direction: row; 82 | width: 100%; 83 | height: 33px; 84 | background-color: #e0e0e0; 85 | padding: 0 8px; 86 | cursor:default; 87 | } 88 | 89 | .menu .button { 90 | width:12px; 91 | height:12px; 92 | border-radius:50%; 93 | margin-right:8px; 94 | cursor:pointer; 95 | } 96 | 97 | div.title { 98 | flex:1; 99 | text-align:center; 100 | } 101 | 102 | .menu h1 { 103 | font-weight: bold; 104 | font-size:14px; 105 | color: black; 106 | } 107 | 108 | .buttons-flex { 109 | position: absolute; 110 | display:flex; 111 | flex-direction: row; 112 | } 113 | 114 | .buttons-flex2 { 115 | font-weight: bold; 116 | font-size:16px; 117 | color: black; 118 | } 119 | 120 | /* Navigation links */ 121 | .nav { 122 | margin-bottom: -2px; 123 | } 124 | 125 | .nav button { 126 | /* display: inline-block; */ 127 | float: left; 128 | color: black; 129 | text-decoration: none; 130 | font-size: 13px; 131 | padding: 3.5px; 132 | width: 20%; /* Four equal-width links. If you have two links, use 50%; 33.33% for three links, etc.. */ 133 | text-align: center; 134 | background-color: #c7c7c7; 135 | font-weight: 100; 136 | border: #9c9b9b; 137 | border-style: solid; 138 | border-width: thin; 139 | border-bottom-width: medium; 140 | } 141 | 142 | .nav button .left-command { 143 | display: inline-flex; 144 | float: right; 145 | } 146 | 147 | /* Add a background color on mouse-over */ 148 | .nav button:hover { 149 | background-color: #bdbdbd; 150 | } 151 | 152 | /* Style the current/active link */ 153 | .nav button.active { 154 | background-color: #e0e0e0; 155 | border: #e0e0e0; 156 | border-style: solid; 157 | } 158 | 159 | .nav button span { 160 | text-align: right; 161 | } 162 | 163 | #app { 164 | /* display:flex; */ 165 | /* flex-direction: column; */ 166 | background-color:#15151a; 167 | width:100%; 168 | height:100%; 169 | padding:8px; 170 | overflow: auto; 171 | } 172 | 173 | p { 174 | font-size:16px; 175 | color:rgb(238, 238, 238); 176 | padding:8px 0; 177 | } 178 | 179 | h2 { 180 | font-size:13px; 181 | color:rgb(223, 235, 166); 182 | padding: 20px; 183 | } 184 | 185 | span.code { 186 | color:#66C2CD; 187 | margin-left:8px; 188 | } 189 | 190 | div.text { 191 | color:white; 192 | } 193 | 194 | div.bottom-8 { 195 | margin-bottom: 8px; 196 | } 197 | 198 | 199 | .intro, .edu, .contact, .pro, .pub-list, .exp{ 200 | padding-left: 80px; 201 | padding-bottom: 40px; 202 | } 203 | 204 | 205 | .intro span{ 206 | display: inline-block; 207 | vertical-align: top; /* Vertically align the inline-block elements */ 208 | height:100%; 209 | line-height: 100%; 210 | width: 20%; /* Just for Demo */ 211 | padding: 10px; 212 | } 213 | 214 | .intro span a{ 215 | color: #f4e4ba; 216 | } 217 | 218 | .intro span+span{ 219 | display: inline-block; 220 | vertical-align: top; /* Vertically align the inline-block elements */ 221 | padding-top: 30px; 222 | height:100%; 223 | line-height: 100%; 224 | width: 60%; /* Just for Demo */ 225 | } 226 | 227 | .intro p i{ 228 | float: left; 229 | padding: 10px; 230 | font-size: 28px; 231 | } 232 | 233 | .intro img{ 234 | width: 100%; 235 | } 236 | 237 | .intro .text{ 238 | color: white; 239 | /* width: 60%; */ 240 | margin-top: -20px; 241 | } 242 | 243 | .edu span { 244 | display: inline-block; 245 | vertical-align: top; 246 | height:100%; 247 | line-height: 100%; 248 | width: 75px; 249 | padding: 10px; 250 | } 251 | 252 | .exp span { 253 | display: inline-block; 254 | height:100%; 255 | line-height: 100%; 256 | width: 105px; 257 | padding: 10px; 258 | padding-top: 20px; 259 | } 260 | 261 | .edu span .school, .exp span .school{ 262 | color: #f4e4ba; 263 | } 264 | .edu span .dep, .exp span .dep{ 265 | font-size: 14px; 266 | color: #fcfcfc; 267 | } 268 | .edu span .time, .exp span .time{ 269 | font-size: 13px; 270 | color: #b8b8b8; 271 | } 272 | 273 | .edu span+span, .exp span+span{ 274 | display: inline-block; 275 | vertical-align: top; 276 | padding-top: 20px; 277 | height:100%; 278 | line-height: 100%; 279 | width: 60%; 280 | } 281 | 282 | .edu img, .exp img{ 283 | width: 100%; 284 | } 285 | 286 | .edu .text{ 287 | color: white; 288 | /* width: 60%; */ 289 | margin-top: -20px; 290 | } 291 | 292 | .pub-list > p { 293 | color: #f4e4ba; 294 | } 295 | 296 | .pub-list > ul{ 297 | color: #bfbfbc; 298 | padding-left: 30px; 299 | } 300 | 301 | .pub-list span{ 302 | font-weight: bold; 303 | color: rgb(238, 253, 223); 304 | font-size: 13px; 305 | } 306 | 307 | .pub-list a{ 308 | font-weight: bold; 309 | color: rgb(99, 175, 251); 310 | text-decoration: underline; 311 | } 312 | 313 | .path span{ 314 | background-color: #c7c7c7; 315 | font-size: 16px; 316 | } 317 | 318 | .fa-apple { 319 | color: #15151a; 320 | } 321 | 322 | .path span+span { 323 | color:#ebf3f4; 324 | background-color: #55a6f6; 325 | border-top-right-radius: 25px; 326 | border-bottom-right-radius: 25px; 327 | } 328 | 329 | .fa-folder-open { 330 | color: #ebf3f4; 331 | } 332 | 333 | #code { 334 | color: #f4feaa; 335 | } 336 | 337 | .success { 338 | color:#5AD786; 339 | } 340 | 341 | .error { 342 | color:#F78F85; 343 | } 344 | 345 | p.response { 346 | color:rgb(238, 238, 238); 347 | } 348 | 349 | input:focus { 350 | border:none; 351 | outline: none; 352 | box-shadow: none; 353 | background-color: unset; 354 | } 355 | 356 | .type { 357 | display:flex; 358 | align-items: center; 359 | padding:8px 0; 360 | } 361 | 362 | .type2 { 363 | display:flex; 364 | align-items: center; 365 | padding:8px 0; 366 | } 367 | 368 | .input-char { 369 | color:#5AD786; 370 | padding-right:8px; 371 | } 372 | 373 | .input-char.error { 374 | color:#F78F85; 375 | } 376 | 377 | .tab { 378 | margin-left: 40px; 379 | } 380 | 381 | table.auto { 382 | width: auto; 383 | } 384 | 385 | .actions tr > td:first-child { 386 | min-width: 50px; 387 | vertical-align: top; 388 | } 389 | 390 | table.bordered, .bordered th, .bordered td { 391 | border: 2px dashed #fff; 392 | } 393 | 394 | .collapsed { 395 | border-collapse: collapse; 396 | } 397 | 398 | table, .padded td { 399 | padding: 10px; 400 | } 401 | 402 | .output a, .output i { 403 | color: #F5FC07; 404 | cursor: pointer; 405 | } 406 | 407 | ul.dash { 408 | list-style: none; 409 | margin-left: 20px; 410 | padding-left: 1em; 411 | } 412 | 413 | ul.dash > li:before { 414 | display: inline-block; 415 | content: "-"; 416 | width: 1em; 417 | margin-left: -1em; 418 | } 419 | 420 | div.output p { 421 | padding-top: 15px; 422 | padding-bottom: 15px; 423 | } 424 | 425 | div.output table { 426 | margin-top: 20px; 427 | } 428 | 429 | div.output a, i { 430 | color: #95b9db; 431 | cursor: pointer; 432 | } 433 | 434 | .probox { 435 | border: #95b9db; 436 | border-style: dashed; 437 | border-width: thin; 438 | width: 550px; 439 | height: 150px; 440 | } 441 | .probox img { 442 | display: inline-block; 443 | width: 30%; 444 | height: 100%; 445 | overflow: hidden; 446 | } 447 | .probox .pro-content { 448 | display: inline-block; 449 | width: 66%; 450 | height: 80%; 451 | vertical-align: top; 452 | margin: 8px; 453 | } 454 | .probox .pro-content .pro-title{ 455 | height: 20%; 456 | color: #efe7c5; 457 | font-size: 16px; 458 | font-weight: bold; 459 | } 460 | .probox .pro-content .pro-about{ 461 | margin-top: 8px; 462 | color: #f7f6f0; 463 | font-size: 13px; 464 | height: 60%; 465 | } 466 | .probox .pro-content .pro-bottom{ 467 | width: 100%; 468 | height: 20%; 469 | } 470 | .probox .pro-content .pro-bottom .pro-tool{ 471 | display: inline-block; 472 | font-size: 13px; 473 | width: 90%; 474 | color: wheat; 475 | 476 | } 477 | .probox .pro-content .pro-bottom .pro-link{ 478 | display: inline-block; 479 | font-size: 22px; 480 | width: 10%; 481 | text-align: right; 482 | 483 | } 484 | 485 | .fa-github { 486 | color: white; 487 | } 488 | .fa-linkedin { 489 | color: rgb(36, 178, 249); 490 | } 491 | .fa-orcid { 492 | color: rgb(179, 250, 92); 493 | } 494 | 495 | /* for mobile device */ 496 | @media screen and (max-width: 500px) { 497 | pre h2{ 498 | font-size: 7px; 499 | } 500 | div.title { 501 | flex:1; 502 | text-align:center; 503 | } 504 | 505 | .nav button { 506 | font-size: 8px; 507 | height: 30px; 508 | overflow: scroll; 509 | } 510 | 511 | .menu h1 { 512 | font-size: 11px; 513 | /* display: inline; */ 514 | } 515 | 516 | 517 | .buttons-flex2 { 518 | font-size:12px; 519 | } 520 | 521 | .intro, .edu, .contact, .pub-list, .exp{ 522 | overflow: scroll; 523 | width: 1000px; 524 | } 525 | 526 | .intro span{ 527 | display: block; 528 | width: 20%; 529 | font-size:13px; 530 | } 531 | 532 | .intro span+span{ 533 | display: block; 534 | width: 30%; 535 | } 536 | 537 | .nav a .left-command { 538 | display: none; 539 | } 540 | 541 | .edu span { 542 | display: inline-block; 543 | height:100%; 544 | line-height: 100%; 545 | width: 75px; 546 | padding: 10px; 547 | } 548 | 549 | .exp span { 550 | display: inline-block; 551 | height:100%; 552 | line-height: 100%; 553 | width: 75px; 554 | padding: 10px; 555 | } 556 | 557 | .edu span+span, .exp span+span{ 558 | display: inline-block; 559 | padding-top: 20px; 560 | height:100%; 561 | line-height: 100%; 562 | width: 25%; 563 | } 564 | 565 | .contact p{ 566 | font-size: 9px; 567 | } 568 | 569 | .probox { 570 | width: 180px; 571 | height: 300px; 572 | } 573 | .probox img { 574 | display: block; 575 | width: 100%; 576 | height: 50%; 577 | overflow: hidden; 578 | } 579 | .probox .pro-content { 580 | display: block; 581 | width: 100%; 582 | height: 50%; 583 | margin: 3px; 584 | } 585 | .probox .pro-content .pro-title{ 586 | height: 20%; 587 | color: #efe7c5; 588 | font-size: 12px; 589 | font-weight: bold; 590 | } 591 | .probox .pro-content .pro-about{ 592 | margin-top: 0px; 593 | color: #f7f6f0; 594 | font-size: 10px; 595 | height: 60%; 596 | } 597 | .probox .pro-content .pro-bottom{ 598 | width: 100%; 599 | height: 20%; 600 | } 601 | .probox .pro-content .pro-bottom .pro-tool{ 602 | display: inline-block; 603 | font-size: 8px; 604 | width: 88%; 605 | color: wheat; 606 | 607 | } 608 | .probox .pro-content .pro-bottom .pro-link{ 609 | display: inline-block; 610 | font-size: 15px; 611 | width: 5%; 612 | text-align: right; 613 | 614 | } 615 | 616 | 617 | .pub-list p{ 618 | font-size: 9px; 619 | } 620 | .pub-list span{ 621 | font-weight: bold; 622 | color: rgb(238, 253, 223); 623 | font-size: 7px; 624 | } 625 | } 626 | 627 | @media (max-width:330px) { 628 | .menu h1{ 629 | display:none; 630 | } 631 | } 632 | 633 | @media print, screen and (max-width: 40em) { 634 | .container{ 635 | height:700px; 636 | } 637 | } 638 | 639 | @media (max-width:500px) { 640 | .buttons-flex{ 641 | position: unset; 642 | display:flex; 643 | flex-direction: row; 644 | } 645 | } 646 | 647 | -------------------------------------------------------------------------------- /src/styles/fa-all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.13.1 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | .fa, 6 | .fas, 7 | .far, 8 | .fal, 9 | .fad, 10 | .fab { 11 | -moz-osx-font-smoothing: grayscale; 12 | -webkit-font-smoothing: antialiased; 13 | display: inline-block; 14 | font-style: normal; 15 | font-variant: normal; 16 | text-rendering: auto; 17 | line-height: 1; } 18 | 19 | .fa-lg { 20 | font-size: 1.33333em; 21 | line-height: 0.75em; 22 | vertical-align: -.0667em; } 23 | 24 | .fa-xs { 25 | font-size: .75em; } 26 | 27 | .fa-sm { 28 | font-size: .875em; } 29 | 30 | .fa-1x { 31 | font-size: 1em; } 32 | 33 | .fa-2x { 34 | font-size: 2em; } 35 | 36 | .fa-3x { 37 | font-size: 3em; } 38 | 39 | .fa-4x { 40 | font-size: 4em; } 41 | 42 | .fa-5x { 43 | font-size: 5em; } 44 | 45 | .fa-6x { 46 | font-size: 6em; } 47 | 48 | .fa-7x { 49 | font-size: 7em; } 50 | 51 | .fa-8x { 52 | font-size: 8em; } 53 | 54 | .fa-9x { 55 | font-size: 9em; } 56 | 57 | .fa-10x { 58 | font-size: 10em; } 59 | 60 | .fa-fw { 61 | text-align: center; 62 | width: 1.25em; } 63 | 64 | .fa-ul { 65 | list-style-type: none; 66 | margin-left: 2.5em; 67 | padding-left: 0; } 68 | .fa-ul > li { 69 | position: relative; } 70 | 71 | .fa-li { 72 | left: -2em; 73 | position: absolute; 74 | text-align: center; 75 | width: 2em; 76 | line-height: inherit; } 77 | 78 | .fa-border { 79 | border: solid 0.08em #eee; 80 | border-radius: .1em; 81 | padding: .2em .25em .15em; } 82 | 83 | .fa-pull-left { 84 | float: left; } 85 | 86 | .fa-pull-right { 87 | float: right; } 88 | 89 | .fa.fa-pull-left, 90 | .fas.fa-pull-left, 91 | .far.fa-pull-left, 92 | .fal.fa-pull-left, 93 | .fab.fa-pull-left { 94 | margin-right: .3em; } 95 | 96 | .fa.fa-pull-right, 97 | .fas.fa-pull-right, 98 | .far.fa-pull-right, 99 | .fal.fa-pull-right, 100 | .fab.fa-pull-right { 101 | margin-left: .3em; } 102 | 103 | .fa-spin { 104 | -webkit-animation: fa-spin 2s infinite linear; 105 | animation: fa-spin 2s infinite linear; } 106 | 107 | .fa-pulse { 108 | -webkit-animation: fa-spin 1s infinite steps(8); 109 | animation: fa-spin 1s infinite steps(8); } 110 | 111 | @-webkit-keyframes fa-spin { 112 | 0% { 113 | -webkit-transform: rotate(0deg); 114 | transform: rotate(0deg); } 115 | 100% { 116 | -webkit-transform: rotate(360deg); 117 | transform: rotate(360deg); } } 118 | 119 | @keyframes fa-spin { 120 | 0% { 121 | -webkit-transform: rotate(0deg); 122 | transform: rotate(0deg); } 123 | 100% { 124 | -webkit-transform: rotate(360deg); 125 | transform: rotate(360deg); } } 126 | 127 | .fa-rotate-90 { 128 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; 129 | -webkit-transform: rotate(90deg); 130 | transform: rotate(90deg); } 131 | 132 | .fa-rotate-180 { 133 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; 134 | -webkit-transform: rotate(180deg); 135 | transform: rotate(180deg); } 136 | 137 | .fa-rotate-270 { 138 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; 139 | -webkit-transform: rotate(270deg); 140 | transform: rotate(270deg); } 141 | 142 | .fa-flip-horizontal { 143 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; 144 | -webkit-transform: scale(-1, 1); 145 | transform: scale(-1, 1); } 146 | 147 | .fa-flip-vertical { 148 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 149 | -webkit-transform: scale(1, -1); 150 | transform: scale(1, -1); } 151 | 152 | .fa-flip-both, .fa-flip-horizontal.fa-flip-vertical { 153 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 154 | -webkit-transform: scale(-1, -1); 155 | transform: scale(-1, -1); } 156 | 157 | :root .fa-rotate-90, 158 | :root .fa-rotate-180, 159 | :root .fa-rotate-270, 160 | :root .fa-flip-horizontal, 161 | :root .fa-flip-vertical, 162 | :root .fa-flip-both { 163 | -webkit-filter: none; 164 | filter: none; } 165 | 166 | .fa-stack { 167 | display: inline-block; 168 | height: 2em; 169 | line-height: 2em; 170 | position: relative; 171 | vertical-align: middle; 172 | width: 2.5em; } 173 | 174 | .fa-stack-1x, 175 | .fa-stack-2x { 176 | left: 0; 177 | position: absolute; 178 | text-align: center; 179 | width: 100%; } 180 | 181 | .fa-stack-1x { 182 | line-height: inherit; } 183 | 184 | .fa-stack-2x { 185 | font-size: 2em; } 186 | 187 | .fa-inverse { 188 | color: #fff; } 189 | 190 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 191 | readers do not read off random characters that represent icons */ 192 | .fa-500px:before { 193 | content: "\f26e"; } 194 | 195 | .fa-accessible-icon:before { 196 | content: "\f368"; } 197 | 198 | .fa-accusoft:before { 199 | content: "\f369"; } 200 | 201 | .fa-acquisitions-incorporated:before { 202 | content: "\f6af"; } 203 | 204 | .fa-ad:before { 205 | content: "\f641"; } 206 | 207 | .fa-address-book:before { 208 | content: "\f2b9"; } 209 | 210 | .fa-address-card:before { 211 | content: "\f2bb"; } 212 | 213 | .fa-adjust:before { 214 | content: "\f042"; } 215 | 216 | .fa-adn:before { 217 | content: "\f170"; } 218 | 219 | .fa-adobe:before { 220 | content: "\f778"; } 221 | 222 | .fa-adversal:before { 223 | content: "\f36a"; } 224 | 225 | .fa-affiliatetheme:before { 226 | content: "\f36b"; } 227 | 228 | .fa-air-freshener:before { 229 | content: "\f5d0"; } 230 | 231 | .fa-airbnb:before { 232 | content: "\f834"; } 233 | 234 | .fa-algolia:before { 235 | content: "\f36c"; } 236 | 237 | .fa-align-center:before { 238 | content: "\f037"; } 239 | 240 | .fa-align-justify:before { 241 | content: "\f039"; } 242 | 243 | .fa-align-left:before { 244 | content: "\f036"; } 245 | 246 | .fa-align-right:before { 247 | content: "\f038"; } 248 | 249 | .fa-alipay:before { 250 | content: "\f642"; } 251 | 252 | .fa-allergies:before { 253 | content: "\f461"; } 254 | 255 | .fa-amazon:before { 256 | content: "\f270"; } 257 | 258 | .fa-amazon-pay:before { 259 | content: "\f42c"; } 260 | 261 | .fa-ambulance:before { 262 | content: "\f0f9"; } 263 | 264 | .fa-american-sign-language-interpreting:before { 265 | content: "\f2a3"; } 266 | 267 | .fa-amilia:before { 268 | content: "\f36d"; } 269 | 270 | .fa-anchor:before { 271 | content: "\f13d"; } 272 | 273 | .fa-android:before { 274 | content: "\f17b"; } 275 | 276 | .fa-angellist:before { 277 | content: "\f209"; } 278 | 279 | .fa-angle-double-down:before { 280 | content: "\f103"; } 281 | 282 | .fa-angle-double-left:before { 283 | content: "\f100"; } 284 | 285 | .fa-angle-double-right:before { 286 | content: "\f101"; } 287 | 288 | .fa-angle-double-up:before { 289 | content: "\f102"; } 290 | 291 | .fa-angle-down:before { 292 | content: "\f107"; } 293 | 294 | .fa-angle-left:before { 295 | content: "\f104"; } 296 | 297 | .fa-angle-right:before { 298 | content: "\f105"; } 299 | 300 | .fa-angle-up:before { 301 | content: "\f106"; } 302 | 303 | .fa-angry:before { 304 | content: "\f556"; } 305 | 306 | .fa-angrycreative:before { 307 | content: "\f36e"; } 308 | 309 | .fa-angular:before { 310 | content: "\f420"; } 311 | 312 | .fa-ankh:before { 313 | content: "\f644"; } 314 | 315 | .fa-app-store:before { 316 | content: "\f36f"; } 317 | 318 | .fa-app-store-ios:before { 319 | content: "\f370"; } 320 | 321 | .fa-apper:before { 322 | content: "\f371"; } 323 | 324 | .fa-apple:before { 325 | content: "\f179"; } 326 | 327 | .fa-apple-alt:before { 328 | content: "\f5d1"; } 329 | 330 | .fa-apple-pay:before { 331 | content: "\f415"; } 332 | 333 | .fa-archive:before { 334 | content: "\f187"; } 335 | 336 | .fa-archway:before { 337 | content: "\f557"; } 338 | 339 | .fa-arrow-alt-circle-down:before { 340 | content: "\f358"; } 341 | 342 | .fa-arrow-alt-circle-left:before { 343 | content: "\f359"; } 344 | 345 | .fa-arrow-alt-circle-right:before { 346 | content: "\f35a"; } 347 | 348 | .fa-arrow-alt-circle-up:before { 349 | content: "\f35b"; } 350 | 351 | .fa-arrow-circle-down:before { 352 | content: "\f0ab"; } 353 | 354 | .fa-arrow-circle-left:before { 355 | content: "\f0a8"; } 356 | 357 | .fa-arrow-circle-right:before { 358 | content: "\f0a9"; } 359 | 360 | .fa-arrow-circle-up:before { 361 | content: "\f0aa"; } 362 | 363 | .fa-arrow-down:before { 364 | content: "\f063"; } 365 | 366 | .fa-arrow-left:before { 367 | content: "\f060"; } 368 | 369 | .fa-arrow-right:before { 370 | content: "\f061"; } 371 | 372 | .fa-arrow-up:before { 373 | content: "\f062"; } 374 | 375 | .fa-arrows-alt:before { 376 | content: "\f0b2"; } 377 | 378 | .fa-arrows-alt-h:before { 379 | content: "\f337"; } 380 | 381 | .fa-arrows-alt-v:before { 382 | content: "\f338"; } 383 | 384 | .fa-artstation:before { 385 | content: "\f77a"; } 386 | 387 | .fa-assistive-listening-systems:before { 388 | content: "\f2a2"; } 389 | 390 | .fa-asterisk:before { 391 | content: "\f069"; } 392 | 393 | .fa-asymmetrik:before { 394 | content: "\f372"; } 395 | 396 | .fa-at:before { 397 | content: "\f1fa"; } 398 | 399 | .fa-atlas:before { 400 | content: "\f558"; } 401 | 402 | .fa-atlassian:before { 403 | content: "\f77b"; } 404 | 405 | .fa-atom:before { 406 | content: "\f5d2"; } 407 | 408 | .fa-audible:before { 409 | content: "\f373"; } 410 | 411 | .fa-audio-description:before { 412 | content: "\f29e"; } 413 | 414 | .fa-autoprefixer:before { 415 | content: "\f41c"; } 416 | 417 | .fa-avianex:before { 418 | content: "\f374"; } 419 | 420 | .fa-aviato:before { 421 | content: "\f421"; } 422 | 423 | .fa-award:before { 424 | content: "\f559"; } 425 | 426 | .fa-aws:before { 427 | content: "\f375"; } 428 | 429 | .fa-baby:before { 430 | content: "\f77c"; } 431 | 432 | .fa-baby-carriage:before { 433 | content: "\f77d"; } 434 | 435 | .fa-backspace:before { 436 | content: "\f55a"; } 437 | 438 | .fa-backward:before { 439 | content: "\f04a"; } 440 | 441 | .fa-bacon:before { 442 | content: "\f7e5"; } 443 | 444 | .fa-bacteria:before { 445 | content: "\f959"; } 446 | 447 | .fa-bacterium:before { 448 | content: "\f95a"; } 449 | 450 | .fa-bahai:before { 451 | content: "\f666"; } 452 | 453 | .fa-balance-scale:before { 454 | content: "\f24e"; } 455 | 456 | .fa-balance-scale-left:before { 457 | content: "\f515"; } 458 | 459 | .fa-balance-scale-right:before { 460 | content: "\f516"; } 461 | 462 | .fa-ban:before { 463 | content: "\f05e"; } 464 | 465 | .fa-band-aid:before { 466 | content: "\f462"; } 467 | 468 | .fa-bandcamp:before { 469 | content: "\f2d5"; } 470 | 471 | .fa-barcode:before { 472 | content: "\f02a"; } 473 | 474 | .fa-bars:before { 475 | content: "\f0c9"; } 476 | 477 | .fa-baseball-ball:before { 478 | content: "\f433"; } 479 | 480 | .fa-basketball-ball:before { 481 | content: "\f434"; } 482 | 483 | .fa-bath:before { 484 | content: "\f2cd"; } 485 | 486 | .fa-battery-empty:before { 487 | content: "\f244"; } 488 | 489 | .fa-battery-full:before { 490 | content: "\f240"; } 491 | 492 | .fa-battery-half:before { 493 | content: "\f242"; } 494 | 495 | .fa-battery-quarter:before { 496 | content: "\f243"; } 497 | 498 | .fa-battery-three-quarters:before { 499 | content: "\f241"; } 500 | 501 | .fa-battle-net:before { 502 | content: "\f835"; } 503 | 504 | .fa-bed:before { 505 | content: "\f236"; } 506 | 507 | .fa-beer:before { 508 | content: "\f0fc"; } 509 | 510 | .fa-behance:before { 511 | content: "\f1b4"; } 512 | 513 | .fa-behance-square:before { 514 | content: "\f1b5"; } 515 | 516 | .fa-bell:before { 517 | content: "\f0f3"; } 518 | 519 | .fa-bell-slash:before { 520 | content: "\f1f6"; } 521 | 522 | .fa-bezier-curve:before { 523 | content: "\f55b"; } 524 | 525 | .fa-bible:before { 526 | content: "\f647"; } 527 | 528 | .fa-bicycle:before { 529 | content: "\f206"; } 530 | 531 | .fa-biking:before { 532 | content: "\f84a"; } 533 | 534 | .fa-bimobject:before { 535 | content: "\f378"; } 536 | 537 | .fa-binoculars:before { 538 | content: "\f1e5"; } 539 | 540 | .fa-biohazard:before { 541 | content: "\f780"; } 542 | 543 | .fa-birthday-cake:before { 544 | content: "\f1fd"; } 545 | 546 | .fa-bitbucket:before { 547 | content: "\f171"; } 548 | 549 | .fa-bitcoin:before { 550 | content: "\f379"; } 551 | 552 | .fa-bity:before { 553 | content: "\f37a"; } 554 | 555 | .fa-black-tie:before { 556 | content: "\f27e"; } 557 | 558 | .fa-blackberry:before { 559 | content: "\f37b"; } 560 | 561 | .fa-blender:before { 562 | content: "\f517"; } 563 | 564 | .fa-blender-phone:before { 565 | content: "\f6b6"; } 566 | 567 | .fa-blind:before { 568 | content: "\f29d"; } 569 | 570 | .fa-blog:before { 571 | content: "\f781"; } 572 | 573 | .fa-blogger:before { 574 | content: "\f37c"; } 575 | 576 | .fa-blogger-b:before { 577 | content: "\f37d"; } 578 | 579 | .fa-bluetooth:before { 580 | content: "\f293"; } 581 | 582 | .fa-bluetooth-b:before { 583 | content: "\f294"; } 584 | 585 | .fa-bold:before { 586 | content: "\f032"; } 587 | 588 | .fa-bolt:before { 589 | content: "\f0e7"; } 590 | 591 | .fa-bomb:before { 592 | content: "\f1e2"; } 593 | 594 | .fa-bone:before { 595 | content: "\f5d7"; } 596 | 597 | .fa-bong:before { 598 | content: "\f55c"; } 599 | 600 | .fa-book:before { 601 | content: "\f02d"; } 602 | 603 | .fa-book-dead:before { 604 | content: "\f6b7"; } 605 | 606 | .fa-book-medical:before { 607 | content: "\f7e6"; } 608 | 609 | .fa-book-open:before { 610 | content: "\f518"; } 611 | 612 | .fa-book-reader:before { 613 | content: "\f5da"; } 614 | 615 | .fa-bookmark:before { 616 | content: "\f02e"; } 617 | 618 | .fa-bootstrap:before { 619 | content: "\f836"; } 620 | 621 | .fa-border-all:before { 622 | content: "\f84c"; } 623 | 624 | .fa-border-none:before { 625 | content: "\f850"; } 626 | 627 | .fa-border-style:before { 628 | content: "\f853"; } 629 | 630 | .fa-bowling-ball:before { 631 | content: "\f436"; } 632 | 633 | .fa-box:before { 634 | content: "\f466"; } 635 | 636 | .fa-box-open:before { 637 | content: "\f49e"; } 638 | 639 | .fa-box-tissue:before { 640 | content: "\f95b"; } 641 | 642 | .fa-boxes:before { 643 | content: "\f468"; } 644 | 645 | .fa-braille:before { 646 | content: "\f2a1"; } 647 | 648 | .fa-brain:before { 649 | content: "\f5dc"; } 650 | 651 | .fa-bread-slice:before { 652 | content: "\f7ec"; } 653 | 654 | .fa-briefcase:before { 655 | content: "\f0b1"; } 656 | 657 | .fa-briefcase-medical:before { 658 | content: "\f469"; } 659 | 660 | .fa-broadcast-tower:before { 661 | content: "\f519"; } 662 | 663 | .fa-broom:before { 664 | content: "\f51a"; } 665 | 666 | .fa-brush:before { 667 | content: "\f55d"; } 668 | 669 | .fa-btc:before { 670 | content: "\f15a"; } 671 | 672 | .fa-buffer:before { 673 | content: "\f837"; } 674 | 675 | .fa-bug:before { 676 | content: "\f188"; } 677 | 678 | .fa-building:before { 679 | content: "\f1ad"; } 680 | 681 | .fa-bullhorn:before { 682 | content: "\f0a1"; } 683 | 684 | .fa-bullseye:before { 685 | content: "\f140"; } 686 | 687 | .fa-burn:before { 688 | content: "\f46a"; } 689 | 690 | .fa-buromobelexperte:before { 691 | content: "\f37f"; } 692 | 693 | .fa-bus:before { 694 | content: "\f207"; } 695 | 696 | .fa-bus-alt:before { 697 | content: "\f55e"; } 698 | 699 | .fa-business-time:before { 700 | content: "\f64a"; } 701 | 702 | .fa-buy-n-large:before { 703 | content: "\f8a6"; } 704 | 705 | .fa-buysellads:before { 706 | content: "\f20d"; } 707 | 708 | .fa-calculator:before { 709 | content: "\f1ec"; } 710 | 711 | .fa-calendar:before { 712 | content: "\f133"; } 713 | 714 | .fa-calendar-alt:before { 715 | content: "\f073"; } 716 | 717 | .fa-calendar-check:before { 718 | content: "\f274"; } 719 | 720 | .fa-calendar-day:before { 721 | content: "\f783"; } 722 | 723 | .fa-calendar-minus:before { 724 | content: "\f272"; } 725 | 726 | .fa-calendar-plus:before { 727 | content: "\f271"; } 728 | 729 | .fa-calendar-times:before { 730 | content: "\f273"; } 731 | 732 | .fa-calendar-week:before { 733 | content: "\f784"; } 734 | 735 | .fa-camera:before { 736 | content: "\f030"; } 737 | 738 | .fa-camera-retro:before { 739 | content: "\f083"; } 740 | 741 | .fa-campground:before { 742 | content: "\f6bb"; } 743 | 744 | .fa-canadian-maple-leaf:before { 745 | content: "\f785"; } 746 | 747 | .fa-candy-cane:before { 748 | content: "\f786"; } 749 | 750 | .fa-cannabis:before { 751 | content: "\f55f"; } 752 | 753 | .fa-capsules:before { 754 | content: "\f46b"; } 755 | 756 | .fa-car:before { 757 | content: "\f1b9"; } 758 | 759 | .fa-car-alt:before { 760 | content: "\f5de"; } 761 | 762 | .fa-car-battery:before { 763 | content: "\f5df"; } 764 | 765 | .fa-car-crash:before { 766 | content: "\f5e1"; } 767 | 768 | .fa-car-side:before { 769 | content: "\f5e4"; } 770 | 771 | .fa-caravan:before { 772 | content: "\f8ff"; } 773 | 774 | .fa-caret-down:before { 775 | content: "\f0d7"; } 776 | 777 | .fa-caret-left:before { 778 | content: "\f0d9"; } 779 | 780 | .fa-caret-right:before { 781 | content: "\f0da"; } 782 | 783 | .fa-caret-square-down:before { 784 | content: "\f150"; } 785 | 786 | .fa-caret-square-left:before { 787 | content: "\f191"; } 788 | 789 | .fa-caret-square-right:before { 790 | content: "\f152"; } 791 | 792 | .fa-caret-square-up:before { 793 | content: "\f151"; } 794 | 795 | .fa-caret-up:before { 796 | content: "\f0d8"; } 797 | 798 | .fa-carrot:before { 799 | content: "\f787"; } 800 | 801 | .fa-cart-arrow-down:before { 802 | content: "\f218"; } 803 | 804 | .fa-cart-plus:before { 805 | content: "\f217"; } 806 | 807 | .fa-cash-register:before { 808 | content: "\f788"; } 809 | 810 | .fa-cat:before { 811 | content: "\f6be"; } 812 | 813 | .fa-cc-amazon-pay:before { 814 | content: "\f42d"; } 815 | 816 | .fa-cc-amex:before { 817 | content: "\f1f3"; } 818 | 819 | .fa-cc-apple-pay:before { 820 | content: "\f416"; } 821 | 822 | .fa-cc-diners-club:before { 823 | content: "\f24c"; } 824 | 825 | .fa-cc-discover:before { 826 | content: "\f1f2"; } 827 | 828 | .fa-cc-jcb:before { 829 | content: "\f24b"; } 830 | 831 | .fa-cc-mastercard:before { 832 | content: "\f1f1"; } 833 | 834 | .fa-cc-paypal:before { 835 | content: "\f1f4"; } 836 | 837 | .fa-cc-stripe:before { 838 | content: "\f1f5"; } 839 | 840 | .fa-cc-visa:before { 841 | content: "\f1f0"; } 842 | 843 | .fa-centercode:before { 844 | content: "\f380"; } 845 | 846 | .fa-centos:before { 847 | content: "\f789"; } 848 | 849 | .fa-certificate:before { 850 | content: "\f0a3"; } 851 | 852 | .fa-chair:before { 853 | content: "\f6c0"; } 854 | 855 | .fa-chalkboard:before { 856 | content: "\f51b"; } 857 | 858 | .fa-chalkboard-teacher:before { 859 | content: "\f51c"; } 860 | 861 | .fa-charging-station:before { 862 | content: "\f5e7"; } 863 | 864 | .fa-chart-area:before { 865 | content: "\f1fe"; } 866 | 867 | .fa-chart-bar:before { 868 | content: "\f080"; } 869 | 870 | .fa-chart-line:before { 871 | content: "\f201"; } 872 | 873 | .fa-chart-pie:before { 874 | content: "\f200"; } 875 | 876 | .fa-check:before { 877 | content: "\f00c"; } 878 | 879 | .fa-check-circle:before { 880 | content: "\f058"; } 881 | 882 | .fa-check-double:before { 883 | content: "\f560"; } 884 | 885 | .fa-check-square:before { 886 | content: "\f14a"; } 887 | 888 | .fa-cheese:before { 889 | content: "\f7ef"; } 890 | 891 | .fa-chess:before { 892 | content: "\f439"; } 893 | 894 | .fa-chess-bishop:before { 895 | content: "\f43a"; } 896 | 897 | .fa-chess-board:before { 898 | content: "\f43c"; } 899 | 900 | .fa-chess-king:before { 901 | content: "\f43f"; } 902 | 903 | .fa-chess-knight:before { 904 | content: "\f441"; } 905 | 906 | .fa-chess-pawn:before { 907 | content: "\f443"; } 908 | 909 | .fa-chess-queen:before { 910 | content: "\f445"; } 911 | 912 | .fa-chess-rook:before { 913 | content: "\f447"; } 914 | 915 | .fa-chevron-circle-down:before { 916 | content: "\f13a"; } 917 | 918 | .fa-chevron-circle-left:before { 919 | content: "\f137"; } 920 | 921 | .fa-chevron-circle-right:before { 922 | content: "\f138"; } 923 | 924 | .fa-chevron-circle-up:before { 925 | content: "\f139"; } 926 | 927 | .fa-chevron-down:before { 928 | content: "\f078"; } 929 | 930 | .fa-chevron-left:before { 931 | content: "\f053"; } 932 | 933 | .fa-chevron-right:before { 934 | content: "\f054"; } 935 | 936 | .fa-chevron-up:before { 937 | content: "\f077"; } 938 | 939 | .fa-child:before { 940 | content: "\f1ae"; } 941 | 942 | .fa-chrome:before { 943 | content: "\f268"; } 944 | 945 | .fa-chromecast:before { 946 | content: "\f838"; } 947 | 948 | .fa-church:before { 949 | content: "\f51d"; } 950 | 951 | .fa-circle:before { 952 | content: "\f111"; } 953 | 954 | .fa-circle-notch:before { 955 | content: "\f1ce"; } 956 | 957 | .fa-city:before { 958 | content: "\f64f"; } 959 | 960 | .fa-clinic-medical:before { 961 | content: "\f7f2"; } 962 | 963 | .fa-clipboard:before { 964 | content: "\f328"; } 965 | 966 | .fa-clipboard-check:before { 967 | content: "\f46c"; } 968 | 969 | .fa-clipboard-list:before { 970 | content: "\f46d"; } 971 | 972 | .fa-clock:before { 973 | content: "\f017"; } 974 | 975 | .fa-clone:before { 976 | content: "\f24d"; } 977 | 978 | .fa-closed-captioning:before { 979 | content: "\f20a"; } 980 | 981 | .fa-cloud:before { 982 | content: "\f0c2"; } 983 | 984 | .fa-cloud-download-alt:before { 985 | content: "\f381"; } 986 | 987 | .fa-cloud-meatball:before { 988 | content: "\f73b"; } 989 | 990 | .fa-cloud-moon:before { 991 | content: "\f6c3"; } 992 | 993 | .fa-cloud-moon-rain:before { 994 | content: "\f73c"; } 995 | 996 | .fa-cloud-rain:before { 997 | content: "\f73d"; } 998 | 999 | .fa-cloud-showers-heavy:before { 1000 | content: "\f740"; } 1001 | 1002 | .fa-cloud-sun:before { 1003 | content: "\f6c4"; } 1004 | 1005 | .fa-cloud-sun-rain:before { 1006 | content: "\f743"; } 1007 | 1008 | .fa-cloud-upload-alt:before { 1009 | content: "\f382"; } 1010 | 1011 | .fa-cloudscale:before { 1012 | content: "\f383"; } 1013 | 1014 | .fa-cloudsmith:before { 1015 | content: "\f384"; } 1016 | 1017 | .fa-cloudversify:before { 1018 | content: "\f385"; } 1019 | 1020 | .fa-cocktail:before { 1021 | content: "\f561"; } 1022 | 1023 | .fa-code:before { 1024 | content: "\f121"; } 1025 | 1026 | .fa-code-branch:before { 1027 | content: "\f126"; } 1028 | 1029 | .fa-codepen:before { 1030 | content: "\f1cb"; } 1031 | 1032 | .fa-codiepie:before { 1033 | content: "\f284"; } 1034 | 1035 | .fa-coffee:before { 1036 | content: "\f0f4"; } 1037 | 1038 | .fa-cog:before { 1039 | content: "\f013"; } 1040 | 1041 | .fa-cogs:before { 1042 | content: "\f085"; } 1043 | 1044 | .fa-coins:before { 1045 | content: "\f51e"; } 1046 | 1047 | .fa-columns:before { 1048 | content: "\f0db"; } 1049 | 1050 | .fa-comment:before { 1051 | content: "\f075"; } 1052 | 1053 | .fa-comment-alt:before { 1054 | content: "\f27a"; } 1055 | 1056 | .fa-comment-dollar:before { 1057 | content: "\f651"; } 1058 | 1059 | .fa-comment-dots:before { 1060 | content: "\f4ad"; } 1061 | 1062 | .fa-comment-medical:before { 1063 | content: "\f7f5"; } 1064 | 1065 | .fa-comment-slash:before { 1066 | content: "\f4b3"; } 1067 | 1068 | .fa-comments:before { 1069 | content: "\f086"; } 1070 | 1071 | .fa-comments-dollar:before { 1072 | content: "\f653"; } 1073 | 1074 | .fa-compact-disc:before { 1075 | content: "\f51f"; } 1076 | 1077 | .fa-compass:before { 1078 | content: "\f14e"; } 1079 | 1080 | .fa-compress:before { 1081 | content: "\f066"; } 1082 | 1083 | .fa-compress-alt:before { 1084 | content: "\f422"; } 1085 | 1086 | .fa-compress-arrows-alt:before { 1087 | content: "\f78c"; } 1088 | 1089 | .fa-concierge-bell:before { 1090 | content: "\f562"; } 1091 | 1092 | .fa-confluence:before { 1093 | content: "\f78d"; } 1094 | 1095 | .fa-connectdevelop:before { 1096 | content: "\f20e"; } 1097 | 1098 | .fa-contao:before { 1099 | content: "\f26d"; } 1100 | 1101 | .fa-cookie:before { 1102 | content: "\f563"; } 1103 | 1104 | .fa-cookie-bite:before { 1105 | content: "\f564"; } 1106 | 1107 | .fa-copy:before { 1108 | content: "\f0c5"; } 1109 | 1110 | .fa-copyright:before { 1111 | content: "\f1f9"; } 1112 | 1113 | .fa-cotton-bureau:before { 1114 | content: "\f89e"; } 1115 | 1116 | .fa-couch:before { 1117 | content: "\f4b8"; } 1118 | 1119 | .fa-cpanel:before { 1120 | content: "\f388"; } 1121 | 1122 | .fa-creative-commons:before { 1123 | content: "\f25e"; } 1124 | 1125 | .fa-creative-commons-by:before { 1126 | content: "\f4e7"; } 1127 | 1128 | .fa-creative-commons-nc:before { 1129 | content: "\f4e8"; } 1130 | 1131 | .fa-creative-commons-nc-eu:before { 1132 | content: "\f4e9"; } 1133 | 1134 | .fa-creative-commons-nc-jp:before { 1135 | content: "\f4ea"; } 1136 | 1137 | .fa-creative-commons-nd:before { 1138 | content: "\f4eb"; } 1139 | 1140 | .fa-creative-commons-pd:before { 1141 | content: "\f4ec"; } 1142 | 1143 | .fa-creative-commons-pd-alt:before { 1144 | content: "\f4ed"; } 1145 | 1146 | .fa-creative-commons-remix:before { 1147 | content: "\f4ee"; } 1148 | 1149 | .fa-creative-commons-sa:before { 1150 | content: "\f4ef"; } 1151 | 1152 | .fa-creative-commons-sampling:before { 1153 | content: "\f4f0"; } 1154 | 1155 | .fa-creative-commons-sampling-plus:before { 1156 | content: "\f4f1"; } 1157 | 1158 | .fa-creative-commons-share:before { 1159 | content: "\f4f2"; } 1160 | 1161 | .fa-creative-commons-zero:before { 1162 | content: "\f4f3"; } 1163 | 1164 | .fa-credit-card:before { 1165 | content: "\f09d"; } 1166 | 1167 | .fa-critical-role:before { 1168 | content: "\f6c9"; } 1169 | 1170 | .fa-crop:before { 1171 | content: "\f125"; } 1172 | 1173 | .fa-crop-alt:before { 1174 | content: "\f565"; } 1175 | 1176 | .fa-cross:before { 1177 | content: "\f654"; } 1178 | 1179 | .fa-crosshairs:before { 1180 | content: "\f05b"; } 1181 | 1182 | .fa-crow:before { 1183 | content: "\f520"; } 1184 | 1185 | .fa-crown:before { 1186 | content: "\f521"; } 1187 | 1188 | .fa-crutch:before { 1189 | content: "\f7f7"; } 1190 | 1191 | .fa-css3:before { 1192 | content: "\f13c"; } 1193 | 1194 | .fa-css3-alt:before { 1195 | content: "\f38b"; } 1196 | 1197 | .fa-cube:before { 1198 | content: "\f1b2"; } 1199 | 1200 | .fa-cubes:before { 1201 | content: "\f1b3"; } 1202 | 1203 | .fa-cut:before { 1204 | content: "\f0c4"; } 1205 | 1206 | .fa-cuttlefish:before { 1207 | content: "\f38c"; } 1208 | 1209 | .fa-d-and-d:before { 1210 | content: "\f38d"; } 1211 | 1212 | .fa-d-and-d-beyond:before { 1213 | content: "\f6ca"; } 1214 | 1215 | .fa-dailymotion:before { 1216 | content: "\f952"; } 1217 | 1218 | .fa-dashcube:before { 1219 | content: "\f210"; } 1220 | 1221 | .fa-database:before { 1222 | content: "\f1c0"; } 1223 | 1224 | .fa-deaf:before { 1225 | content: "\f2a4"; } 1226 | 1227 | .fa-deezer:before { 1228 | content: "\f977"; } 1229 | 1230 | .fa-delicious:before { 1231 | content: "\f1a5"; } 1232 | 1233 | .fa-democrat:before { 1234 | content: "\f747"; } 1235 | 1236 | .fa-deploydog:before { 1237 | content: "\f38e"; } 1238 | 1239 | .fa-deskpro:before { 1240 | content: "\f38f"; } 1241 | 1242 | .fa-desktop:before { 1243 | content: "\f108"; } 1244 | 1245 | .fa-dev:before { 1246 | content: "\f6cc"; } 1247 | 1248 | .fa-deviantart:before { 1249 | content: "\f1bd"; } 1250 | 1251 | .fa-dharmachakra:before { 1252 | content: "\f655"; } 1253 | 1254 | .fa-dhl:before { 1255 | content: "\f790"; } 1256 | 1257 | .fa-diagnoses:before { 1258 | content: "\f470"; } 1259 | 1260 | .fa-diaspora:before { 1261 | content: "\f791"; } 1262 | 1263 | .fa-dice:before { 1264 | content: "\f522"; } 1265 | 1266 | .fa-dice-d20:before { 1267 | content: "\f6cf"; } 1268 | 1269 | .fa-dice-d6:before { 1270 | content: "\f6d1"; } 1271 | 1272 | .fa-dice-five:before { 1273 | content: "\f523"; } 1274 | 1275 | .fa-dice-four:before { 1276 | content: "\f524"; } 1277 | 1278 | .fa-dice-one:before { 1279 | content: "\f525"; } 1280 | 1281 | .fa-dice-six:before { 1282 | content: "\f526"; } 1283 | 1284 | .fa-dice-three:before { 1285 | content: "\f527"; } 1286 | 1287 | .fa-dice-two:before { 1288 | content: "\f528"; } 1289 | 1290 | .fa-digg:before { 1291 | content: "\f1a6"; } 1292 | 1293 | .fa-digital-ocean:before { 1294 | content: "\f391"; } 1295 | 1296 | .fa-digital-tachograph:before { 1297 | content: "\f566"; } 1298 | 1299 | .fa-directions:before { 1300 | content: "\f5eb"; } 1301 | 1302 | .fa-discord:before { 1303 | content: "\f392"; } 1304 | 1305 | .fa-discourse:before { 1306 | content: "\f393"; } 1307 | 1308 | .fa-disease:before { 1309 | content: "\f7fa"; } 1310 | 1311 | .fa-divide:before { 1312 | content: "\f529"; } 1313 | 1314 | .fa-dizzy:before { 1315 | content: "\f567"; } 1316 | 1317 | .fa-dna:before { 1318 | content: "\f471"; } 1319 | 1320 | .fa-dochub:before { 1321 | content: "\f394"; } 1322 | 1323 | .fa-docker:before { 1324 | content: "\f395"; } 1325 | 1326 | .fa-dog:before { 1327 | content: "\f6d3"; } 1328 | 1329 | .fa-dollar-sign:before { 1330 | content: "\f155"; } 1331 | 1332 | .fa-dolly:before { 1333 | content: "\f472"; } 1334 | 1335 | .fa-dolly-flatbed:before { 1336 | content: "\f474"; } 1337 | 1338 | .fa-donate:before { 1339 | content: "\f4b9"; } 1340 | 1341 | .fa-door-closed:before { 1342 | content: "\f52a"; } 1343 | 1344 | .fa-door-open:before { 1345 | content: "\f52b"; } 1346 | 1347 | .fa-dot-circle:before { 1348 | content: "\f192"; } 1349 | 1350 | .fa-dove:before { 1351 | content: "\f4ba"; } 1352 | 1353 | .fa-download:before { 1354 | content: "\f019"; } 1355 | 1356 | .fa-draft2digital:before { 1357 | content: "\f396"; } 1358 | 1359 | .fa-drafting-compass:before { 1360 | content: "\f568"; } 1361 | 1362 | .fa-dragon:before { 1363 | content: "\f6d5"; } 1364 | 1365 | .fa-draw-polygon:before { 1366 | content: "\f5ee"; } 1367 | 1368 | .fa-dribbble:before { 1369 | content: "\f17d"; } 1370 | 1371 | .fa-dribbble-square:before { 1372 | content: "\f397"; } 1373 | 1374 | .fa-dropbox:before { 1375 | content: "\f16b"; } 1376 | 1377 | .fa-drum:before { 1378 | content: "\f569"; } 1379 | 1380 | .fa-drum-steelpan:before { 1381 | content: "\f56a"; } 1382 | 1383 | .fa-drumstick-bite:before { 1384 | content: "\f6d7"; } 1385 | 1386 | .fa-drupal:before { 1387 | content: "\f1a9"; } 1388 | 1389 | .fa-dumbbell:before { 1390 | content: "\f44b"; } 1391 | 1392 | .fa-dumpster:before { 1393 | content: "\f793"; } 1394 | 1395 | .fa-dumpster-fire:before { 1396 | content: "\f794"; } 1397 | 1398 | .fa-dungeon:before { 1399 | content: "\f6d9"; } 1400 | 1401 | .fa-dyalog:before { 1402 | content: "\f399"; } 1403 | 1404 | .fa-earlybirds:before { 1405 | content: "\f39a"; } 1406 | 1407 | .fa-ebay:before { 1408 | content: "\f4f4"; } 1409 | 1410 | .fa-edge:before { 1411 | content: "\f282"; } 1412 | 1413 | .fa-edge-legacy:before { 1414 | content: "\f978"; } 1415 | 1416 | .fa-edit:before { 1417 | content: "\f044"; } 1418 | 1419 | .fa-egg:before { 1420 | content: "\f7fb"; } 1421 | 1422 | .fa-eject:before { 1423 | content: "\f052"; } 1424 | 1425 | .fa-elementor:before { 1426 | content: "\f430"; } 1427 | 1428 | .fa-ellipsis-h:before { 1429 | content: "\f141"; } 1430 | 1431 | .fa-ellipsis-v:before { 1432 | content: "\f142"; } 1433 | 1434 | .fa-ello:before { 1435 | content: "\f5f1"; } 1436 | 1437 | .fa-ember:before { 1438 | content: "\f423"; } 1439 | 1440 | .fa-empire:before { 1441 | content: "\f1d1"; } 1442 | 1443 | .fa-envelope:before { 1444 | content: "\f0e0"; } 1445 | 1446 | .fa-envelope-open:before { 1447 | content: "\f2b6"; } 1448 | 1449 | .fa-envelope-open-text:before { 1450 | content: "\f658"; } 1451 | 1452 | .fa-envelope-square:before { 1453 | content: "\f199"; } 1454 | 1455 | .fa-envira:before { 1456 | content: "\f299"; } 1457 | 1458 | .fa-equals:before { 1459 | content: "\f52c"; } 1460 | 1461 | .fa-eraser:before { 1462 | content: "\f12d"; } 1463 | 1464 | .fa-erlang:before { 1465 | content: "\f39d"; } 1466 | 1467 | .fa-ethereum:before { 1468 | content: "\f42e"; } 1469 | 1470 | .fa-ethernet:before { 1471 | content: "\f796"; } 1472 | 1473 | .fa-etsy:before { 1474 | content: "\f2d7"; } 1475 | 1476 | .fa-euro-sign:before { 1477 | content: "\f153"; } 1478 | 1479 | .fa-evernote:before { 1480 | content: "\f839"; } 1481 | 1482 | .fa-exchange-alt:before { 1483 | content: "\f362"; } 1484 | 1485 | .fa-exclamation:before { 1486 | content: "\f12a"; } 1487 | 1488 | .fa-exclamation-circle:before { 1489 | content: "\f06a"; } 1490 | 1491 | .fa-exclamation-triangle:before { 1492 | content: "\f071"; } 1493 | 1494 | .fa-expand:before { 1495 | content: "\f065"; } 1496 | 1497 | .fa-expand-alt:before { 1498 | content: "\f424"; } 1499 | 1500 | .fa-expand-arrows-alt:before { 1501 | content: "\f31e"; } 1502 | 1503 | .fa-expeditedssl:before { 1504 | content: "\f23e"; } 1505 | 1506 | .fa-external-link-alt:before { 1507 | content: "\f35d"; } 1508 | 1509 | .fa-external-link-square-alt:before { 1510 | content: "\f360"; } 1511 | 1512 | .fa-eye:before { 1513 | content: "\f06e"; } 1514 | 1515 | .fa-eye-dropper:before { 1516 | content: "\f1fb"; } 1517 | 1518 | .fa-eye-slash:before { 1519 | content: "\f070"; } 1520 | 1521 | .fa-facebook:before { 1522 | content: "\f09a"; } 1523 | 1524 | .fa-facebook-f:before { 1525 | content: "\f39e"; } 1526 | 1527 | .fa-facebook-messenger:before { 1528 | content: "\f39f"; } 1529 | 1530 | .fa-facebook-square:before { 1531 | content: "\f082"; } 1532 | 1533 | .fa-fan:before { 1534 | content: "\f863"; } 1535 | 1536 | .fa-fantasy-flight-games:before { 1537 | content: "\f6dc"; } 1538 | 1539 | .fa-fast-backward:before { 1540 | content: "\f049"; } 1541 | 1542 | .fa-fast-forward:before { 1543 | content: "\f050"; } 1544 | 1545 | .fa-faucet:before { 1546 | content: "\f905"; } 1547 | 1548 | .fa-fax:before { 1549 | content: "\f1ac"; } 1550 | 1551 | .fa-feather:before { 1552 | content: "\f52d"; } 1553 | 1554 | .fa-feather-alt:before { 1555 | content: "\f56b"; } 1556 | 1557 | .fa-fedex:before { 1558 | content: "\f797"; } 1559 | 1560 | .fa-fedora:before { 1561 | content: "\f798"; } 1562 | 1563 | .fa-female:before { 1564 | content: "\f182"; } 1565 | 1566 | .fa-fighter-jet:before { 1567 | content: "\f0fb"; } 1568 | 1569 | .fa-figma:before { 1570 | content: "\f799"; } 1571 | 1572 | .fa-file:before { 1573 | content: "\f15b"; } 1574 | 1575 | .fa-file-alt:before { 1576 | content: "\f15c"; } 1577 | 1578 | .fa-file-archive:before { 1579 | content: "\f1c6"; } 1580 | 1581 | .fa-file-audio:before { 1582 | content: "\f1c7"; } 1583 | 1584 | .fa-file-code:before { 1585 | content: "\f1c9"; } 1586 | 1587 | .fa-file-contract:before { 1588 | content: "\f56c"; } 1589 | 1590 | .fa-file-csv:before { 1591 | content: "\f6dd"; } 1592 | 1593 | .fa-file-download:before { 1594 | content: "\f56d"; } 1595 | 1596 | .fa-file-excel:before { 1597 | content: "\f1c3"; } 1598 | 1599 | .fa-file-export:before { 1600 | content: "\f56e"; } 1601 | 1602 | .fa-file-image:before { 1603 | content: "\f1c5"; } 1604 | 1605 | .fa-file-import:before { 1606 | content: "\f56f"; } 1607 | 1608 | .fa-file-invoice:before { 1609 | content: "\f570"; } 1610 | 1611 | .fa-file-invoice-dollar:before { 1612 | content: "\f571"; } 1613 | 1614 | .fa-file-medical:before { 1615 | content: "\f477"; } 1616 | 1617 | .fa-file-medical-alt:before { 1618 | content: "\f478"; } 1619 | 1620 | .fa-file-pdf:before { 1621 | content: "\f1c1"; } 1622 | 1623 | .fa-file-powerpoint:before { 1624 | content: "\f1c4"; } 1625 | 1626 | .fa-file-prescription:before { 1627 | content: "\f572"; } 1628 | 1629 | .fa-file-signature:before { 1630 | content: "\f573"; } 1631 | 1632 | .fa-file-upload:before { 1633 | content: "\f574"; } 1634 | 1635 | .fa-file-video:before { 1636 | content: "\f1c8"; } 1637 | 1638 | .fa-file-word:before { 1639 | content: "\f1c2"; } 1640 | 1641 | .fa-fill:before { 1642 | content: "\f575"; } 1643 | 1644 | .fa-fill-drip:before { 1645 | content: "\f576"; } 1646 | 1647 | .fa-film:before { 1648 | content: "\f008"; } 1649 | 1650 | .fa-filter:before { 1651 | content: "\f0b0"; } 1652 | 1653 | .fa-fingerprint:before { 1654 | content: "\f577"; } 1655 | 1656 | .fa-fire:before { 1657 | content: "\f06d"; } 1658 | 1659 | .fa-fire-alt:before { 1660 | content: "\f7e4"; } 1661 | 1662 | .fa-fire-extinguisher:before { 1663 | content: "\f134"; } 1664 | 1665 | .fa-firefox:before { 1666 | content: "\f269"; } 1667 | 1668 | .fa-firefox-browser:before { 1669 | content: "\f907"; } 1670 | 1671 | .fa-first-aid:before { 1672 | content: "\f479"; } 1673 | 1674 | .fa-first-order:before { 1675 | content: "\f2b0"; } 1676 | 1677 | .fa-first-order-alt:before { 1678 | content: "\f50a"; } 1679 | 1680 | .fa-firstdraft:before { 1681 | content: "\f3a1"; } 1682 | 1683 | .fa-fish:before { 1684 | content: "\f578"; } 1685 | 1686 | .fa-fist-raised:before { 1687 | content: "\f6de"; } 1688 | 1689 | .fa-flag:before { 1690 | content: "\f024"; } 1691 | 1692 | .fa-flag-checkered:before { 1693 | content: "\f11e"; } 1694 | 1695 | .fa-flag-usa:before { 1696 | content: "\f74d"; } 1697 | 1698 | .fa-flask:before { 1699 | content: "\f0c3"; } 1700 | 1701 | .fa-flickr:before { 1702 | content: "\f16e"; } 1703 | 1704 | .fa-flipboard:before { 1705 | content: "\f44d"; } 1706 | 1707 | .fa-flushed:before { 1708 | content: "\f579"; } 1709 | 1710 | .fa-fly:before { 1711 | content: "\f417"; } 1712 | 1713 | .fa-folder:before { 1714 | content: "\f07b"; } 1715 | 1716 | .fa-folder-minus:before { 1717 | content: "\f65d"; } 1718 | 1719 | .fa-folder-open:before { 1720 | content: "\f07c"; } 1721 | 1722 | .fa-folder-plus:before { 1723 | content: "\f65e"; } 1724 | 1725 | .fa-font:before { 1726 | content: "\f031"; } 1727 | 1728 | .fa-font-awesome:before { 1729 | content: "\f2b4"; } 1730 | 1731 | .fa-font-awesome-alt:before { 1732 | content: "\f35c"; } 1733 | 1734 | .fa-font-awesome-flag:before { 1735 | content: "\f425"; } 1736 | 1737 | .fa-font-awesome-logo-full:before { 1738 | content: "\f4e6"; } 1739 | 1740 | .fa-fonticons:before { 1741 | content: "\f280"; } 1742 | 1743 | .fa-fonticons-fi:before { 1744 | content: "\f3a2"; } 1745 | 1746 | .fa-football-ball:before { 1747 | content: "\f44e"; } 1748 | 1749 | .fa-fort-awesome:before { 1750 | content: "\f286"; } 1751 | 1752 | .fa-fort-awesome-alt:before { 1753 | content: "\f3a3"; } 1754 | 1755 | .fa-forumbee:before { 1756 | content: "\f211"; } 1757 | 1758 | .fa-forward:before { 1759 | content: "\f04e"; } 1760 | 1761 | .fa-foursquare:before { 1762 | content: "\f180"; } 1763 | 1764 | .fa-free-code-camp:before { 1765 | content: "\f2c5"; } 1766 | 1767 | .fa-freebsd:before { 1768 | content: "\f3a4"; } 1769 | 1770 | .fa-frog:before { 1771 | content: "\f52e"; } 1772 | 1773 | .fa-frown:before { 1774 | content: "\f119"; } 1775 | 1776 | .fa-frown-open:before { 1777 | content: "\f57a"; } 1778 | 1779 | .fa-fulcrum:before { 1780 | content: "\f50b"; } 1781 | 1782 | .fa-funnel-dollar:before { 1783 | content: "\f662"; } 1784 | 1785 | .fa-futbol:before { 1786 | content: "\f1e3"; } 1787 | 1788 | .fa-galactic-republic:before { 1789 | content: "\f50c"; } 1790 | 1791 | .fa-galactic-senate:before { 1792 | content: "\f50d"; } 1793 | 1794 | .fa-gamepad:before { 1795 | content: "\f11b"; } 1796 | 1797 | .fa-gas-pump:before { 1798 | content: "\f52f"; } 1799 | 1800 | .fa-gavel:before { 1801 | content: "\f0e3"; } 1802 | 1803 | .fa-gem:before { 1804 | content: "\f3a5"; } 1805 | 1806 | .fa-genderless:before { 1807 | content: "\f22d"; } 1808 | 1809 | .fa-get-pocket:before { 1810 | content: "\f265"; } 1811 | 1812 | .fa-gg:before { 1813 | content: "\f260"; } 1814 | 1815 | .fa-gg-circle:before { 1816 | content: "\f261"; } 1817 | 1818 | .fa-ghost:before { 1819 | content: "\f6e2"; } 1820 | 1821 | .fa-gift:before { 1822 | content: "\f06b"; } 1823 | 1824 | .fa-gifts:before { 1825 | content: "\f79c"; } 1826 | 1827 | .fa-git:before { 1828 | content: "\f1d3"; } 1829 | 1830 | .fa-git-alt:before { 1831 | content: "\f841"; } 1832 | 1833 | .fa-git-square:before { 1834 | content: "\f1d2"; } 1835 | 1836 | .fa-github:before { 1837 | content: "\f09b"; } 1838 | 1839 | .fa-github-alt:before { 1840 | content: "\f113"; } 1841 | 1842 | .fa-github-square:before { 1843 | content: "\f092"; } 1844 | 1845 | .fa-gitkraken:before { 1846 | content: "\f3a6"; } 1847 | 1848 | .fa-gitlab:before { 1849 | content: "\f296"; } 1850 | 1851 | .fa-gitter:before { 1852 | content: "\f426"; } 1853 | 1854 | .fa-glass-cheers:before { 1855 | content: "\f79f"; } 1856 | 1857 | .fa-glass-martini:before { 1858 | content: "\f000"; } 1859 | 1860 | .fa-glass-martini-alt:before { 1861 | content: "\f57b"; } 1862 | 1863 | .fa-glass-whiskey:before { 1864 | content: "\f7a0"; } 1865 | 1866 | .fa-glasses:before { 1867 | content: "\f530"; } 1868 | 1869 | .fa-glide:before { 1870 | content: "\f2a5"; } 1871 | 1872 | .fa-glide-g:before { 1873 | content: "\f2a6"; } 1874 | 1875 | .fa-globe:before { 1876 | content: "\f0ac"; } 1877 | 1878 | .fa-globe-africa:before { 1879 | content: "\f57c"; } 1880 | 1881 | .fa-globe-americas:before { 1882 | content: "\f57d"; } 1883 | 1884 | .fa-globe-asia:before { 1885 | content: "\f57e"; } 1886 | 1887 | .fa-globe-europe:before { 1888 | content: "\f7a2"; } 1889 | 1890 | .fa-gofore:before { 1891 | content: "\f3a7"; } 1892 | 1893 | .fa-golf-ball:before { 1894 | content: "\f450"; } 1895 | 1896 | .fa-goodreads:before { 1897 | content: "\f3a8"; } 1898 | 1899 | .fa-goodreads-g:before { 1900 | content: "\f3a9"; } 1901 | 1902 | .fa-google:before { 1903 | content: "\f1a0"; } 1904 | 1905 | .fa-google-drive:before { 1906 | content: "\f3aa"; } 1907 | 1908 | .fa-google-pay:before { 1909 | content: "\f979"; } 1910 | 1911 | .fa-google-play:before { 1912 | content: "\f3ab"; } 1913 | 1914 | .fa-google-plus:before { 1915 | content: "\f2b3"; } 1916 | 1917 | .fa-google-plus-g:before { 1918 | content: "\f0d5"; } 1919 | 1920 | .fa-google-plus-square:before { 1921 | content: "\f0d4"; } 1922 | 1923 | .fa-google-wallet:before { 1924 | content: "\f1ee"; } 1925 | 1926 | .fa-gopuram:before { 1927 | content: "\f664"; } 1928 | 1929 | .fa-graduation-cap:before { 1930 | content: "\f19d"; } 1931 | 1932 | .fa-gratipay:before { 1933 | content: "\f184"; } 1934 | 1935 | .fa-grav:before { 1936 | content: "\f2d6"; } 1937 | 1938 | .fa-greater-than:before { 1939 | content: "\f531"; } 1940 | 1941 | .fa-greater-than-equal:before { 1942 | content: "\f532"; } 1943 | 1944 | .fa-grimace:before { 1945 | content: "\f57f"; } 1946 | 1947 | .fa-grin:before { 1948 | content: "\f580"; } 1949 | 1950 | .fa-grin-alt:before { 1951 | content: "\f581"; } 1952 | 1953 | .fa-grin-beam:before { 1954 | content: "\f582"; } 1955 | 1956 | .fa-grin-beam-sweat:before { 1957 | content: "\f583"; } 1958 | 1959 | .fa-grin-hearts:before { 1960 | content: "\f584"; } 1961 | 1962 | .fa-grin-squint:before { 1963 | content: "\f585"; } 1964 | 1965 | .fa-grin-squint-tears:before { 1966 | content: "\f586"; } 1967 | 1968 | .fa-grin-stars:before { 1969 | content: "\f587"; } 1970 | 1971 | .fa-grin-tears:before { 1972 | content: "\f588"; } 1973 | 1974 | .fa-grin-tongue:before { 1975 | content: "\f589"; } 1976 | 1977 | .fa-grin-tongue-squint:before { 1978 | content: "\f58a"; } 1979 | 1980 | .fa-grin-tongue-wink:before { 1981 | content: "\f58b"; } 1982 | 1983 | .fa-grin-wink:before { 1984 | content: "\f58c"; } 1985 | 1986 | .fa-grip-horizontal:before { 1987 | content: "\f58d"; } 1988 | 1989 | .fa-grip-lines:before { 1990 | content: "\f7a4"; } 1991 | 1992 | .fa-grip-lines-vertical:before { 1993 | content: "\f7a5"; } 1994 | 1995 | .fa-grip-vertical:before { 1996 | content: "\f58e"; } 1997 | 1998 | .fa-gripfire:before { 1999 | content: "\f3ac"; } 2000 | 2001 | .fa-grunt:before { 2002 | content: "\f3ad"; } 2003 | 2004 | .fa-guitar:before { 2005 | content: "\f7a6"; } 2006 | 2007 | .fa-gulp:before { 2008 | content: "\f3ae"; } 2009 | 2010 | .fa-h-square:before { 2011 | content: "\f0fd"; } 2012 | 2013 | .fa-hacker-news:before { 2014 | content: "\f1d4"; } 2015 | 2016 | .fa-hacker-news-square:before { 2017 | content: "\f3af"; } 2018 | 2019 | .fa-hackerrank:before { 2020 | content: "\f5f7"; } 2021 | 2022 | .fa-hamburger:before { 2023 | content: "\f805"; } 2024 | 2025 | .fa-hammer:before { 2026 | content: "\f6e3"; } 2027 | 2028 | .fa-hamsa:before { 2029 | content: "\f665"; } 2030 | 2031 | .fa-hand-holding:before { 2032 | content: "\f4bd"; } 2033 | 2034 | .fa-hand-holding-heart:before { 2035 | content: "\f4be"; } 2036 | 2037 | .fa-hand-holding-medical:before { 2038 | content: "\f95c"; } 2039 | 2040 | .fa-hand-holding-usd:before { 2041 | content: "\f4c0"; } 2042 | 2043 | .fa-hand-holding-water:before { 2044 | content: "\f4c1"; } 2045 | 2046 | .fa-hand-lizard:before { 2047 | content: "\f258"; } 2048 | 2049 | .fa-hand-middle-finger:before { 2050 | content: "\f806"; } 2051 | 2052 | .fa-hand-paper:before { 2053 | content: "\f256"; } 2054 | 2055 | .fa-hand-peace:before { 2056 | content: "\f25b"; } 2057 | 2058 | .fa-hand-point-down:before { 2059 | content: "\f0a7"; } 2060 | 2061 | .fa-hand-point-left:before { 2062 | content: "\f0a5"; } 2063 | 2064 | .fa-hand-point-right:before { 2065 | content: "\f0a4"; } 2066 | 2067 | .fa-hand-point-up:before { 2068 | content: "\f0a6"; } 2069 | 2070 | .fa-hand-pointer:before { 2071 | content: "\f25a"; } 2072 | 2073 | .fa-hand-rock:before { 2074 | content: "\f255"; } 2075 | 2076 | .fa-hand-scissors:before { 2077 | content: "\f257"; } 2078 | 2079 | .fa-hand-sparkles:before { 2080 | content: "\f95d"; } 2081 | 2082 | .fa-hand-spock:before { 2083 | content: "\f259"; } 2084 | 2085 | .fa-hands:before { 2086 | content: "\f4c2"; } 2087 | 2088 | .fa-hands-helping:before { 2089 | content: "\f4c4"; } 2090 | 2091 | .fa-hands-wash:before { 2092 | content: "\f95e"; } 2093 | 2094 | .fa-handshake:before { 2095 | content: "\f2b5"; } 2096 | 2097 | .fa-handshake-alt-slash:before { 2098 | content: "\f95f"; } 2099 | 2100 | .fa-handshake-slash:before { 2101 | content: "\f960"; } 2102 | 2103 | .fa-hanukiah:before { 2104 | content: "\f6e6"; } 2105 | 2106 | .fa-hard-hat:before { 2107 | content: "\f807"; } 2108 | 2109 | .fa-hashtag:before { 2110 | content: "\f292"; } 2111 | 2112 | .fa-hat-cowboy:before { 2113 | content: "\f8c0"; } 2114 | 2115 | .fa-hat-cowboy-side:before { 2116 | content: "\f8c1"; } 2117 | 2118 | .fa-hat-wizard:before { 2119 | content: "\f6e8"; } 2120 | 2121 | .fa-hdd:before { 2122 | content: "\f0a0"; } 2123 | 2124 | .fa-head-side-cough:before { 2125 | content: "\f961"; } 2126 | 2127 | .fa-head-side-cough-slash:before { 2128 | content: "\f962"; } 2129 | 2130 | .fa-head-side-mask:before { 2131 | content: "\f963"; } 2132 | 2133 | .fa-head-side-virus:before { 2134 | content: "\f964"; } 2135 | 2136 | .fa-heading:before { 2137 | content: "\f1dc"; } 2138 | 2139 | .fa-headphones:before { 2140 | content: "\f025"; } 2141 | 2142 | .fa-headphones-alt:before { 2143 | content: "\f58f"; } 2144 | 2145 | .fa-headset:before { 2146 | content: "\f590"; } 2147 | 2148 | .fa-heart:before { 2149 | content: "\f004"; } 2150 | 2151 | .fa-heart-broken:before { 2152 | content: "\f7a9"; } 2153 | 2154 | .fa-heartbeat:before { 2155 | content: "\f21e"; } 2156 | 2157 | .fa-helicopter:before { 2158 | content: "\f533"; } 2159 | 2160 | .fa-highlighter:before { 2161 | content: "\f591"; } 2162 | 2163 | .fa-hiking:before { 2164 | content: "\f6ec"; } 2165 | 2166 | .fa-hippo:before { 2167 | content: "\f6ed"; } 2168 | 2169 | .fa-hips:before { 2170 | content: "\f452"; } 2171 | 2172 | .fa-hire-a-helper:before { 2173 | content: "\f3b0"; } 2174 | 2175 | .fa-history:before { 2176 | content: "\f1da"; } 2177 | 2178 | .fa-hockey-puck:before { 2179 | content: "\f453"; } 2180 | 2181 | .fa-holly-berry:before { 2182 | content: "\f7aa"; } 2183 | 2184 | .fa-home:before { 2185 | content: "\f015"; } 2186 | 2187 | .fa-hooli:before { 2188 | content: "\f427"; } 2189 | 2190 | .fa-hornbill:before { 2191 | content: "\f592"; } 2192 | 2193 | .fa-horse:before { 2194 | content: "\f6f0"; } 2195 | 2196 | .fa-horse-head:before { 2197 | content: "\f7ab"; } 2198 | 2199 | .fa-hospital:before { 2200 | content: "\f0f8"; } 2201 | 2202 | .fa-hospital-alt:before { 2203 | content: "\f47d"; } 2204 | 2205 | .fa-hospital-symbol:before { 2206 | content: "\f47e"; } 2207 | 2208 | .fa-hospital-user:before { 2209 | content: "\f80d"; } 2210 | 2211 | .fa-hot-tub:before { 2212 | content: "\f593"; } 2213 | 2214 | .fa-hotdog:before { 2215 | content: "\f80f"; } 2216 | 2217 | .fa-hotel:before { 2218 | content: "\f594"; } 2219 | 2220 | .fa-hotjar:before { 2221 | content: "\f3b1"; } 2222 | 2223 | .fa-hourglass:before { 2224 | content: "\f254"; } 2225 | 2226 | .fa-hourglass-end:before { 2227 | content: "\f253"; } 2228 | 2229 | .fa-hourglass-half:before { 2230 | content: "\f252"; } 2231 | 2232 | .fa-hourglass-start:before { 2233 | content: "\f251"; } 2234 | 2235 | .fa-house-damage:before { 2236 | content: "\f6f1"; } 2237 | 2238 | .fa-house-user:before { 2239 | content: "\f965"; } 2240 | 2241 | .fa-houzz:before { 2242 | content: "\f27c"; } 2243 | 2244 | .fa-hryvnia:before { 2245 | content: "\f6f2"; } 2246 | 2247 | .fa-html5:before { 2248 | content: "\f13b"; } 2249 | 2250 | .fa-hubspot:before { 2251 | content: "\f3b2"; } 2252 | 2253 | .fa-i-cursor:before { 2254 | content: "\f246"; } 2255 | 2256 | .fa-ice-cream:before { 2257 | content: "\f810"; } 2258 | 2259 | .fa-icicles:before { 2260 | content: "\f7ad"; } 2261 | 2262 | .fa-icons:before { 2263 | content: "\f86d"; } 2264 | 2265 | .fa-id-badge:before { 2266 | content: "\f2c1"; } 2267 | 2268 | .fa-id-card:before { 2269 | content: "\f2c2"; } 2270 | 2271 | .fa-id-card-alt:before { 2272 | content: "\f47f"; } 2273 | 2274 | .fa-ideal:before { 2275 | content: "\f913"; } 2276 | 2277 | .fa-igloo:before { 2278 | content: "\f7ae"; } 2279 | 2280 | .fa-image:before { 2281 | content: "\f03e"; } 2282 | 2283 | .fa-images:before { 2284 | content: "\f302"; } 2285 | 2286 | .fa-imdb:before { 2287 | content: "\f2d8"; } 2288 | 2289 | .fa-inbox:before { 2290 | content: "\f01c"; } 2291 | 2292 | .fa-indent:before { 2293 | content: "\f03c"; } 2294 | 2295 | .fa-industry:before { 2296 | content: "\f275"; } 2297 | 2298 | .fa-infinity:before { 2299 | content: "\f534"; } 2300 | 2301 | .fa-info:before { 2302 | content: "\f129"; } 2303 | 2304 | .fa-info-circle:before { 2305 | content: "\f05a"; } 2306 | 2307 | .fa-instagram:before { 2308 | content: "\f16d"; } 2309 | 2310 | .fa-instagram-square:before { 2311 | content: "\f955"; } 2312 | 2313 | .fa-intercom:before { 2314 | content: "\f7af"; } 2315 | 2316 | .fa-internet-explorer:before { 2317 | content: "\f26b"; } 2318 | 2319 | .fa-invision:before { 2320 | content: "\f7b0"; } 2321 | 2322 | .fa-ioxhost:before { 2323 | content: "\f208"; } 2324 | 2325 | .fa-italic:before { 2326 | content: "\f033"; } 2327 | 2328 | .fa-itch-io:before { 2329 | content: "\f83a"; } 2330 | 2331 | .fa-itunes:before { 2332 | content: "\f3b4"; } 2333 | 2334 | .fa-itunes-note:before { 2335 | content: "\f3b5"; } 2336 | 2337 | .fa-java:before { 2338 | content: "\f4e4"; } 2339 | 2340 | .fa-jedi:before { 2341 | content: "\f669"; } 2342 | 2343 | .fa-jedi-order:before { 2344 | content: "\f50e"; } 2345 | 2346 | .fa-jenkins:before { 2347 | content: "\f3b6"; } 2348 | 2349 | .fa-jira:before { 2350 | content: "\f7b1"; } 2351 | 2352 | .fa-joget:before { 2353 | content: "\f3b7"; } 2354 | 2355 | .fa-joint:before { 2356 | content: "\f595"; } 2357 | 2358 | .fa-joomla:before { 2359 | content: "\f1aa"; } 2360 | 2361 | .fa-journal-whills:before { 2362 | content: "\f66a"; } 2363 | 2364 | .fa-js:before { 2365 | content: "\f3b8"; } 2366 | 2367 | .fa-js-square:before { 2368 | content: "\f3b9"; } 2369 | 2370 | .fa-jsfiddle:before { 2371 | content: "\f1cc"; } 2372 | 2373 | .fa-kaaba:before { 2374 | content: "\f66b"; } 2375 | 2376 | .fa-kaggle:before { 2377 | content: "\f5fa"; } 2378 | 2379 | .fa-key:before { 2380 | content: "\f084"; } 2381 | 2382 | .fa-keybase:before { 2383 | content: "\f4f5"; } 2384 | 2385 | .fa-keyboard:before { 2386 | content: "\f11c"; } 2387 | 2388 | .fa-keycdn:before { 2389 | content: "\f3ba"; } 2390 | 2391 | .fa-khanda:before { 2392 | content: "\f66d"; } 2393 | 2394 | .fa-kickstarter:before { 2395 | content: "\f3bb"; } 2396 | 2397 | .fa-kickstarter-k:before { 2398 | content: "\f3bc"; } 2399 | 2400 | .fa-kiss:before { 2401 | content: "\f596"; } 2402 | 2403 | .fa-kiss-beam:before { 2404 | content: "\f597"; } 2405 | 2406 | .fa-kiss-wink-heart:before { 2407 | content: "\f598"; } 2408 | 2409 | .fa-kiwi-bird:before { 2410 | content: "\f535"; } 2411 | 2412 | .fa-korvue:before { 2413 | content: "\f42f"; } 2414 | 2415 | .fa-landmark:before { 2416 | content: "\f66f"; } 2417 | 2418 | .fa-language:before { 2419 | content: "\f1ab"; } 2420 | 2421 | .fa-laptop:before { 2422 | content: "\f109"; } 2423 | 2424 | .fa-laptop-code:before { 2425 | content: "\f5fc"; } 2426 | 2427 | .fa-laptop-house:before { 2428 | content: "\f966"; } 2429 | 2430 | .fa-laptop-medical:before { 2431 | content: "\f812"; } 2432 | 2433 | .fa-laravel:before { 2434 | content: "\f3bd"; } 2435 | 2436 | .fa-lastfm:before { 2437 | content: "\f202"; } 2438 | 2439 | .fa-lastfm-square:before { 2440 | content: "\f203"; } 2441 | 2442 | .fa-laugh:before { 2443 | content: "\f599"; } 2444 | 2445 | .fa-laugh-beam:before { 2446 | content: "\f59a"; } 2447 | 2448 | .fa-laugh-squint:before { 2449 | content: "\f59b"; } 2450 | 2451 | .fa-laugh-wink:before { 2452 | content: "\f59c"; } 2453 | 2454 | .fa-layer-group:before { 2455 | content: "\f5fd"; } 2456 | 2457 | .fa-leaf:before { 2458 | content: "\f06c"; } 2459 | 2460 | .fa-leanpub:before { 2461 | content: "\f212"; } 2462 | 2463 | .fa-lemon:before { 2464 | content: "\f094"; } 2465 | 2466 | .fa-less:before { 2467 | content: "\f41d"; } 2468 | 2469 | .fa-less-than:before { 2470 | content: "\f536"; } 2471 | 2472 | .fa-less-than-equal:before { 2473 | content: "\f537"; } 2474 | 2475 | .fa-level-down-alt:before { 2476 | content: "\f3be"; } 2477 | 2478 | .fa-level-up-alt:before { 2479 | content: "\f3bf"; } 2480 | 2481 | .fa-life-ring:before { 2482 | content: "\f1cd"; } 2483 | 2484 | .fa-lightbulb:before { 2485 | content: "\f0eb"; } 2486 | 2487 | .fa-line:before { 2488 | content: "\f3c0"; } 2489 | 2490 | .fa-link:before { 2491 | content: "\f0c1"; } 2492 | 2493 | .fa-linkedin:before { 2494 | content: "\f08c"; } 2495 | 2496 | .fa-linkedin-in:before { 2497 | content: "\f0e1"; } 2498 | 2499 | .fa-linode:before { 2500 | content: "\f2b8"; } 2501 | 2502 | .fa-linux:before { 2503 | content: "\f17c"; } 2504 | 2505 | .fa-lira-sign:before { 2506 | content: "\f195"; } 2507 | 2508 | .fa-list:before { 2509 | content: "\f03a"; } 2510 | 2511 | .fa-list-alt:before { 2512 | content: "\f022"; } 2513 | 2514 | .fa-list-ol:before { 2515 | content: "\f0cb"; } 2516 | 2517 | .fa-list-ul:before { 2518 | content: "\f0ca"; } 2519 | 2520 | .fa-location-arrow:before { 2521 | content: "\f124"; } 2522 | 2523 | .fa-lock:before { 2524 | content: "\f023"; } 2525 | 2526 | .fa-lock-open:before { 2527 | content: "\f3c1"; } 2528 | 2529 | .fa-long-arrow-alt-down:before { 2530 | content: "\f309"; } 2531 | 2532 | .fa-long-arrow-alt-left:before { 2533 | content: "\f30a"; } 2534 | 2535 | .fa-long-arrow-alt-right:before { 2536 | content: "\f30b"; } 2537 | 2538 | .fa-long-arrow-alt-up:before { 2539 | content: "\f30c"; } 2540 | 2541 | .fa-low-vision:before { 2542 | content: "\f2a8"; } 2543 | 2544 | .fa-luggage-cart:before { 2545 | content: "\f59d"; } 2546 | 2547 | .fa-lungs:before { 2548 | content: "\f604"; } 2549 | 2550 | .fa-lungs-virus:before { 2551 | content: "\f967"; } 2552 | 2553 | .fa-lyft:before { 2554 | content: "\f3c3"; } 2555 | 2556 | .fa-magento:before { 2557 | content: "\f3c4"; } 2558 | 2559 | .fa-magic:before { 2560 | content: "\f0d0"; } 2561 | 2562 | .fa-magnet:before { 2563 | content: "\f076"; } 2564 | 2565 | .fa-mail-bulk:before { 2566 | content: "\f674"; } 2567 | 2568 | .fa-mailchimp:before { 2569 | content: "\f59e"; } 2570 | 2571 | .fa-male:before { 2572 | content: "\f183"; } 2573 | 2574 | .fa-mandalorian:before { 2575 | content: "\f50f"; } 2576 | 2577 | .fa-map:before { 2578 | content: "\f279"; } 2579 | 2580 | .fa-map-marked:before { 2581 | content: "\f59f"; } 2582 | 2583 | .fa-map-marked-alt:before { 2584 | content: "\f5a0"; } 2585 | 2586 | .fa-map-marker:before { 2587 | content: "\f041"; } 2588 | 2589 | .fa-map-marker-alt:before { 2590 | content: "\f3c5"; } 2591 | 2592 | .fa-map-pin:before { 2593 | content: "\f276"; } 2594 | 2595 | .fa-map-signs:before { 2596 | content: "\f277"; } 2597 | 2598 | .fa-markdown:before { 2599 | content: "\f60f"; } 2600 | 2601 | .fa-marker:before { 2602 | content: "\f5a1"; } 2603 | 2604 | .fa-mars:before { 2605 | content: "\f222"; } 2606 | 2607 | .fa-mars-double:before { 2608 | content: "\f227"; } 2609 | 2610 | .fa-mars-stroke:before { 2611 | content: "\f229"; } 2612 | 2613 | .fa-mars-stroke-h:before { 2614 | content: "\f22b"; } 2615 | 2616 | .fa-mars-stroke-v:before { 2617 | content: "\f22a"; } 2618 | 2619 | .fa-mask:before { 2620 | content: "\f6fa"; } 2621 | 2622 | .fa-mastodon:before { 2623 | content: "\f4f6"; } 2624 | 2625 | .fa-maxcdn:before { 2626 | content: "\f136"; } 2627 | 2628 | .fa-mdb:before { 2629 | content: "\f8ca"; } 2630 | 2631 | .fa-medal:before { 2632 | content: "\f5a2"; } 2633 | 2634 | .fa-medapps:before { 2635 | content: "\f3c6"; } 2636 | 2637 | .fa-medium:before { 2638 | content: "\f23a"; } 2639 | 2640 | .fa-medium-m:before { 2641 | content: "\f3c7"; } 2642 | 2643 | .fa-medkit:before { 2644 | content: "\f0fa"; } 2645 | 2646 | .fa-medrt:before { 2647 | content: "\f3c8"; } 2648 | 2649 | .fa-meetup:before { 2650 | content: "\f2e0"; } 2651 | 2652 | .fa-megaport:before { 2653 | content: "\f5a3"; } 2654 | 2655 | .fa-meh:before { 2656 | content: "\f11a"; } 2657 | 2658 | .fa-meh-blank:before { 2659 | content: "\f5a4"; } 2660 | 2661 | .fa-meh-rolling-eyes:before { 2662 | content: "\f5a5"; } 2663 | 2664 | .fa-memory:before { 2665 | content: "\f538"; } 2666 | 2667 | .fa-mendeley:before { 2668 | content: "\f7b3"; } 2669 | 2670 | .fa-menorah:before { 2671 | content: "\f676"; } 2672 | 2673 | .fa-mercury:before { 2674 | content: "\f223"; } 2675 | 2676 | .fa-meteor:before { 2677 | content: "\f753"; } 2678 | 2679 | .fa-microblog:before { 2680 | content: "\f91a"; } 2681 | 2682 | .fa-microchip:before { 2683 | content: "\f2db"; } 2684 | 2685 | .fa-microphone:before { 2686 | content: "\f130"; } 2687 | 2688 | .fa-microphone-alt:before { 2689 | content: "\f3c9"; } 2690 | 2691 | .fa-microphone-alt-slash:before { 2692 | content: "\f539"; } 2693 | 2694 | .fa-microphone-slash:before { 2695 | content: "\f131"; } 2696 | 2697 | .fa-microscope:before { 2698 | content: "\f610"; } 2699 | 2700 | .fa-microsoft:before { 2701 | content: "\f3ca"; } 2702 | 2703 | .fa-minus:before { 2704 | content: "\f068"; } 2705 | 2706 | .fa-minus-circle:before { 2707 | content: "\f056"; } 2708 | 2709 | .fa-minus-square:before { 2710 | content: "\f146"; } 2711 | 2712 | .fa-mitten:before { 2713 | content: "\f7b5"; } 2714 | 2715 | .fa-mix:before { 2716 | content: "\f3cb"; } 2717 | 2718 | .fa-mixcloud:before { 2719 | content: "\f289"; } 2720 | 2721 | .fa-mixer:before { 2722 | content: "\f956"; } 2723 | 2724 | .fa-mizuni:before { 2725 | content: "\f3cc"; } 2726 | 2727 | .fa-mobile:before { 2728 | content: "\f10b"; } 2729 | 2730 | .fa-mobile-alt:before { 2731 | content: "\f3cd"; } 2732 | 2733 | .fa-modx:before { 2734 | content: "\f285"; } 2735 | 2736 | .fa-monero:before { 2737 | content: "\f3d0"; } 2738 | 2739 | .fa-money-bill:before { 2740 | content: "\f0d6"; } 2741 | 2742 | .fa-money-bill-alt:before { 2743 | content: "\f3d1"; } 2744 | 2745 | .fa-money-bill-wave:before { 2746 | content: "\f53a"; } 2747 | 2748 | .fa-money-bill-wave-alt:before { 2749 | content: "\f53b"; } 2750 | 2751 | .fa-money-check:before { 2752 | content: "\f53c"; } 2753 | 2754 | .fa-money-check-alt:before { 2755 | content: "\f53d"; } 2756 | 2757 | .fa-monument:before { 2758 | content: "\f5a6"; } 2759 | 2760 | .fa-moon:before { 2761 | content: "\f186"; } 2762 | 2763 | .fa-mortar-pestle:before { 2764 | content: "\f5a7"; } 2765 | 2766 | .fa-mosque:before { 2767 | content: "\f678"; } 2768 | 2769 | .fa-motorcycle:before { 2770 | content: "\f21c"; } 2771 | 2772 | .fa-mountain:before { 2773 | content: "\f6fc"; } 2774 | 2775 | .fa-mouse:before { 2776 | content: "\f8cc"; } 2777 | 2778 | .fa-mouse-pointer:before { 2779 | content: "\f245"; } 2780 | 2781 | .fa-mug-hot:before { 2782 | content: "\f7b6"; } 2783 | 2784 | .fa-music:before { 2785 | content: "\f001"; } 2786 | 2787 | .fa-napster:before { 2788 | content: "\f3d2"; } 2789 | 2790 | .fa-neos:before { 2791 | content: "\f612"; } 2792 | 2793 | .fa-network-wired:before { 2794 | content: "\f6ff"; } 2795 | 2796 | .fa-neuter:before { 2797 | content: "\f22c"; } 2798 | 2799 | .fa-newspaper:before { 2800 | content: "\f1ea"; } 2801 | 2802 | .fa-nimblr:before { 2803 | content: "\f5a8"; } 2804 | 2805 | .fa-node:before { 2806 | content: "\f419"; } 2807 | 2808 | .fa-node-js:before { 2809 | content: "\f3d3"; } 2810 | 2811 | .fa-not-equal:before { 2812 | content: "\f53e"; } 2813 | 2814 | .fa-notes-medical:before { 2815 | content: "\f481"; } 2816 | 2817 | .fa-npm:before { 2818 | content: "\f3d4"; } 2819 | 2820 | .fa-ns8:before { 2821 | content: "\f3d5"; } 2822 | 2823 | .fa-nutritionix:before { 2824 | content: "\f3d6"; } 2825 | 2826 | .fa-object-group:before { 2827 | content: "\f247"; } 2828 | 2829 | .fa-object-ungroup:before { 2830 | content: "\f248"; } 2831 | 2832 | .fa-odnoklassniki:before { 2833 | content: "\f263"; } 2834 | 2835 | .fa-odnoklassniki-square:before { 2836 | content: "\f264"; } 2837 | 2838 | .fa-oil-can:before { 2839 | content: "\f613"; } 2840 | 2841 | .fa-old-republic:before { 2842 | content: "\f510"; } 2843 | 2844 | .fa-om:before { 2845 | content: "\f679"; } 2846 | 2847 | .fa-opencart:before { 2848 | content: "\f23d"; } 2849 | 2850 | .fa-openid:before { 2851 | content: "\f19b"; } 2852 | 2853 | .fa-opera:before { 2854 | content: "\f26a"; } 2855 | 2856 | .fa-optin-monster:before { 2857 | content: "\f23c"; } 2858 | 2859 | .fa-orcid:before { 2860 | content: "\f8d2"; } 2861 | 2862 | .fa-osi:before { 2863 | content: "\f41a"; } 2864 | 2865 | .fa-otter:before { 2866 | content: "\f700"; } 2867 | 2868 | .fa-outdent:before { 2869 | content: "\f03b"; } 2870 | 2871 | .fa-page4:before { 2872 | content: "\f3d7"; } 2873 | 2874 | .fa-pagelines:before { 2875 | content: "\f18c"; } 2876 | 2877 | .fa-pager:before { 2878 | content: "\f815"; } 2879 | 2880 | .fa-paint-brush:before { 2881 | content: "\f1fc"; } 2882 | 2883 | .fa-paint-roller:before { 2884 | content: "\f5aa"; } 2885 | 2886 | .fa-palette:before { 2887 | content: "\f53f"; } 2888 | 2889 | .fa-palfed:before { 2890 | content: "\f3d8"; } 2891 | 2892 | .fa-pallet:before { 2893 | content: "\f482"; } 2894 | 2895 | .fa-paper-plane:before { 2896 | content: "\f1d8"; } 2897 | 2898 | .fa-paperclip:before { 2899 | content: "\f0c6"; } 2900 | 2901 | .fa-parachute-box:before { 2902 | content: "\f4cd"; } 2903 | 2904 | .fa-paragraph:before { 2905 | content: "\f1dd"; } 2906 | 2907 | .fa-parking:before { 2908 | content: "\f540"; } 2909 | 2910 | .fa-passport:before { 2911 | content: "\f5ab"; } 2912 | 2913 | .fa-pastafarianism:before { 2914 | content: "\f67b"; } 2915 | 2916 | .fa-paste:before { 2917 | content: "\f0ea"; } 2918 | 2919 | .fa-patreon:before { 2920 | content: "\f3d9"; } 2921 | 2922 | .fa-pause:before { 2923 | content: "\f04c"; } 2924 | 2925 | .fa-pause-circle:before { 2926 | content: "\f28b"; } 2927 | 2928 | .fa-paw:before { 2929 | content: "\f1b0"; } 2930 | 2931 | .fa-paypal:before { 2932 | content: "\f1ed"; } 2933 | 2934 | .fa-peace:before { 2935 | content: "\f67c"; } 2936 | 2937 | .fa-pen:before { 2938 | content: "\f304"; } 2939 | 2940 | .fa-pen-alt:before { 2941 | content: "\f305"; } 2942 | 2943 | .fa-pen-fancy:before { 2944 | content: "\f5ac"; } 2945 | 2946 | .fa-pen-nib:before { 2947 | content: "\f5ad"; } 2948 | 2949 | .fa-pen-square:before { 2950 | content: "\f14b"; } 2951 | 2952 | .fa-pencil-alt:before { 2953 | content: "\f303"; } 2954 | 2955 | .fa-pencil-ruler:before { 2956 | content: "\f5ae"; } 2957 | 2958 | .fa-penny-arcade:before { 2959 | content: "\f704"; } 2960 | 2961 | .fa-people-arrows:before { 2962 | content: "\f968"; } 2963 | 2964 | .fa-people-carry:before { 2965 | content: "\f4ce"; } 2966 | 2967 | .fa-pepper-hot:before { 2968 | content: "\f816"; } 2969 | 2970 | .fa-percent:before { 2971 | content: "\f295"; } 2972 | 2973 | .fa-percentage:before { 2974 | content: "\f541"; } 2975 | 2976 | .fa-periscope:before { 2977 | content: "\f3da"; } 2978 | 2979 | .fa-person-booth:before { 2980 | content: "\f756"; } 2981 | 2982 | .fa-phabricator:before { 2983 | content: "\f3db"; } 2984 | 2985 | .fa-phoenix-framework:before { 2986 | content: "\f3dc"; } 2987 | 2988 | .fa-phoenix-squadron:before { 2989 | content: "\f511"; } 2990 | 2991 | .fa-phone:before { 2992 | content: "\f095"; } 2993 | 2994 | .fa-phone-alt:before { 2995 | content: "\f879"; } 2996 | 2997 | .fa-phone-slash:before { 2998 | content: "\f3dd"; } 2999 | 3000 | .fa-phone-square:before { 3001 | content: "\f098"; } 3002 | 3003 | .fa-phone-square-alt:before { 3004 | content: "\f87b"; } 3005 | 3006 | .fa-phone-volume:before { 3007 | content: "\f2a0"; } 3008 | 3009 | .fa-photo-video:before { 3010 | content: "\f87c"; } 3011 | 3012 | .fa-php:before { 3013 | content: "\f457"; } 3014 | 3015 | .fa-pied-piper:before { 3016 | content: "\f2ae"; } 3017 | 3018 | .fa-pied-piper-alt:before { 3019 | content: "\f1a8"; } 3020 | 3021 | .fa-pied-piper-hat:before { 3022 | content: "\f4e5"; } 3023 | 3024 | .fa-pied-piper-pp:before { 3025 | content: "\f1a7"; } 3026 | 3027 | .fa-pied-piper-square:before { 3028 | content: "\f91e"; } 3029 | 3030 | .fa-piggy-bank:before { 3031 | content: "\f4d3"; } 3032 | 3033 | .fa-pills:before { 3034 | content: "\f484"; } 3035 | 3036 | .fa-pinterest:before { 3037 | content: "\f0d2"; } 3038 | 3039 | .fa-pinterest-p:before { 3040 | content: "\f231"; } 3041 | 3042 | .fa-pinterest-square:before { 3043 | content: "\f0d3"; } 3044 | 3045 | .fa-pizza-slice:before { 3046 | content: "\f818"; } 3047 | 3048 | .fa-place-of-worship:before { 3049 | content: "\f67f"; } 3050 | 3051 | .fa-plane:before { 3052 | content: "\f072"; } 3053 | 3054 | .fa-plane-arrival:before { 3055 | content: "\f5af"; } 3056 | 3057 | .fa-plane-departure:before { 3058 | content: "\f5b0"; } 3059 | 3060 | .fa-plane-slash:before { 3061 | content: "\f969"; } 3062 | 3063 | .fa-play:before { 3064 | content: "\f04b"; } 3065 | 3066 | .fa-play-circle:before { 3067 | content: "\f144"; } 3068 | 3069 | .fa-playstation:before { 3070 | content: "\f3df"; } 3071 | 3072 | .fa-plug:before { 3073 | content: "\f1e6"; } 3074 | 3075 | .fa-plus:before { 3076 | content: "\f067"; } 3077 | 3078 | .fa-plus-circle:before { 3079 | content: "\f055"; } 3080 | 3081 | .fa-plus-square:before { 3082 | content: "\f0fe"; } 3083 | 3084 | .fa-podcast:before { 3085 | content: "\f2ce"; } 3086 | 3087 | .fa-poll:before { 3088 | content: "\f681"; } 3089 | 3090 | .fa-poll-h:before { 3091 | content: "\f682"; } 3092 | 3093 | .fa-poo:before { 3094 | content: "\f2fe"; } 3095 | 3096 | .fa-poo-storm:before { 3097 | content: "\f75a"; } 3098 | 3099 | .fa-poop:before { 3100 | content: "\f619"; } 3101 | 3102 | .fa-portrait:before { 3103 | content: "\f3e0"; } 3104 | 3105 | .fa-pound-sign:before { 3106 | content: "\f154"; } 3107 | 3108 | .fa-power-off:before { 3109 | content: "\f011"; } 3110 | 3111 | .fa-pray:before { 3112 | content: "\f683"; } 3113 | 3114 | .fa-praying-hands:before { 3115 | content: "\f684"; } 3116 | 3117 | .fa-prescription:before { 3118 | content: "\f5b1"; } 3119 | 3120 | .fa-prescription-bottle:before { 3121 | content: "\f485"; } 3122 | 3123 | .fa-prescription-bottle-alt:before { 3124 | content: "\f486"; } 3125 | 3126 | .fa-print:before { 3127 | content: "\f02f"; } 3128 | 3129 | .fa-procedures:before { 3130 | content: "\f487"; } 3131 | 3132 | .fa-product-hunt:before { 3133 | content: "\f288"; } 3134 | 3135 | .fa-project-diagram:before { 3136 | content: "\f542"; } 3137 | 3138 | .fa-pump-medical:before { 3139 | content: "\f96a"; } 3140 | 3141 | .fa-pump-soap:before { 3142 | content: "\f96b"; } 3143 | 3144 | .fa-pushed:before { 3145 | content: "\f3e1"; } 3146 | 3147 | .fa-puzzle-piece:before { 3148 | content: "\f12e"; } 3149 | 3150 | .fa-python:before { 3151 | content: "\f3e2"; } 3152 | 3153 | .fa-qq:before { 3154 | content: "\f1d6"; } 3155 | 3156 | .fa-qrcode:before { 3157 | content: "\f029"; } 3158 | 3159 | .fa-question:before { 3160 | content: "\f128"; } 3161 | 3162 | .fa-question-circle:before { 3163 | content: "\f059"; } 3164 | 3165 | .fa-quidditch:before { 3166 | content: "\f458"; } 3167 | 3168 | .fa-quinscape:before { 3169 | content: "\f459"; } 3170 | 3171 | .fa-quora:before { 3172 | content: "\f2c4"; } 3173 | 3174 | .fa-quote-left:before { 3175 | content: "\f10d"; } 3176 | 3177 | .fa-quote-right:before { 3178 | content: "\f10e"; } 3179 | 3180 | .fa-quran:before { 3181 | content: "\f687"; } 3182 | 3183 | .fa-r-project:before { 3184 | content: "\f4f7"; } 3185 | 3186 | .fa-radiation:before { 3187 | content: "\f7b9"; } 3188 | 3189 | .fa-radiation-alt:before { 3190 | content: "\f7ba"; } 3191 | 3192 | .fa-rainbow:before { 3193 | content: "\f75b"; } 3194 | 3195 | .fa-random:before { 3196 | content: "\f074"; } 3197 | 3198 | .fa-raspberry-pi:before { 3199 | content: "\f7bb"; } 3200 | 3201 | .fa-ravelry:before { 3202 | content: "\f2d9"; } 3203 | 3204 | .fa-react:before { 3205 | content: "\f41b"; } 3206 | 3207 | .fa-reacteurope:before { 3208 | content: "\f75d"; } 3209 | 3210 | .fa-readme:before { 3211 | content: "\f4d5"; } 3212 | 3213 | .fa-rebel:before { 3214 | content: "\f1d0"; } 3215 | 3216 | .fa-receipt:before { 3217 | content: "\f543"; } 3218 | 3219 | .fa-record-vinyl:before { 3220 | content: "\f8d9"; } 3221 | 3222 | .fa-recycle:before { 3223 | content: "\f1b8"; } 3224 | 3225 | .fa-red-river:before { 3226 | content: "\f3e3"; } 3227 | 3228 | .fa-reddit:before { 3229 | content: "\f1a1"; } 3230 | 3231 | .fa-reddit-alien:before { 3232 | content: "\f281"; } 3233 | 3234 | .fa-reddit-square:before { 3235 | content: "\f1a2"; } 3236 | 3237 | .fa-redhat:before { 3238 | content: "\f7bc"; } 3239 | 3240 | .fa-redo:before { 3241 | content: "\f01e"; } 3242 | 3243 | .fa-redo-alt:before { 3244 | content: "\f2f9"; } 3245 | 3246 | .fa-registered:before { 3247 | content: "\f25d"; } 3248 | 3249 | .fa-remove-format:before { 3250 | content: "\f87d"; } 3251 | 3252 | .fa-renren:before { 3253 | content: "\f18b"; } 3254 | 3255 | .fa-reply:before { 3256 | content: "\f3e5"; } 3257 | 3258 | .fa-reply-all:before { 3259 | content: "\f122"; } 3260 | 3261 | .fa-replyd:before { 3262 | content: "\f3e6"; } 3263 | 3264 | .fa-republican:before { 3265 | content: "\f75e"; } 3266 | 3267 | .fa-researchgate:before { 3268 | content: "\f4f8"; } 3269 | 3270 | .fa-resolving:before { 3271 | content: "\f3e7"; } 3272 | 3273 | .fa-restroom:before { 3274 | content: "\f7bd"; } 3275 | 3276 | .fa-retweet:before { 3277 | content: "\f079"; } 3278 | 3279 | .fa-rev:before { 3280 | content: "\f5b2"; } 3281 | 3282 | .fa-ribbon:before { 3283 | content: "\f4d6"; } 3284 | 3285 | .fa-ring:before { 3286 | content: "\f70b"; } 3287 | 3288 | .fa-road:before { 3289 | content: "\f018"; } 3290 | 3291 | .fa-robot:before { 3292 | content: "\f544"; } 3293 | 3294 | .fa-rocket:before { 3295 | content: "\f135"; } 3296 | 3297 | .fa-rocketchat:before { 3298 | content: "\f3e8"; } 3299 | 3300 | .fa-rockrms:before { 3301 | content: "\f3e9"; } 3302 | 3303 | .fa-route:before { 3304 | content: "\f4d7"; } 3305 | 3306 | .fa-rss:before { 3307 | content: "\f09e"; } 3308 | 3309 | .fa-rss-square:before { 3310 | content: "\f143"; } 3311 | 3312 | .fa-ruble-sign:before { 3313 | content: "\f158"; } 3314 | 3315 | .fa-ruler:before { 3316 | content: "\f545"; } 3317 | 3318 | .fa-ruler-combined:before { 3319 | content: "\f546"; } 3320 | 3321 | .fa-ruler-horizontal:before { 3322 | content: "\f547"; } 3323 | 3324 | .fa-ruler-vertical:before { 3325 | content: "\f548"; } 3326 | 3327 | .fa-running:before { 3328 | content: "\f70c"; } 3329 | 3330 | .fa-rupee-sign:before { 3331 | content: "\f156"; } 3332 | 3333 | .fa-rust:before { 3334 | content: "\f97a"; } 3335 | 3336 | .fa-sad-cry:before { 3337 | content: "\f5b3"; } 3338 | 3339 | .fa-sad-tear:before { 3340 | content: "\f5b4"; } 3341 | 3342 | .fa-safari:before { 3343 | content: "\f267"; } 3344 | 3345 | .fa-salesforce:before { 3346 | content: "\f83b"; } 3347 | 3348 | .fa-sass:before { 3349 | content: "\f41e"; } 3350 | 3351 | .fa-satellite:before { 3352 | content: "\f7bf"; } 3353 | 3354 | .fa-satellite-dish:before { 3355 | content: "\f7c0"; } 3356 | 3357 | .fa-save:before { 3358 | content: "\f0c7"; } 3359 | 3360 | .fa-schlix:before { 3361 | content: "\f3ea"; } 3362 | 3363 | .fa-school:before { 3364 | content: "\f549"; } 3365 | 3366 | .fa-screwdriver:before { 3367 | content: "\f54a"; } 3368 | 3369 | .fa-scribd:before { 3370 | content: "\f28a"; } 3371 | 3372 | .fa-scroll:before { 3373 | content: "\f70e"; } 3374 | 3375 | .fa-sd-card:before { 3376 | content: "\f7c2"; } 3377 | 3378 | .fa-search:before { 3379 | content: "\f002"; } 3380 | 3381 | .fa-search-dollar:before { 3382 | content: "\f688"; } 3383 | 3384 | .fa-search-location:before { 3385 | content: "\f689"; } 3386 | 3387 | .fa-search-minus:before { 3388 | content: "\f010"; } 3389 | 3390 | .fa-search-plus:before { 3391 | content: "\f00e"; } 3392 | 3393 | .fa-searchengin:before { 3394 | content: "\f3eb"; } 3395 | 3396 | .fa-seedling:before { 3397 | content: "\f4d8"; } 3398 | 3399 | .fa-sellcast:before { 3400 | content: "\f2da"; } 3401 | 3402 | .fa-sellsy:before { 3403 | content: "\f213"; } 3404 | 3405 | .fa-server:before { 3406 | content: "\f233"; } 3407 | 3408 | .fa-servicestack:before { 3409 | content: "\f3ec"; } 3410 | 3411 | .fa-shapes:before { 3412 | content: "\f61f"; } 3413 | 3414 | .fa-share:before { 3415 | content: "\f064"; } 3416 | 3417 | .fa-share-alt:before { 3418 | content: "\f1e0"; } 3419 | 3420 | .fa-share-alt-square:before { 3421 | content: "\f1e1"; } 3422 | 3423 | .fa-share-square:before { 3424 | content: "\f14d"; } 3425 | 3426 | .fa-shekel-sign:before { 3427 | content: "\f20b"; } 3428 | 3429 | .fa-shield-alt:before { 3430 | content: "\f3ed"; } 3431 | 3432 | .fa-shield-virus:before { 3433 | content: "\f96c"; } 3434 | 3435 | .fa-ship:before { 3436 | content: "\f21a"; } 3437 | 3438 | .fa-shipping-fast:before { 3439 | content: "\f48b"; } 3440 | 3441 | .fa-shirtsinbulk:before { 3442 | content: "\f214"; } 3443 | 3444 | .fa-shoe-prints:before { 3445 | content: "\f54b"; } 3446 | 3447 | .fa-shopify:before { 3448 | content: "\f957"; } 3449 | 3450 | .fa-shopping-bag:before { 3451 | content: "\f290"; } 3452 | 3453 | .fa-shopping-basket:before { 3454 | content: "\f291"; } 3455 | 3456 | .fa-shopping-cart:before { 3457 | content: "\f07a"; } 3458 | 3459 | .fa-shopware:before { 3460 | content: "\f5b5"; } 3461 | 3462 | .fa-shower:before { 3463 | content: "\f2cc"; } 3464 | 3465 | .fa-shuttle-van:before { 3466 | content: "\f5b6"; } 3467 | 3468 | .fa-sign:before { 3469 | content: "\f4d9"; } 3470 | 3471 | .fa-sign-in-alt:before { 3472 | content: "\f2f6"; } 3473 | 3474 | .fa-sign-language:before { 3475 | content: "\f2a7"; } 3476 | 3477 | .fa-sign-out-alt:before { 3478 | content: "\f2f5"; } 3479 | 3480 | .fa-signal:before { 3481 | content: "\f012"; } 3482 | 3483 | .fa-signature:before { 3484 | content: "\f5b7"; } 3485 | 3486 | .fa-sim-card:before { 3487 | content: "\f7c4"; } 3488 | 3489 | .fa-simplybuilt:before { 3490 | content: "\f215"; } 3491 | 3492 | .fa-sink:before { 3493 | content: "\f96d"; } 3494 | 3495 | .fa-sistrix:before { 3496 | content: "\f3ee"; } 3497 | 3498 | .fa-sitemap:before { 3499 | content: "\f0e8"; } 3500 | 3501 | .fa-sith:before { 3502 | content: "\f512"; } 3503 | 3504 | .fa-skating:before { 3505 | content: "\f7c5"; } 3506 | 3507 | .fa-sketch:before { 3508 | content: "\f7c6"; } 3509 | 3510 | .fa-skiing:before { 3511 | content: "\f7c9"; } 3512 | 3513 | .fa-skiing-nordic:before { 3514 | content: "\f7ca"; } 3515 | 3516 | .fa-skull:before { 3517 | content: "\f54c"; } 3518 | 3519 | .fa-skull-crossbones:before { 3520 | content: "\f714"; } 3521 | 3522 | .fa-skyatlas:before { 3523 | content: "\f216"; } 3524 | 3525 | .fa-skype:before { 3526 | content: "\f17e"; } 3527 | 3528 | .fa-slack:before { 3529 | content: "\f198"; } 3530 | 3531 | .fa-slack-hash:before { 3532 | content: "\f3ef"; } 3533 | 3534 | .fa-slash:before { 3535 | content: "\f715"; } 3536 | 3537 | .fa-sleigh:before { 3538 | content: "\f7cc"; } 3539 | 3540 | .fa-sliders-h:before { 3541 | content: "\f1de"; } 3542 | 3543 | .fa-slideshare:before { 3544 | content: "\f1e7"; } 3545 | 3546 | .fa-smile:before { 3547 | content: "\f118"; } 3548 | 3549 | .fa-smile-beam:before { 3550 | content: "\f5b8"; } 3551 | 3552 | .fa-smile-wink:before { 3553 | content: "\f4da"; } 3554 | 3555 | .fa-smog:before { 3556 | content: "\f75f"; } 3557 | 3558 | .fa-smoking:before { 3559 | content: "\f48d"; } 3560 | 3561 | .fa-smoking-ban:before { 3562 | content: "\f54d"; } 3563 | 3564 | .fa-sms:before { 3565 | content: "\f7cd"; } 3566 | 3567 | .fa-snapchat:before { 3568 | content: "\f2ab"; } 3569 | 3570 | .fa-snapchat-ghost:before { 3571 | content: "\f2ac"; } 3572 | 3573 | .fa-snapchat-square:before { 3574 | content: "\f2ad"; } 3575 | 3576 | .fa-snowboarding:before { 3577 | content: "\f7ce"; } 3578 | 3579 | .fa-snowflake:before { 3580 | content: "\f2dc"; } 3581 | 3582 | .fa-snowman:before { 3583 | content: "\f7d0"; } 3584 | 3585 | .fa-snowplow:before { 3586 | content: "\f7d2"; } 3587 | 3588 | .fa-soap:before { 3589 | content: "\f96e"; } 3590 | 3591 | .fa-socks:before { 3592 | content: "\f696"; } 3593 | 3594 | .fa-solar-panel:before { 3595 | content: "\f5ba"; } 3596 | 3597 | .fa-sort:before { 3598 | content: "\f0dc"; } 3599 | 3600 | .fa-sort-alpha-down:before { 3601 | content: "\f15d"; } 3602 | 3603 | .fa-sort-alpha-down-alt:before { 3604 | content: "\f881"; } 3605 | 3606 | .fa-sort-alpha-up:before { 3607 | content: "\f15e"; } 3608 | 3609 | .fa-sort-alpha-up-alt:before { 3610 | content: "\f882"; } 3611 | 3612 | .fa-sort-amount-down:before { 3613 | content: "\f160"; } 3614 | 3615 | .fa-sort-amount-down-alt:before { 3616 | content: "\f884"; } 3617 | 3618 | .fa-sort-amount-up:before { 3619 | content: "\f161"; } 3620 | 3621 | .fa-sort-amount-up-alt:before { 3622 | content: "\f885"; } 3623 | 3624 | .fa-sort-down:before { 3625 | content: "\f0dd"; } 3626 | 3627 | .fa-sort-numeric-down:before { 3628 | content: "\f162"; } 3629 | 3630 | .fa-sort-numeric-down-alt:before { 3631 | content: "\f886"; } 3632 | 3633 | .fa-sort-numeric-up:before { 3634 | content: "\f163"; } 3635 | 3636 | .fa-sort-numeric-up-alt:before { 3637 | content: "\f887"; } 3638 | 3639 | .fa-sort-up:before { 3640 | content: "\f0de"; } 3641 | 3642 | .fa-soundcloud:before { 3643 | content: "\f1be"; } 3644 | 3645 | .fa-sourcetree:before { 3646 | content: "\f7d3"; } 3647 | 3648 | .fa-spa:before { 3649 | content: "\f5bb"; } 3650 | 3651 | .fa-space-shuttle:before { 3652 | content: "\f197"; } 3653 | 3654 | .fa-speakap:before { 3655 | content: "\f3f3"; } 3656 | 3657 | .fa-speaker-deck:before { 3658 | content: "\f83c"; } 3659 | 3660 | .fa-spell-check:before { 3661 | content: "\f891"; } 3662 | 3663 | .fa-spider:before { 3664 | content: "\f717"; } 3665 | 3666 | .fa-spinner:before { 3667 | content: "\f110"; } 3668 | 3669 | .fa-splotch:before { 3670 | content: "\f5bc"; } 3671 | 3672 | .fa-spotify:before { 3673 | content: "\f1bc"; } 3674 | 3675 | .fa-spray-can:before { 3676 | content: "\f5bd"; } 3677 | 3678 | .fa-square:before { 3679 | content: "\f0c8"; } 3680 | 3681 | .fa-square-full:before { 3682 | content: "\f45c"; } 3683 | 3684 | .fa-square-root-alt:before { 3685 | content: "\f698"; } 3686 | 3687 | .fa-squarespace:before { 3688 | content: "\f5be"; } 3689 | 3690 | .fa-stack-exchange:before { 3691 | content: "\f18d"; } 3692 | 3693 | .fa-stack-overflow:before { 3694 | content: "\f16c"; } 3695 | 3696 | .fa-stackpath:before { 3697 | content: "\f842"; } 3698 | 3699 | .fa-stamp:before { 3700 | content: "\f5bf"; } 3701 | 3702 | .fa-star:before { 3703 | content: "\f005"; } 3704 | 3705 | .fa-star-and-crescent:before { 3706 | content: "\f699"; } 3707 | 3708 | .fa-star-half:before { 3709 | content: "\f089"; } 3710 | 3711 | .fa-star-half-alt:before { 3712 | content: "\f5c0"; } 3713 | 3714 | .fa-star-of-david:before { 3715 | content: "\f69a"; } 3716 | 3717 | .fa-star-of-life:before { 3718 | content: "\f621"; } 3719 | 3720 | .fa-staylinked:before { 3721 | content: "\f3f5"; } 3722 | 3723 | .fa-steam:before { 3724 | content: "\f1b6"; } 3725 | 3726 | .fa-steam-square:before { 3727 | content: "\f1b7"; } 3728 | 3729 | .fa-steam-symbol:before { 3730 | content: "\f3f6"; } 3731 | 3732 | .fa-step-backward:before { 3733 | content: "\f048"; } 3734 | 3735 | .fa-step-forward:before { 3736 | content: "\f051"; } 3737 | 3738 | .fa-stethoscope:before { 3739 | content: "\f0f1"; } 3740 | 3741 | .fa-sticker-mule:before { 3742 | content: "\f3f7"; } 3743 | 3744 | .fa-sticky-note:before { 3745 | content: "\f249"; } 3746 | 3747 | .fa-stop:before { 3748 | content: "\f04d"; } 3749 | 3750 | .fa-stop-circle:before { 3751 | content: "\f28d"; } 3752 | 3753 | .fa-stopwatch:before { 3754 | content: "\f2f2"; } 3755 | 3756 | .fa-stopwatch-20:before { 3757 | content: "\f96f"; } 3758 | 3759 | .fa-store:before { 3760 | content: "\f54e"; } 3761 | 3762 | .fa-store-alt:before { 3763 | content: "\f54f"; } 3764 | 3765 | .fa-store-alt-slash:before { 3766 | content: "\f970"; } 3767 | 3768 | .fa-store-slash:before { 3769 | content: "\f971"; } 3770 | 3771 | .fa-strava:before { 3772 | content: "\f428"; } 3773 | 3774 | .fa-stream:before { 3775 | content: "\f550"; } 3776 | 3777 | .fa-street-view:before { 3778 | content: "\f21d"; } 3779 | 3780 | .fa-strikethrough:before { 3781 | content: "\f0cc"; } 3782 | 3783 | .fa-stripe:before { 3784 | content: "\f429"; } 3785 | 3786 | .fa-stripe-s:before { 3787 | content: "\f42a"; } 3788 | 3789 | .fa-stroopwafel:before { 3790 | content: "\f551"; } 3791 | 3792 | .fa-studiovinari:before { 3793 | content: "\f3f8"; } 3794 | 3795 | .fa-stumbleupon:before { 3796 | content: "\f1a4"; } 3797 | 3798 | .fa-stumbleupon-circle:before { 3799 | content: "\f1a3"; } 3800 | 3801 | .fa-subscript:before { 3802 | content: "\f12c"; } 3803 | 3804 | .fa-subway:before { 3805 | content: "\f239"; } 3806 | 3807 | .fa-suitcase:before { 3808 | content: "\f0f2"; } 3809 | 3810 | .fa-suitcase-rolling:before { 3811 | content: "\f5c1"; } 3812 | 3813 | .fa-sun:before { 3814 | content: "\f185"; } 3815 | 3816 | .fa-superpowers:before { 3817 | content: "\f2dd"; } 3818 | 3819 | .fa-superscript:before { 3820 | content: "\f12b"; } 3821 | 3822 | .fa-supple:before { 3823 | content: "\f3f9"; } 3824 | 3825 | .fa-surprise:before { 3826 | content: "\f5c2"; } 3827 | 3828 | .fa-suse:before { 3829 | content: "\f7d6"; } 3830 | 3831 | .fa-swatchbook:before { 3832 | content: "\f5c3"; } 3833 | 3834 | .fa-swift:before { 3835 | content: "\f8e1"; } 3836 | 3837 | .fa-swimmer:before { 3838 | content: "\f5c4"; } 3839 | 3840 | .fa-swimming-pool:before { 3841 | content: "\f5c5"; } 3842 | 3843 | .fa-symfony:before { 3844 | content: "\f83d"; } 3845 | 3846 | .fa-synagogue:before { 3847 | content: "\f69b"; } 3848 | 3849 | .fa-sync:before { 3850 | content: "\f021"; } 3851 | 3852 | .fa-sync-alt:before { 3853 | content: "\f2f1"; } 3854 | 3855 | .fa-syringe:before { 3856 | content: "\f48e"; } 3857 | 3858 | .fa-table:before { 3859 | content: "\f0ce"; } 3860 | 3861 | .fa-table-tennis:before { 3862 | content: "\f45d"; } 3863 | 3864 | .fa-tablet:before { 3865 | content: "\f10a"; } 3866 | 3867 | .fa-tablet-alt:before { 3868 | content: "\f3fa"; } 3869 | 3870 | .fa-tablets:before { 3871 | content: "\f490"; } 3872 | 3873 | .fa-tachometer-alt:before { 3874 | content: "\f3fd"; } 3875 | 3876 | .fa-tag:before { 3877 | content: "\f02b"; } 3878 | 3879 | .fa-tags:before { 3880 | content: "\f02c"; } 3881 | 3882 | .fa-tape:before { 3883 | content: "\f4db"; } 3884 | 3885 | .fa-tasks:before { 3886 | content: "\f0ae"; } 3887 | 3888 | .fa-taxi:before { 3889 | content: "\f1ba"; } 3890 | 3891 | .fa-teamspeak:before { 3892 | content: "\f4f9"; } 3893 | 3894 | .fa-teeth:before { 3895 | content: "\f62e"; } 3896 | 3897 | .fa-teeth-open:before { 3898 | content: "\f62f"; } 3899 | 3900 | .fa-telegram:before { 3901 | content: "\f2c6"; } 3902 | 3903 | .fa-telegram-plane:before { 3904 | content: "\f3fe"; } 3905 | 3906 | .fa-temperature-high:before { 3907 | content: "\f769"; } 3908 | 3909 | .fa-temperature-low:before { 3910 | content: "\f76b"; } 3911 | 3912 | .fa-tencent-weibo:before { 3913 | content: "\f1d5"; } 3914 | 3915 | .fa-tenge:before { 3916 | content: "\f7d7"; } 3917 | 3918 | .fa-terminal:before { 3919 | content: "\f120"; } 3920 | 3921 | .fa-text-height:before { 3922 | content: "\f034"; } 3923 | 3924 | .fa-text-width:before { 3925 | content: "\f035"; } 3926 | 3927 | .fa-th:before { 3928 | content: "\f00a"; } 3929 | 3930 | .fa-th-large:before { 3931 | content: "\f009"; } 3932 | 3933 | .fa-th-list:before { 3934 | content: "\f00b"; } 3935 | 3936 | .fa-the-red-yeti:before { 3937 | content: "\f69d"; } 3938 | 3939 | .fa-theater-masks:before { 3940 | content: "\f630"; } 3941 | 3942 | .fa-themeco:before { 3943 | content: "\f5c6"; } 3944 | 3945 | .fa-themeisle:before { 3946 | content: "\f2b2"; } 3947 | 3948 | .fa-thermometer:before { 3949 | content: "\f491"; } 3950 | 3951 | .fa-thermometer-empty:before { 3952 | content: "\f2cb"; } 3953 | 3954 | .fa-thermometer-full:before { 3955 | content: "\f2c7"; } 3956 | 3957 | .fa-thermometer-half:before { 3958 | content: "\f2c9"; } 3959 | 3960 | .fa-thermometer-quarter:before { 3961 | content: "\f2ca"; } 3962 | 3963 | .fa-thermometer-three-quarters:before { 3964 | content: "\f2c8"; } 3965 | 3966 | .fa-think-peaks:before { 3967 | content: "\f731"; } 3968 | 3969 | .fa-thumbs-down:before { 3970 | content: "\f165"; } 3971 | 3972 | .fa-thumbs-up:before { 3973 | content: "\f164"; } 3974 | 3975 | .fa-thumbtack:before { 3976 | content: "\f08d"; } 3977 | 3978 | .fa-ticket-alt:before { 3979 | content: "\f3ff"; } 3980 | 3981 | .fa-tiktok:before { 3982 | content: "\f97b"; } 3983 | 3984 | .fa-times:before { 3985 | content: "\f00d"; } 3986 | 3987 | .fa-times-circle:before { 3988 | content: "\f057"; } 3989 | 3990 | .fa-tint:before { 3991 | content: "\f043"; } 3992 | 3993 | .fa-tint-slash:before { 3994 | content: "\f5c7"; } 3995 | 3996 | .fa-tired:before { 3997 | content: "\f5c8"; } 3998 | 3999 | .fa-toggle-off:before { 4000 | content: "\f204"; } 4001 | 4002 | .fa-toggle-on:before { 4003 | content: "\f205"; } 4004 | 4005 | .fa-toilet:before { 4006 | content: "\f7d8"; } 4007 | 4008 | .fa-toilet-paper:before { 4009 | content: "\f71e"; } 4010 | 4011 | .fa-toilet-paper-slash:before { 4012 | content: "\f972"; } 4013 | 4014 | .fa-toolbox:before { 4015 | content: "\f552"; } 4016 | 4017 | .fa-tools:before { 4018 | content: "\f7d9"; } 4019 | 4020 | .fa-tooth:before { 4021 | content: "\f5c9"; } 4022 | 4023 | .fa-torah:before { 4024 | content: "\f6a0"; } 4025 | 4026 | .fa-torii-gate:before { 4027 | content: "\f6a1"; } 4028 | 4029 | .fa-tractor:before { 4030 | content: "\f722"; } 4031 | 4032 | .fa-trade-federation:before { 4033 | content: "\f513"; } 4034 | 4035 | .fa-trademark:before { 4036 | content: "\f25c"; } 4037 | 4038 | .fa-traffic-light:before { 4039 | content: "\f637"; } 4040 | 4041 | .fa-trailer:before { 4042 | content: "\f941"; } 4043 | 4044 | .fa-train:before { 4045 | content: "\f238"; } 4046 | 4047 | .fa-tram:before { 4048 | content: "\f7da"; } 4049 | 4050 | .fa-transgender:before { 4051 | content: "\f224"; } 4052 | 4053 | .fa-transgender-alt:before { 4054 | content: "\f225"; } 4055 | 4056 | .fa-trash:before { 4057 | content: "\f1f8"; } 4058 | 4059 | .fa-trash-alt:before { 4060 | content: "\f2ed"; } 4061 | 4062 | .fa-trash-restore:before { 4063 | content: "\f829"; } 4064 | 4065 | .fa-trash-restore-alt:before { 4066 | content: "\f82a"; } 4067 | 4068 | .fa-tree:before { 4069 | content: "\f1bb"; } 4070 | 4071 | .fa-trello:before { 4072 | content: "\f181"; } 4073 | 4074 | .fa-tripadvisor:before { 4075 | content: "\f262"; } 4076 | 4077 | .fa-trophy:before { 4078 | content: "\f091"; } 4079 | 4080 | .fa-truck:before { 4081 | content: "\f0d1"; } 4082 | 4083 | .fa-truck-loading:before { 4084 | content: "\f4de"; } 4085 | 4086 | .fa-truck-monster:before { 4087 | content: "\f63b"; } 4088 | 4089 | .fa-truck-moving:before { 4090 | content: "\f4df"; } 4091 | 4092 | .fa-truck-pickup:before { 4093 | content: "\f63c"; } 4094 | 4095 | .fa-tshirt:before { 4096 | content: "\f553"; } 4097 | 4098 | .fa-tty:before { 4099 | content: "\f1e4"; } 4100 | 4101 | .fa-tumblr:before { 4102 | content: "\f173"; } 4103 | 4104 | .fa-tumblr-square:before { 4105 | content: "\f174"; } 4106 | 4107 | .fa-tv:before { 4108 | content: "\f26c"; } 4109 | 4110 | .fa-twitch:before { 4111 | content: "\f1e8"; } 4112 | 4113 | .fa-twitter:before { 4114 | content: "\f099"; } 4115 | 4116 | .fa-twitter-square:before { 4117 | content: "\f081"; } 4118 | 4119 | .fa-typo3:before { 4120 | content: "\f42b"; } 4121 | 4122 | .fa-uber:before { 4123 | content: "\f402"; } 4124 | 4125 | .fa-ubuntu:before { 4126 | content: "\f7df"; } 4127 | 4128 | .fa-uikit:before { 4129 | content: "\f403"; } 4130 | 4131 | .fa-umbraco:before { 4132 | content: "\f8e8"; } 4133 | 4134 | .fa-umbrella:before { 4135 | content: "\f0e9"; } 4136 | 4137 | .fa-umbrella-beach:before { 4138 | content: "\f5ca"; } 4139 | 4140 | .fa-underline:before { 4141 | content: "\f0cd"; } 4142 | 4143 | .fa-undo:before { 4144 | content: "\f0e2"; } 4145 | 4146 | .fa-undo-alt:before { 4147 | content: "\f2ea"; } 4148 | 4149 | .fa-uniregistry:before { 4150 | content: "\f404"; } 4151 | 4152 | .fa-unity:before { 4153 | content: "\f949"; } 4154 | 4155 | .fa-universal-access:before { 4156 | content: "\f29a"; } 4157 | 4158 | .fa-university:before { 4159 | content: "\f19c"; } 4160 | 4161 | .fa-unlink:before { 4162 | content: "\f127"; } 4163 | 4164 | .fa-unlock:before { 4165 | content: "\f09c"; } 4166 | 4167 | .fa-unlock-alt:before { 4168 | content: "\f13e"; } 4169 | 4170 | .fa-unsplash:before { 4171 | content: "\f97c"; } 4172 | 4173 | .fa-untappd:before { 4174 | content: "\f405"; } 4175 | 4176 | .fa-upload:before { 4177 | content: "\f093"; } 4178 | 4179 | .fa-ups:before { 4180 | content: "\f7e0"; } 4181 | 4182 | .fa-usb:before { 4183 | content: "\f287"; } 4184 | 4185 | .fa-user:before { 4186 | content: "\f007"; } 4187 | 4188 | .fa-user-alt:before { 4189 | content: "\f406"; } 4190 | 4191 | .fa-user-alt-slash:before { 4192 | content: "\f4fa"; } 4193 | 4194 | .fa-user-astronaut:before { 4195 | content: "\f4fb"; } 4196 | 4197 | .fa-user-check:before { 4198 | content: "\f4fc"; } 4199 | 4200 | .fa-user-circle:before { 4201 | content: "\f2bd"; } 4202 | 4203 | .fa-user-clock:before { 4204 | content: "\f4fd"; } 4205 | 4206 | .fa-user-cog:before { 4207 | content: "\f4fe"; } 4208 | 4209 | .fa-user-edit:before { 4210 | content: "\f4ff"; } 4211 | 4212 | .fa-user-friends:before { 4213 | content: "\f500"; } 4214 | 4215 | .fa-user-graduate:before { 4216 | content: "\f501"; } 4217 | 4218 | .fa-user-injured:before { 4219 | content: "\f728"; } 4220 | 4221 | .fa-user-lock:before { 4222 | content: "\f502"; } 4223 | 4224 | .fa-user-md:before { 4225 | content: "\f0f0"; } 4226 | 4227 | .fa-user-minus:before { 4228 | content: "\f503"; } 4229 | 4230 | .fa-user-ninja:before { 4231 | content: "\f504"; } 4232 | 4233 | .fa-user-nurse:before { 4234 | content: "\f82f"; } 4235 | 4236 | .fa-user-plus:before { 4237 | content: "\f234"; } 4238 | 4239 | .fa-user-secret:before { 4240 | content: "\f21b"; } 4241 | 4242 | .fa-user-shield:before { 4243 | content: "\f505"; } 4244 | 4245 | .fa-user-slash:before { 4246 | content: "\f506"; } 4247 | 4248 | .fa-user-tag:before { 4249 | content: "\f507"; } 4250 | 4251 | .fa-user-tie:before { 4252 | content: "\f508"; } 4253 | 4254 | .fa-user-times:before { 4255 | content: "\f235"; } 4256 | 4257 | .fa-users:before { 4258 | content: "\f0c0"; } 4259 | 4260 | .fa-users-cog:before { 4261 | content: "\f509"; } 4262 | 4263 | .fa-users-slash:before { 4264 | content: "\f973"; } 4265 | 4266 | .fa-usps:before { 4267 | content: "\f7e1"; } 4268 | 4269 | .fa-ussunnah:before { 4270 | content: "\f407"; } 4271 | 4272 | .fa-utensil-spoon:before { 4273 | content: "\f2e5"; } 4274 | 4275 | .fa-utensils:before { 4276 | content: "\f2e7"; } 4277 | 4278 | .fa-vaadin:before { 4279 | content: "\f408"; } 4280 | 4281 | .fa-vector-square:before { 4282 | content: "\f5cb"; } 4283 | 4284 | .fa-venus:before { 4285 | content: "\f221"; } 4286 | 4287 | .fa-venus-double:before { 4288 | content: "\f226"; } 4289 | 4290 | .fa-venus-mars:before { 4291 | content: "\f228"; } 4292 | 4293 | .fa-viacoin:before { 4294 | content: "\f237"; } 4295 | 4296 | .fa-viadeo:before { 4297 | content: "\f2a9"; } 4298 | 4299 | .fa-viadeo-square:before { 4300 | content: "\f2aa"; } 4301 | 4302 | .fa-vial:before { 4303 | content: "\f492"; } 4304 | 4305 | .fa-vials:before { 4306 | content: "\f493"; } 4307 | 4308 | .fa-viber:before { 4309 | content: "\f409"; } 4310 | 4311 | .fa-video:before { 4312 | content: "\f03d"; } 4313 | 4314 | .fa-video-slash:before { 4315 | content: "\f4e2"; } 4316 | 4317 | .fa-vihara:before { 4318 | content: "\f6a7"; } 4319 | 4320 | .fa-vimeo:before { 4321 | content: "\f40a"; } 4322 | 4323 | .fa-vimeo-square:before { 4324 | content: "\f194"; } 4325 | 4326 | .fa-vimeo-v:before { 4327 | content: "\f27d"; } 4328 | 4329 | .fa-vine:before { 4330 | content: "\f1ca"; } 4331 | 4332 | .fa-virus:before { 4333 | content: "\f974"; } 4334 | 4335 | .fa-virus-slash:before { 4336 | content: "\f975"; } 4337 | 4338 | .fa-viruses:before { 4339 | content: "\f976"; } 4340 | 4341 | .fa-vk:before { 4342 | content: "\f189"; } 4343 | 4344 | .fa-vnv:before { 4345 | content: "\f40b"; } 4346 | 4347 | .fa-voicemail:before { 4348 | content: "\f897"; } 4349 | 4350 | .fa-volleyball-ball:before { 4351 | content: "\f45f"; } 4352 | 4353 | .fa-volume-down:before { 4354 | content: "\f027"; } 4355 | 4356 | .fa-volume-mute:before { 4357 | content: "\f6a9"; } 4358 | 4359 | .fa-volume-off:before { 4360 | content: "\f026"; } 4361 | 4362 | .fa-volume-up:before { 4363 | content: "\f028"; } 4364 | 4365 | .fa-vote-yea:before { 4366 | content: "\f772"; } 4367 | 4368 | .fa-vr-cardboard:before { 4369 | content: "\f729"; } 4370 | 4371 | .fa-vuejs:before { 4372 | content: "\f41f"; } 4373 | 4374 | .fa-walking:before { 4375 | content: "\f554"; } 4376 | 4377 | .fa-wallet:before { 4378 | content: "\f555"; } 4379 | 4380 | .fa-warehouse:before { 4381 | content: "\f494"; } 4382 | 4383 | .fa-water:before { 4384 | content: "\f773"; } 4385 | 4386 | .fa-wave-square:before { 4387 | content: "\f83e"; } 4388 | 4389 | .fa-waze:before { 4390 | content: "\f83f"; } 4391 | 4392 | .fa-weebly:before { 4393 | content: "\f5cc"; } 4394 | 4395 | .fa-weibo:before { 4396 | content: "\f18a"; } 4397 | 4398 | .fa-weight:before { 4399 | content: "\f496"; } 4400 | 4401 | .fa-weight-hanging:before { 4402 | content: "\f5cd"; } 4403 | 4404 | .fa-weixin:before { 4405 | content: "\f1d7"; } 4406 | 4407 | .fa-whatsapp:before { 4408 | content: "\f232"; } 4409 | 4410 | .fa-whatsapp-square:before { 4411 | content: "\f40c"; } 4412 | 4413 | .fa-wheelchair:before { 4414 | content: "\f193"; } 4415 | 4416 | .fa-whmcs:before { 4417 | content: "\f40d"; } 4418 | 4419 | .fa-wifi:before { 4420 | content: "\f1eb"; } 4421 | 4422 | .fa-wikipedia-w:before { 4423 | content: "\f266"; } 4424 | 4425 | .fa-wind:before { 4426 | content: "\f72e"; } 4427 | 4428 | .fa-window-close:before { 4429 | content: "\f410"; } 4430 | 4431 | .fa-window-maximize:before { 4432 | content: "\f2d0"; } 4433 | 4434 | .fa-window-minimize:before { 4435 | content: "\f2d1"; } 4436 | 4437 | .fa-window-restore:before { 4438 | content: "\f2d2"; } 4439 | 4440 | .fa-windows:before { 4441 | content: "\f17a"; } 4442 | 4443 | .fa-wine-bottle:before { 4444 | content: "\f72f"; } 4445 | 4446 | .fa-wine-glass:before { 4447 | content: "\f4e3"; } 4448 | 4449 | .fa-wine-glass-alt:before { 4450 | content: "\f5ce"; } 4451 | 4452 | .fa-wix:before { 4453 | content: "\f5cf"; } 4454 | 4455 | .fa-wizards-of-the-coast:before { 4456 | content: "\f730"; } 4457 | 4458 | .fa-wolf-pack-battalion:before { 4459 | content: "\f514"; } 4460 | 4461 | .fa-won-sign:before { 4462 | content: "\f159"; } 4463 | 4464 | .fa-wordpress:before { 4465 | content: "\f19a"; } 4466 | 4467 | .fa-wordpress-simple:before { 4468 | content: "\f411"; } 4469 | 4470 | .fa-wpbeginner:before { 4471 | content: "\f297"; } 4472 | 4473 | .fa-wpexplorer:before { 4474 | content: "\f2de"; } 4475 | 4476 | .fa-wpforms:before { 4477 | content: "\f298"; } 4478 | 4479 | .fa-wpressr:before { 4480 | content: "\f3e4"; } 4481 | 4482 | .fa-wrench:before { 4483 | content: "\f0ad"; } 4484 | 4485 | .fa-x-ray:before { 4486 | content: "\f497"; } 4487 | 4488 | .fa-xbox:before { 4489 | content: "\f412"; } 4490 | 4491 | .fa-xing:before { 4492 | content: "\f168"; } 4493 | 4494 | .fa-xing-square:before { 4495 | content: "\f169"; } 4496 | 4497 | .fa-y-combinator:before { 4498 | content: "\f23b"; } 4499 | 4500 | .fa-yahoo:before { 4501 | content: "\f19e"; } 4502 | 4503 | .fa-yammer:before { 4504 | content: "\f840"; } 4505 | 4506 | .fa-yandex:before { 4507 | content: "\f413"; } 4508 | 4509 | .fa-yandex-international:before { 4510 | content: "\f414"; } 4511 | 4512 | .fa-yarn:before { 4513 | content: "\f7e3"; } 4514 | 4515 | .fa-yelp:before { 4516 | content: "\f1e9"; } 4517 | 4518 | .fa-yen-sign:before { 4519 | content: "\f157"; } 4520 | 4521 | .fa-yin-yang:before { 4522 | content: "\f6ad"; } 4523 | 4524 | .fa-yoast:before { 4525 | content: "\f2b1"; } 4526 | 4527 | .fa-youtube:before { 4528 | content: "\f167"; } 4529 | 4530 | .fa-youtube-square:before { 4531 | content: "\f431"; } 4532 | 4533 | .fa-zhihu:before { 4534 | content: "\f63f"; } 4535 | 4536 | .sr-only { 4537 | border: 0; 4538 | clip: rect(0, 0, 0, 0); 4539 | height: 1px; 4540 | margin: -1px; 4541 | overflow: hidden; 4542 | padding: 0; 4543 | position: absolute; 4544 | width: 1px; } 4545 | 4546 | .sr-only-focusable:active, .sr-only-focusable:focus { 4547 | clip: auto; 4548 | height: auto; 4549 | margin: 0; 4550 | overflow: visible; 4551 | position: static; 4552 | width: auto; } 4553 | @font-face { 4554 | font-family: 'Font Awesome 5 Brands'; 4555 | font-style: normal; 4556 | font-weight: 400; 4557 | font-display: block; 4558 | src: url("../webfonts/fa-brands-400.eot"); 4559 | src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); } 4560 | 4561 | .fab { 4562 | font-family: 'Font Awesome 5 Brands'; 4563 | font-weight: 400; } 4564 | @font-face { 4565 | font-family: 'Font Awesome 5 Free'; 4566 | font-style: normal; 4567 | font-weight: 400; 4568 | font-display: block; 4569 | src: url("../webfonts/fa-regular-400.eot"); 4570 | src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); } 4571 | 4572 | .far { 4573 | font-family: 'Font Awesome 5 Free'; 4574 | font-weight: 400; } 4575 | @font-face { 4576 | font-family: 'Font Awesome 5 Free'; 4577 | font-style: normal; 4578 | font-weight: 900; 4579 | font-display: block; 4580 | src: url("../webfonts/fa-solid-900.eot"); 4581 | src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); } 4582 | 4583 | .fa, 4584 | .fas { 4585 | font-family: 'Font Awesome 5 Free'; 4586 | font-weight: 900; } 4587 | --------------------------------------------------------------------------------