├── static ├── .gitkeep ├── bonus_1.jpg ├── bonus_10.jpg ├── bonus_11.jpg ├── bonus_12.jpg ├── bonus_2.jpg ├── bonus_3.jpg ├── bonus_4.jpg ├── bonus_5.jpg ├── bonus_6.jpg ├── bonus_7.jpg ├── bonus_8.jpg ├── bonus_9.jpg ├── checkbox.jpg ├── topic_1.jpg ├── topic_2.jpg ├── topic_3.jpg ├── download_img1.png ├── download_img2.png ├── jianshu_logo.jpg ├── vue-demo-bg.jpg ├── vue-demo-bg2.jpg ├── vue-demo-bg3.jpg ├── vue-demo-hot.jpg ├── vue-demo-new.jpg ├── vue-demo-daily.jpg ├── actions.js ├── font-awesome-4.6.3 │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── less │ │ ├── screen-reader.less │ │ ├── fixed-width.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── core.less │ │ ├── stacked.less │ │ ├── font-awesome.less │ │ ├── bordered-pulled.less │ │ ├── rotated-flipped.less │ │ ├── path.less │ │ ├── animated.less │ │ ├── mixins.less │ │ └── variables.less │ ├── scss │ │ ├── _fixed-width.scss │ │ ├── _screen-reader.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _core.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _bordered-pulled.scss │ │ ├── _rotated-flipped.scss │ │ ├── _path.scss │ │ ├── _animated.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ ├── HELP-US-OUT.txt │ └── css │ │ ├── font-awesome.min.css │ │ └── font-awesome.css ├── AJAX.js ├── style.css └── store.js ├── .eslintignore ├── config ├── prod.env.js ├── test.env.js ├── dev.env.js └── index.js ├── src ├── assets │ └── logo.png ├── vuex │ ├── getters.js │ ├── actions.js │ └── store.js ├── components │ ├── Hello.vue │ ├── Article.vue │ ├── Topic.vue │ ├── Home.vue │ ├── Download.vue │ ├── Topic_article.vue │ ├── Bonus.vue │ └── Login.vue ├── main.js ├── routers.js └── App.vue ├── .babelrc ├── .gitignore ├── .editorconfig ├── index.html ├── README.md └── package.json /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/*.js 2 | config/*.js 3 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | } 4 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /static/bonus_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_1.jpg -------------------------------------------------------------------------------- /static/bonus_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_10.jpg -------------------------------------------------------------------------------- /static/bonus_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_11.jpg -------------------------------------------------------------------------------- /static/bonus_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_12.jpg -------------------------------------------------------------------------------- /static/bonus_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_2.jpg -------------------------------------------------------------------------------- /static/bonus_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_3.jpg -------------------------------------------------------------------------------- /static/bonus_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_4.jpg -------------------------------------------------------------------------------- /static/bonus_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_5.jpg -------------------------------------------------------------------------------- /static/bonus_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_6.jpg -------------------------------------------------------------------------------- /static/bonus_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_7.jpg -------------------------------------------------------------------------------- /static/bonus_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_8.jpg -------------------------------------------------------------------------------- /static/bonus_9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/bonus_9.jpg -------------------------------------------------------------------------------- /static/checkbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/checkbox.jpg -------------------------------------------------------------------------------- /static/topic_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/topic_1.jpg -------------------------------------------------------------------------------- /static/topic_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/topic_2.jpg -------------------------------------------------------------------------------- /static/topic_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/topic_3.jpg -------------------------------------------------------------------------------- /static/download_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/download_img1.png -------------------------------------------------------------------------------- /static/download_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/download_img2.png -------------------------------------------------------------------------------- /static/jianshu_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/jianshu_logo.jpg -------------------------------------------------------------------------------- /static/vue-demo-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/vue-demo-bg.jpg -------------------------------------------------------------------------------- /static/vue-demo-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/vue-demo-bg2.jpg -------------------------------------------------------------------------------- /static/vue-demo-bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/vue-demo-bg3.jpg -------------------------------------------------------------------------------- /static/vue-demo-hot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/vue-demo-hot.jpg -------------------------------------------------------------------------------- /static/vue-demo-new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/vue-demo-new.jpg -------------------------------------------------------------------------------- /static/vue-demo-daily.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/vue-demo-daily.jpg -------------------------------------------------------------------------------- /static/actions.js: -------------------------------------------------------------------------------- 1 | export const displayArticle = ({ dispatch },show) => { 2 | dispatch('DISPLAY_ARTICLE',show) 3 | } 4 | -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "stage-2"], 3 | "plugins": ["transform-runtime"], 4 | "comments": false 5 | } 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | selenium-debug.log 6 | test/unit/coverage 7 | test/e2e/reports 8 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/font-awesome-4.6.3/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /config/test.env.js: -------------------------------------------------------------------------------- 1 | var merge = require('webpack-merge') 2 | var devEnv = require('./dev.env') 3 | 4 | module.exports = merge(devEnv, { 5 | NODE_ENV: '"testing"' 6 | }) 7 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/font-awesome-4.6.3/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/font-awesome-4.6.3/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/font-awesome-4.6.3/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- 1 | var merge = require('webpack-merge') 2 | var prodEnv = require('./prod.env') 3 | 4 | module.exports = merge(prodEnv, { 5 | NODE_ENV: '"development"' 6 | }) 7 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mrjeff578575/Vue-demo-jianshu/HEAD/static/font-awesome-4.6.3/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /src/vuex/getters.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by wwm on 2016/9/24. 3 | */ 4 | export const getArticles=(state)=>state.articles; 5 | export const getBonusTexts=(state)=>state.texts; 6 | export const getShow=(state)=>state.show; 7 | export const getLoginWay=(state)=>state.loginway; 8 | export const getShow_2=(state)=>state.show_2; 9 | export const getTopics=(state)=>state.topics; 10 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Vue-SPA 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /src/vuex/actions.js: -------------------------------------------------------------------------------- 1 | export const displayArticle = ({ dispatch },show) => { 2 | dispatch('DISPLAY_ARTICLE',show) 3 | } 4 | 5 | export const displayTopic = ({ dispatch },show) => { 6 | dispatch('DISPLAY_TOPIC',show) 7 | } 8 | 9 | export const sortContent = ({ dispatch },method) => { 10 | dispatch('SORTCONTENT',method) 11 | } 12 | export const changeLogin = ({ dispatch },loginway) => { 13 | dispatch('CHANGELOGIN',loginway) 14 | } -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /src/components/Hello.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 20 | 21 | 22 | 27 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import App from './App' 3 | import VueRouter from 'vue-router' 4 | import routerMap from './routers' 5 | 6 | 7 | Vue.use(VueRouter); 8 | const router = new VueRouter(); 9 | router.mode = "html5"; 10 | //路由钩子 11 | router.beforeEach((transition)=> { 12 | //跳转前可进行验证等操作 13 | if (transition.to.auth) { 14 | // console.log(transition.to.path); 15 | } else { 16 | // console.log("transition.next()"); 17 | transition.next(); 18 | } 19 | }); 20 | router.afterEach(function (transition) { 21 | //跳转后的一些操作 22 | console.log('成功浏览到: ' + transition.to.path) 23 | }); 24 | // 默认跳转 25 | router.redirect({ 26 | '*': '/home/article' 27 | }); 28 | // router.go('/home/article');//手动跳转 29 | routerMap(router); 30 | router.start(App, 'app'); 31 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # vue-demo-jianshu 2 | 3 | ## Vue2版本 4 | > [Jianshu By Vue2](https://github.com/Mrjeff578575/JianshuVue2.0) 5 | 6 | ## React版本 7 | > [Jianshu By React](https://github.com/Mrjeff578575/ReactJianShu) 8 | 9 | ## 项目结构 10 | 11 | ![image](https://github.com/Mrjeff578575/markdownphoto/blob/master/%E9%A1%B9%E7%9B%AE%E7%BB%93%E6%9E%84.jpg) 12 | 13 | ## 项目简介 14 | 采用vue vue-router vuex实现简书的基本界面和功能 15 | 16 | > A Vue.js project 17 | 18 | ## Build Setup 19 | 20 | ``` bash 21 | # install dependencies 22 | npm install 23 | 24 | # serve with hot reload at localhost:8080 25 | npm run dev 26 | 27 | # build for production with minification 28 | npm run build 29 | ``` 30 | 31 | For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). 32 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/routers.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by wwm on 2016/9/24. 3 | */ 4 | 'use strict'; 5 | //注册路由 6 | export default function (router) { 7 | router.map({ 8 | '/home': { 9 | name: 'home', 10 | component: require('./components/Home.vue'), 11 | subRoutes: { 12 | '/article': { 13 | name: 'article', 14 | component: require('./components/Article.vue') 15 | } 16 | } 17 | }, 18 | '/topic': { 19 | name: 'topic', 20 | component: require('./components/Topic.vue'), 21 | subRoutes: { 22 | 'topic_article': { 23 | name: "topic_article", 24 | component: require('./components/Topic_article.vue') 25 | } 26 | } 27 | }, 28 | '/bonus': { 29 | name: "bonus", 30 | component: require('./components/Bonus.vue') 31 | }, 32 | '/login': { 33 | name: "login", 34 | component: require('./components/Login.vue') 35 | }, 36 | '/download': { 37 | name: "download", 38 | component: require('./components/Download.vue') 39 | } 40 | }) 41 | } 42 | -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- 1 | // see http://vuejs-templates.github.io/webpack for documentation. 2 | var path = require('path') 3 | 4 | module.exports = { 5 | build: { 6 | env: require('./prod.env'), 7 | index: path.resolve(__dirname, '../dist/index.html'), 8 | assetsRoot: path.resolve(__dirname, '../dist'), 9 | assetsSubDirectory: 'static', 10 | assetsPublicPath: '/', 11 | productionSourceMap: true, 12 | // Gzip off by default as many popular static hosts such as 13 | // Surge or Netlify already gzip all static assets for you. 14 | // Before setting to `true`, make sure to: 15 | // npm install --save-dev compression-webpack-plugin 16 | productionGzip: false, 17 | productionGzipExtensions: ['js', 'css'] 18 | }, 19 | dev: { 20 | env: require('./dev.env'), 21 | port: 8080, 22 | assetsSubDirectory: 'static', 23 | assetsPublicPath: '/', 24 | proxyTable: {}, 25 | // CSS Sourcemaps off by default because relative paths are "buggy" 26 | // with this option, according to the CSS-Loader README 27 | // (https://github.com/webpack/css-loader#sourcemaps) 28 | // In our experience, they generally work as expected, 29 | // just be aware of this issue when enabling this option. 30 | cssSourceMap: false 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/components/Article.vue: -------------------------------------------------------------------------------- 1 | 19 | 29 | 52 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "vue-demo", 3 | "version": "1.0.0", 4 | "description": "A Vue.js project", 5 | "author": "Mrjeff578575 ", 6 | "private": true, 7 | "scripts": { 8 | "dev": "node build/dev-server.js", 9 | "build": "node build/build.js", 10 | "test": "" 11 | }, 12 | "dependencies": { 13 | "babel-runtime": "^6.0.0", 14 | "vue": "^1.0.21", 15 | "vue-router": "^0.7.13", 16 | "vuex": "^1.0.0-rc.2" 17 | }, 18 | "devDependencies": { 19 | "babel-core": "^6.0.0", 20 | "babel-loader": "^6.0.0", 21 | "babel-plugin-transform-runtime": "^6.0.0", 22 | "babel-preset-es2015": "^6.0.0", 23 | "babel-preset-stage-2": "^6.0.0", 24 | "babel-register": "^6.0.0", 25 | "connect-history-api-fallback": "^1.1.0", 26 | "css-loader": "^0.23.0", 27 | "eventsource-polyfill": "^0.9.6", 28 | "express": "^4.13.3", 29 | "extract-text-webpack-plugin": "^1.0.1", 30 | "file-loader": "^0.8.4", 31 | "function-bind": "^1.0.2", 32 | "html-webpack-plugin": "^2.8.1", 33 | "http-proxy-middleware": "^0.12.0", 34 | "json-loader": "^0.5.4", 35 | "ora": "^0.2.0", 36 | "shelljs": "^0.6.0", 37 | "url-loader": "^0.5.7", 38 | "vue-hot-reload-api": "^1.2.0", 39 | "vue-html-loader": "^1.0.0", 40 | "vue-loader": "^8.3.0", 41 | "vue-style-loader": "^1.0.0", 42 | "webpack": "^1.12.2", 43 | "webpack-dev-middleware": "^1.4.0", 44 | "webpack-hot-middleware": "^2.6.0", 45 | "webpack-merge": "^0.8.3" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/components/Topic.vue: -------------------------------------------------------------------------------- 1 | 37 | 51 | -------------------------------------------------------------------------------- /static/AJAX.js: -------------------------------------------------------------------------------- 1 | /* 封装ajax函数 2 | * @param {string}opt.type http连接的方式,包括POST和GET两种方式,默认使用GET 3 | * @param {string}opt.url 发送请求的url 4 | * @param {boolean}opt.async 是否为异步请求,true为异步的,false为同步的 5 | * @param {object}opt.data 发送的参数,格式为对象类型 6 | * @param {function}opt.success ajax发送并接收成功调用的回调函数 7 | */ 8 | function ajax(options) { 9 | opt = options || {}; 10 | var type = opt.type || 'GET'; 11 | type = type.toUpperCase() || 'GET'; 12 | var url = opt.url || ''; 13 | var async = opt.async || true; 14 | var data = opt.data || null; 15 | var success = opt.success || function () { 16 | }; 17 | var xmlhttp = null; 18 | var header = opt.headers || {}; 19 | if (XMLHttpRequest) { 20 | xmlHttp = new XMLHttpRequest(); 21 | } 22 | else { 23 | xmlHttp = new ActiveXObject('Microsoft.XMLHTTP'); //兼容IE的用法 24 | } 25 | var params = []; 26 | for (var key in data) { 27 | params.push(key + '=' + data[key]); 28 | } 29 | var dataStr = params.join('&');//将要发送的数据改变{a:b,c:d}变成 a=b&c=d 30 | if (type === 'POST') { 31 | xmlHttp.open(type, url, async); 32 | //设定Content-Type头信息,模拟HTTP的POST方法发送一个表单 33 | xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded;charset=utf-8'); 34 | xmlHttp.send(dataStr); 35 | } 36 | else { 37 | xmlHttp.open(type, url + '?' + dataStr, async); 38 | for (var key in header) { 39 | xmlHttp.setRequestHeader(key, header[key]); 40 | } 41 | xmlHttp.send(null); 42 | } 43 | xmlHttp.onreadystatechange = function () { //当收到完整服务器的响应的时候,同时status为200时,触发成功的回调函数 44 | if (xmlHttp.readyState == 4 && xmlHttp.status == 200) { 45 | success(xmlHttp.responseText); 46 | } 47 | }; 48 | } 49 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | .fa-icon-rotate(@degrees, @rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; 16 | -webkit-transform: rotate(@degrees); 17 | -ms-transform: rotate(@degrees); 18 | transform: rotate(@degrees); 19 | } 20 | 21 | .fa-icon-flip(@horiz, @vert, @rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; 23 | -webkit-transform: scale(@horiz, @vert); 24 | -ms-transform: scale(@horiz, @vert); 25 | transform: scale(@horiz, @vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | .sr-only() { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | .sr-only-focusable() { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | @mixin fa-icon-rotate($degrees, $rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; 16 | -webkit-transform: rotate($degrees); 17 | -ms-transform: rotate($degrees); 18 | transform: rotate($degrees); 19 | } 20 | 21 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; 23 | -webkit-transform: scale($horiz, $vert); 24 | -ms-transform: scale($horiz, $vert); 25 | transform: scale($horiz, $vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | @mixin sr-only { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | @mixin sr-only-focusable { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 30 | 87 | -------------------------------------------------------------------------------- /src/components/Home.vue: -------------------------------------------------------------------------------- 1 | 72 | 94 | 108 | -------------------------------------------------------------------------------- /src/components/Download.vue: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /src/components/Topic_article.vue: -------------------------------------------------------------------------------- 1 | 30 | 49 | 136 | -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | padding: 0; 3 | margin: 0; 4 | } 5 | ul{ 6 | list-style: none; 7 | } 8 | a{ 9 | text-decoration: none; 10 | } 11 | body,html{ 12 | height: 100%; 13 | font-family: "Arial","Microsoft YaHei","黑体","宋体",sans-serif; 14 | overflow-x:hidden; 15 | background-color: #f3f3f3; 16 | } 17 | .fa-mobile{ 18 | font-size: 26px; 19 | position: relative; 20 | top: 3px; 21 | } 22 | .nav-user{ 23 | position: absolute; 24 | bottom: 30px; 25 | margin-left: 8px; 26 | } 27 | .nav-user li:hover a{ 28 | color: #ffffff; 29 | } 30 | .nav-user a{ 31 | line-height: 40px; 32 | color: #999999; 33 | font-weight: normal; 34 | text-align: left; 35 | height: 40px; 36 | font-size: 14px; 37 | } 38 | .dropdown li{ 39 | font-weight: normal; 40 | text-align: left; 41 | height: 40px; 42 | font-size: 14px; 43 | } 44 | .dropdown li a{ 45 | display: block; 46 | padding-left: 8px; 47 | line-height: 40px; 48 | width: 170px; 49 | height: 40px; 50 | color: #999999; 51 | } 52 | .dropdown li:hover{ 53 | background-color: #e78170; 54 | } 55 | .dropdown li:hover a{ 56 | color: #ffffff; 57 | } 58 | .sidebar{ 59 | width: 170px; 60 | height: 100%; 61 | position: fixed; 62 | background-color: #2a2a2a; 63 | } 64 | .home{ 65 | width: calc(100% - 370px); 66 | height: 100%; 67 | margin-left: 170px; 68 | } 69 | 70 | .showbar{ 71 | transform: translateX(0); 72 | transition: all 0.5s; 73 | width: 450px; 74 | height: 100%; 75 | position: fixed; 76 | top: 0; 77 | z-index: 5; 78 | } 79 | .showbar .cover-image{ 80 | position: absolute; 81 | top: 0; 82 | left: 0; 83 | background:url('../../static/vue-demo-bg3.jpg'); 84 | width: 100%; 85 | height: 100%; 86 | background-position: center; 87 | background-size: cover; 88 | z-index: -1; 89 | } 90 | .showbar .cover-image_2{ 91 | position: absolute; 92 | top: 0; 93 | left: 0; 94 | background:url('../../static/vue-demo-bg2.jpg'); 95 | width: 100%; 96 | height: 100%; 97 | background-position: center; 98 | background-size: cover; 99 | z-index: -1; 100 | } 101 | .text{ 102 | position: absolute; 103 | color: #ffffff; 104 | bottom: 0; 105 | margin-bottom: 40px; 106 | line-height: 40px; 107 | margin-left: 20px; 108 | } 109 | .text a{ 110 | color: #ffffff; 111 | text-align: center; 112 | display: block; 113 | width: 140px; 114 | border-radius: 5px; 115 | height: 40px; 116 | background-color: #6bd95b; 117 | } 118 | .article-page{ 119 | width: 56%; 120 | height: 100%; 121 | right: 200px; 122 | position: absolute; 123 | background-color: #f3f3f3; 124 | top: 0; 125 | z-index: 10; 126 | } 127 | .article-page a{ 128 | font-size: 12px; 129 | color: #555555; 130 | } 131 | .rightbar{ 132 | width: 200px; 133 | height: 100%; 134 | right: 0; 135 | position: fixed; 136 | z-index: 10; 137 | background-color: #f3f3f3; 138 | top: 0; 139 | } 140 | .article-page nav{ 141 | height: 50px; 142 | border-bottom: 2px solid rgba(85, 85, 85, 0.12); 143 | } 144 | .nav-text{ 145 | display: inline-block; 146 | line-height: 50px; 147 | height: 50px; 148 | margin-left: 10px; 149 | padding: 0 15px; 150 | transition: all 0.3s; 151 | } 152 | .article-page .fir{ 153 | border-bottom: 1px solid #000000; 154 | } 155 | .nav-text:hover{ 156 | background-color: #eeeeee; 157 | } 158 | .search{ 159 | line-height: 50px; 160 | float: right; 161 | } 162 | .search input{ 163 | padding-right: 10px; 164 | padding-left: 10px; 165 | width: 160px; 166 | height: 25px; 167 | border: 1px solid #efefef; 168 | border-radius: 10px; 169 | } 170 | .search input:focus{ 171 | outline: none; 172 | box-shadow: none; 173 | border-color: rgba(82,168,236,0.8); 174 | } 175 | .clearfloat:after { 176 | display: block; 177 | clear: both; 178 | content: ''; 179 | visibility: hidden; 180 | height: 0; 181 | } 182 | .search-icon{ 183 | position: absolute; 184 | top: 1px; 185 | right: 5px; 186 | } 187 | .list .author{ 188 | color:#4094c7; 189 | } 190 | .list .time{ 191 | font-size: 12px; 192 | color: #717171; 193 | } 194 | .list .small-text{ 195 | font-size: 12px; 196 | color: #717171; 197 | } 198 | .list .image{ 199 | border: 1px solid #eeeeee; 200 | box-sizing: border-box; 201 | border-radius: 5px; 202 | width: 100px; 203 | height: 100px; 204 | float: right; 205 | margin-top: -74px; 206 | } 207 | .rightbar nav{ 208 | padding: 15px 2px 5px 10px; 209 | margin-right: 15px; 210 | float: right; 211 | font-size: 14px; 212 | } 213 | .rightbar nav a{ 214 | color: #555555; 215 | } 216 | .rightbar nav a:hover{ 217 | color: black; 218 | } -------------------------------------------------------------------------------- /src/components/Bonus.vue: -------------------------------------------------------------------------------- 1 | 39 | 59 | 209 | -------------------------------------------------------------------------------- /src/components/Login.vue: -------------------------------------------------------------------------------- 1 | 61 | 79 | 260 | -------------------------------------------------------------------------------- /src/vuex/store.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | 4 | Vue.use(Vuex) 5 | 6 | const state = { 7 | articles:{ 8 | fir: { 9 | author:'徐丹妮', 10 | title:'我不是学霸,只是比你努力一点而已', 11 | time:'大约6小时之前', 12 | read:'8498', 13 | comment:'248', 14 | like:'2342', 15 | pay:'2', 16 | src:'url(../../static/vue-demo-hot.jpg)' 17 | }, 18 | sec: { 19 | author:'徐妮', 20 | title:'我不是学霸,只是比你努力一点而已', 21 | time:'大约6小时之前', 22 | read:'8498', 23 | comment:'248', 24 | like:'2342', 25 | pay:'2', 26 | src:'url(../../static/vue-demo-hot.jpg)' 27 | }, 28 | thi: { 29 | author:'徐双妮', 30 | title:'我不是学霸,只是比你努力一点而已', 31 | time:'大约6小时之前', 32 | read:'8498', 33 | comment:'248', 34 | like:'2342', 35 | pay:'2', 36 | src:'url(../../static/vue-demo-hot.jpg)' 37 | } 38 | }, 39 | texts:{ 40 | Jan:{ 41 | title:'给你90天,成为不一样的自己', 42 | content_1:"如果你应付不了现在的生活和工作", 43 | content_2:"无论你走到哪里,", 44 | content_3:"无论你换了什么工作,什么公司,", 45 | content_4:"都无济于事。", 46 | content_5:"因为你根本没想让自己成熟起来,", 47 | content_6:"想让变的更优秀也不过是一句口头禅。", 48 | author:'', 49 | bg:'url(../../static/bonus_1.jpg)' 50 | }, 51 | Feb:{ 52 | title:'使你更有思想的20本书', 53 | content_1:"真正伟大的当代文学,", 54 | content_2:"正如人们借由狄更斯来了解十九世纪的英国,", 55 | content_3:"后人也可以通过《自由》来了解", 56 | content_4:"二十一世纪初期的美国。", 57 | content_5:"", 58 | content_6:"", 59 | author:'', 60 | bg:'url(../../static/bonus_2.jpg)' 61 | }, 62 | Mar:{ 63 | title:'无感是最舒适的爱情', 64 | content_1:"爱情原本就是个很娇气的东西,", 65 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 66 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 67 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 68 | content_5:"才是爱情最原本的样子。", 69 | content_6:"当她不再刻意的感受他的存在,", 70 | author:'', 71 | bg:'url(../../static/bonus_3.jpg)' 72 | }, 73 | Apr:{ 74 | title:'无感是最舒适的爱情', 75 | content_1:"爱情原本就是个很娇气的东西,", 76 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 77 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 78 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 79 | content_5:"才是爱情最原本的样子。", 80 | content_6:"当她不再刻意的感受他的存在,", 81 | author:'', 82 | bg:'url(../../static/bonus_4.jpg)' 83 | }, 84 | May:{ 85 | title:'无感是最舒适的爱情', 86 | content_1:"爱情原本就是个很娇气的东西,", 87 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 88 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 89 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 90 | content_5:"才是爱情最原本的样子。", 91 | content_6:"当她不再刻意的感受他的存在,", 92 | author:'', 93 | bg:'url(../../static/bonus_5.jpg)' 94 | }, 95 | Jun:{ 96 | title:'无感是最舒适的爱情', 97 | content_1:"爱情原本就是个很娇气的东西,", 98 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 99 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 100 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 101 | content_5:"才是爱情最原本的样子。", 102 | content_6:"当她不再刻意的感受他的存在,", 103 | author:'', 104 | bg:'url(../../static/bonus_6.jpg)' 105 | }, 106 | Jul:{ 107 | title:'无感是最舒适的爱情', 108 | content_1:"爱情原本就是个很娇气的东西,", 109 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 110 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 111 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 112 | content_5:"才是爱情最原本的样子。", 113 | content_6:"当她不再刻意的感受他的存在,", 114 | author:'', 115 | bg:'url(../../static/bonus_7.jpg)' 116 | }, 117 | Aug:{ 118 | title:'无感是最舒适的爱情', 119 | content_1:"爱情原本就是个很娇气的东西,", 120 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 121 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 122 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 123 | content_5:"才是爱情最原本的样子。", 124 | content_6:"当她不再刻意的感受他的存在,", 125 | author:'', 126 | bg:'url(../../static/bonus_8.jpg)' 127 | }, 128 | Sep:{ 129 | title:'无感是最舒适的爱情', 130 | content_1:"爱情原本就是个很娇气的东西,", 131 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 132 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 133 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 134 | content_5:"才是爱情最原本的样子。", 135 | content_6:"当她不再刻意的感受他的存在,", 136 | author:'', 137 | bg:'url(../../static/bonus_9.jpg)' 138 | }, 139 | Oct:{ 140 | title:'无感是最舒适的爱情', 141 | content_1:"爱情原本就是个很娇气的东西,", 142 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 143 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 144 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 145 | content_5:"才是爱情最原本的样子。", 146 | content_6:"当她不再刻意的感受他的存在,", 147 | author:'', 148 | bg:'url(../../static/bonus_10.jpg)' 149 | }, 150 | Nov:{ 151 | title:'无感是最舒适的爱情', 152 | content_1:"爱情原本就是个很娇气的东西,", 153 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 154 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 155 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 156 | content_5:"才是爱情最原本的样子。", 157 | content_6:"当她不再刻意的感受他的存在,", 158 | author:'', 159 | bg:'url(../../static/bonus_11.jpg)' 160 | }, 161 | Dec:{ 162 | title:'无感是最舒适的爱情', 163 | content_1:"爱情原本就是个很娇气的东西,", 164 | content_2:"它经不起太多的矫情,你死我活和无理取闹,", 165 | content_3:"也经不起任何的伪装,刻意讨好和忍辱负重。", 166 | content_4:"当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 167 | content_5:"才是爱情最原本的样子。", 168 | content_6:"当她不再刻意的感受他的存在,", 169 | author:'', 170 | bg:'url(../../static/bonus_12.jpg)' 171 | } 172 | }, 173 | topics:{ 174 | fir: { 175 | img:'../../static/topic_1.jpg', 176 | title:'游戏', 177 | par:'玩转简书的第一步,从这个专题开始。\ 178 | 想上首页热门榜么?好内容想被更多人看到么?来投稿吧!\ 179 | 如果被拒也不要灰心哦~入选文章会进一个队列挨个上首页,请耐心等待。\ 180 | 投稿必须原创。如果发现有非...', 181 | number:'97233', 182 | concern:'121.7', 183 | keys:'故事、连载', 184 | time:'20160620' 185 | }, 186 | sec: { 187 | img:'../../static/topic_3.jpg', 188 | title:'诗', 189 | par:'诗,让你感受自己的心灵。\ 190 | 专题主编:苏锦年 投稿须知:\ 191 | 1.本专题收录古诗、词、现代诗以及诗词点评及指导。\ 192 | 2.内容必须为原创,切勿用其他诗人的诗句。\ 193 | 3.文章排版整洁,注意...', 194 | number:'35420', 195 | concern:'146.6', 196 | keys:'诗', 197 | time:'20160630' 198 | } 199 | }, 200 | show:'hot', 201 | show_2:'hot', 202 | loginway:'login' 203 | } 204 | 205 | const mutations = { 206 | DISPLAY_ARTICLE (state, show) { 207 | const article = { 208 | hot: { 209 | fir: { 210 | author:'徐丹妮', 211 | title:'我不是学霸,只是比你努力一点而已', 212 | time:'大约6小时之前', 213 | read:'8498', 214 | comment:'248', 215 | like:'2342', 216 | pay:'2', 217 | src:'url(../../static/vue-demo-hot.jpg)' 218 | }, 219 | sec: { 220 | author:'徐妮', 221 | title:'我不是学霸,只是比你努力一点而已', 222 | time:'大约6小时之前', 223 | read:'8498', 224 | comment:'248', 225 | like:'2342', 226 | pay:'2', 227 | src:'url(../../static/vue-demo-hot.jpg)' 228 | }, 229 | thi: { 230 | author:'徐双妮', 231 | title:'我不是学霸,只是比你努力一点而已', 232 | time:'大约6小时之前', 233 | read:'8498', 234 | comment:'248', 235 | like:'2342', 236 | pay:'2', 237 | src:'url(../../static/vue-demo-hot.jpg)' 238 | } 239 | }, 240 | new: { 241 | fir: { 242 | author:'阿俊', 243 | title:'Learn by doing', 244 | time:'大约6小时之前', 245 | read:'3398', 246 | comment:'258', 247 | like:'232', 248 | pay:'88', 249 | src:'url(../../static/vue-demo-new.jpg)' 250 | }, 251 | sec: { 252 | author:'阿猫', 253 | title:'Learn by doing', 254 | time:'大约6小时之前', 255 | read:'3398', 256 | comment:'258', 257 | like:'232', 258 | pay:'88', 259 | src:'url(../../static/vue-demo-new.jpg)' 260 | }, 261 | thi: { 262 | author:'阿狗', 263 | title:'Learn by doing', 264 | time:'大约6小时之前', 265 | read:'3398', 266 | comment:'258', 267 | like:'232', 268 | pay:'88', 269 | src:'url(../../static/vue-demo-new.jpg)' 270 | } 271 | }, 272 | daily:{ 273 | fir: { 274 | author:'尸叔', 275 | title:'如何让你的自拍,惊爆朋友圈?看我是怎么设计的', 276 | time:'大约2小时之前', 277 | read:'3750', 278 | comment:'70', 279 | like:'190', 280 | pay:'0', 281 | src:'url(../../static/vue-demo-daily.jpg)' 282 | }, 283 | sec: { 284 | author:'尸爸', 285 | title:'如何让你的自拍,惊爆朋友圈?看我是怎么设计的', 286 | time:'大约2小时之前', 287 | read:'3750', 288 | comment:'70', 289 | like:'190', 290 | pay:'0', 291 | src:'url(../../static/vue-demo-daily.jpg)' 292 | }, 293 | thi: { 294 | author:'尸姐', 295 | title:'如何让你的自拍,惊爆朋友圈?看我是怎么设计的', 296 | time:'大约2小时之前', 297 | read:'3750', 298 | comment:'70', 299 | like:'190', 300 | pay:'0', 301 | src:'url(../../static/vue-demo-daily.jpg)' 302 | } 303 | } 304 | } 305 | state.show = show 306 | state.articles = article[show] 307 | }, 308 | DISPLAY_TOPIC (state, show) { 309 | const topic = { 310 | hot: { 311 | fir: { 312 | img:'../../static/vue-demo-hot.jpg', 313 | title:'游戏', 314 | par:'玩转简书的第一步,从这个专题开始。\ 315 | 想上首页热门榜么?好内容想被更多人看到么?来投稿吧!\ 316 | 如果被拒也不要灰心哦~入选文章会进一个队列挨个上首页,请耐心等待。\ 317 | 投稿必须原创。如果发现有非...', 318 | number:'97233', 319 | concern:'121.7k', 320 | keys:'故事、连载' 321 | }, 322 | sec: { 323 | img:'../../static/topic_3.jpg', 324 | title:'诗', 325 | par:'诗,让你感受自己的心灵。\ 326 | 专题主编:苏锦年 投稿须知:\ 327 | 1.本专题收录古诗、词、现代诗以及诗词点评及指导。\ 328 | 2.内容必须为原创,切勿用其他诗人的诗句。\ 329 | 3.文章排版整洁,注意...', 330 | number:'35420', 331 | concern:'146.6k', 332 | keys:'诗', 333 | time:'20160630' 334 | } 335 | }, 336 | recommend: { 337 | fir: { 338 | img:'../../static/topic_1.jpg', 339 | title:'游戏', 340 | par:'玩转简书的第一步,从这个专题开始。\ 341 | 想上首页热门榜么?好内容想被更多人看到么?来投稿吧!\ 342 | 如果被拒也不要灰心哦~入选文章会进一个队列挨个上首页,请耐心等待。\ 343 | 投稿必须原创。如果发现有非...', 344 | number:'97233', 345 | concern:'121.7', 346 | keys:'故事、连载', 347 | time:'20160620' 348 | }, 349 | sec: { 350 | img:'../../static/topic_3.jpg', 351 | title:'诗', 352 | par:'诗,让你感受自己的心灵。\ 353 | 专题主编:苏锦年 投稿须知:\ 354 | 1.本专题收录古诗、词、现代诗以及诗词点评及指导。\ 355 | 2.内容必须为原创,切勿用其他诗人的诗句。\ 356 | 3.文章排版整洁,注意...', 357 | number:'35420', 358 | concern:'146.6', 359 | keys:'诗', 360 | time:'20160630' 361 | }, 362 | thi: { 363 | img:'../../static/topic_2.jpg', 364 | title:'@IT互联网', 365 | par:'@IT 专题 由 IT大分类,转定位于IT·互联网行业观察与思考,数码产品极客体验。\ 366 | 主编:向右奔跑 http://www.jianshu.com/users/54b5900965ea...', 367 | number:'8409', 368 | concern:'111.1', 369 | keys:'互联网、产品、科技', 370 | time:'20160625' 371 | } 372 | } 373 | } 374 | state.show_2 = show 375 | state.topics = topic[show] 376 | }, 377 | SORTCONTENT (state, method){ 378 | const temp = state.topics 379 | let arr = [] 380 | let Arr = objClone(state.topics) 381 | switch(method){ 382 | case 'time': 383 | arr = [temp.fir.time, temp.sec.time, temp.thi.time].sort() 384 | break 385 | case 'concern': 386 | arr = [temp.fir.concern, temp.sec.concern, temp.thi.concern].sort() 387 | break 388 | default: 389 | break 390 | } 391 | for(let keys in state.topics){ 392 | if(Arr[keys][method] == arr[2]){ 393 | console.log(Arr[keys][method]) 394 | state.topics.fir = Arr[keys] 395 | } 396 | else if(Arr[keys][method] == arr[1]){ 397 | state.topics.sec = Arr[keys] 398 | } 399 | else if(Arr[keys][method] == arr[0]){ 400 | console.log(Arr[keys][method]) 401 | state.topics.thi = Arr[keys] 402 | } 403 | } 404 | function objClone(myObj){ 405 | if(typeof(myObj) != 'object') return myObj; 406 | if(myObj == null) return myObj; 407 | var myNewObj = new Object(); 408 | for(var i in myObj){ 409 | myNewObj[i] = objClone(myObj[i]); 410 | } 411 | return myNewObj; 412 | } 413 | }, 414 | CHANGELOGIN (state, loginway){ 415 | state.loginway = loginway 416 | } 417 | } 418 | export default new Vuex.Store({ 419 | state, 420 | mutations 421 | }) 422 | -------------------------------------------------------------------------------- /static/store.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue' 2 | import Vuex from 'vuex' 3 | 4 | Vue.use(Vuex) 5 | 6 | const state = { 7 | articles: { 8 | fir: { 9 | author: '徐丹妮', 10 | title: '我不是学霸,只是比你努力一点而已', 11 | time: '大约6小时之前', 12 | read: '8498', 13 | comment: '248', 14 | like: '2342', 15 | pay: '2', 16 | src: 'url(../../static/vue-demo-hot.jpg' 17 | }, 18 | sec: { 19 | author: '徐妮', 20 | title: '我不是学霸,只是比你努力一点而已', 21 | time: '大约6小时之前', 22 | read: '8498', 23 | comment: '248', 24 | like: '2342', 25 | pay: '2', 26 | src: 'url(../../static/vue-demo-hot.jpg' 27 | }, 28 | thi: { 29 | author: '徐双妮', 30 | title: '我不是学霸,只是比你努力一点而已', 31 | time: '大约6小时之前', 32 | read: '8498', 33 | comment: '248', 34 | like: '2342', 35 | pay: '2', 36 | src: 'url(../../static/vue-demo-hot.jpg' 37 | } 38 | }, 39 | texts: { 40 | Jan: { 41 | title: '给你90天,成为不一样的自己', 42 | content_1: "如果你应付不了现在的生活和工作", 43 | content_2: "无论你走到哪里,", 44 | content_3: "无论你换了什么工作,什么公司,", 45 | content_4: "都无济于事。", 46 | content_5: "因为你根本没想让自己成熟起来,", 47 | content_6: "想让变的更优秀也不过是一句口头禅。", 48 | author: '', 49 | bg: 'url(../../static/bonus_1.jpg)' 50 | }, 51 | Feb: { 52 | title: '使你更有思想的20本书', 53 | content_1: "真正伟大的当代文学,", 54 | content_2: "正如人们借由狄更斯来了解十九世纪的英国,", 55 | content_3: "后人也可以通过《自由》来了解", 56 | content_4: "二十一世纪初期的美国。", 57 | content_5: "", 58 | content_6: "", 59 | author: '', 60 | bg: 'url(../../static/bonus_2.jpg)' 61 | }, 62 | Mar: { 63 | title: '无感是最舒适的爱情', 64 | content_1: "爱情原本就是个很娇气的东西,", 65 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 66 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 67 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 68 | content_5: "才是爱情最原本的样子。", 69 | content_6: "当她不再刻意的感受他的存在,", 70 | author: '', 71 | bg: 'url(../../static/bonus_3.jpg)' 72 | }, 73 | Apr: { 74 | title: '无感是最舒适的爱情', 75 | content_1: "爱情原本就是个很娇气的东西,", 76 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 77 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 78 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 79 | content_5: "才是爱情最原本的样子。", 80 | content_6: "当她不再刻意的感受他的存在,", 81 | author: '', 82 | bg: 'url(../../static/bonus_4.jpg)' 83 | }, 84 | May: { 85 | title: '无感是最舒适的爱情', 86 | content_1: "爱情原本就是个很娇气的东西,", 87 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 88 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 89 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 90 | content_5: "才是爱情最原本的样子。", 91 | content_6: "当她不再刻意的感受他的存在,", 92 | author: '', 93 | bg: 'url(../../static/bonus_5.jpg)' 94 | }, 95 | Jun: { 96 | title: '无感是最舒适的爱情', 97 | content_1: "爱情原本就是个很娇气的东西,", 98 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 99 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 100 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 101 | content_5: "才是爱情最原本的样子。", 102 | content_6: "当她不再刻意的感受他的存在,", 103 | author: '', 104 | bg: 'url(../../static/bonus_6.jpg)' 105 | }, 106 | Jul: { 107 | title: '无感是最舒适的爱情', 108 | content_1: "爱情原本就是个很娇气的东西,", 109 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 110 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 111 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 112 | content_5: "才是爱情最原本的样子。", 113 | content_6: "当她不再刻意的感受他的存在,", 114 | author: '', 115 | bg: 'url(../../static/bonus_7.jpg)' 116 | }, 117 | Aug: { 118 | title: '无感是最舒适的爱情', 119 | content_1: "爱情原本就是个很娇气的东西,", 120 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 121 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 122 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 123 | content_5: "才是爱情最原本的样子。", 124 | content_6: "当她不再刻意的感受他的存在,", 125 | author: '', 126 | bg: 'url(../../static/bonus_8.jpg)' 127 | }, 128 | Sep: { 129 | title: '无感是最舒适的爱情', 130 | content_1: "爱情原本就是个很娇气的东西,", 131 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 132 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 133 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 134 | content_5: "才是爱情最原本的样子。", 135 | content_6: "当她不再刻意的感受他的存在,", 136 | author: '', 137 | bg: 'url(../../static/bonus_9.jpg)' 138 | }, 139 | Oct: { 140 | title: '无感是最舒适的爱情', 141 | content_1: "爱情原本就是个很娇气的东西,", 142 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 143 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 144 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 145 | content_5: "才是爱情最原本的样子。", 146 | content_6: "当她不再刻意的感受他的存在,", 147 | author: '', 148 | bg: 'url(../../static/bonus_10.jpg)' 149 | }, 150 | Nov: { 151 | title: '无感是最舒适的爱情', 152 | content_1: "爱情原本就是个很娇气的东西,", 153 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 154 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 155 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 156 | content_5: "才是爱情最原本的样子。", 157 | content_6: "当她不再刻意的感受他的存在,", 158 | author: '', 159 | bg: 'url(../../static/bonus_11.jpg)' 160 | }, 161 | Dec: { 162 | title: '无感是最舒适的爱情', 163 | content_1: "爱情原本就是个很娇气的东西,", 164 | content_2: "它经不起太多的矫情,你死我活和无理取闹,", 165 | content_3: "也经不起任何的伪装,刻意讨好和忍辱负重。", 166 | content_4: "当她拂去所有的惊喜,荣幸,不敢置信和小心翼翼,", 167 | content_5: "才是爱情最原本的样子。", 168 | content_6: "当她不再刻意的感受他的存在,", 169 | author: '', 170 | bg: 'url(../../static/bonus_12.jpg)' 171 | } 172 | }, 173 | topics: { 174 | fir: { 175 | img: 'url(../../static/topic_1.jpg', 176 | title: '游戏', 177 | par: '玩转简书的第一步,从这个专题开始。\ 178 | 想上首页热门榜么?好内容想被更多人看到么?来投稿吧!\ 179 | 如果被拒也不要灰心哦~入选文章会进一个队列挨个上首页,请耐心等待。\ 180 | 投稿必须原创。如果发现有非...', 181 | number: '97233', 182 | concern: '121.7', 183 | keys: '故事、连载', 184 | time: '20160620' 185 | }, 186 | sec: { 187 | img: 'url(../../static/topic_3.jpg', 188 | title: '诗', 189 | par: '诗,让你感受自己的心灵。\ 190 | 专题主编:苏锦年 投稿须知:\ 191 | 1.本专题收录古诗、词、现代诗以及诗词点评及指导。\ 192 | 2.内容必须为原创,切勿用其他诗人的诗句。\ 193 | 3.文章排版整洁,注意...', 194 | number: '35420', 195 | concern: '146.6', 196 | keys: '诗', 197 | time: '20160630' 198 | } 199 | }, 200 | show: 'hot', 201 | show_2: 'hot' 202 | } 203 | 204 | const mutations = { 205 | DISPLAY_ARTICLE (state, show) { 206 | const article = { 207 | hot: { 208 | fir: { 209 | author: '徐丹妮', 210 | title: '我不是学霸,只是比你努力一点而已', 211 | time: '大约6小时之前', 212 | read: '8498', 213 | comment: '248', 214 | like: '2342', 215 | pay: '2', 216 | src: 'url(../../static/vue-demo-hot.jpg)' 217 | }, 218 | sec: { 219 | author: '徐妮', 220 | title: '我不是学霸,只是比你努力一点而已', 221 | time: '大约6小时之前', 222 | read: '8498', 223 | comment: '248', 224 | like: '2342', 225 | pay: '2', 226 | src: 'url(../../static/vue-demo-hot.jpg)' 227 | }, 228 | thi: { 229 | author: '徐双妮', 230 | title: '我不是学霸,只是比你努力一点而已', 231 | time: '大约6小时之前', 232 | read: '8498', 233 | comment: '248', 234 | like: '2342', 235 | pay: '2', 236 | src: 'url(../../static/vue-demo-hot.jpg)' 237 | } 238 | }, 239 | new: { 240 | fir: { 241 | author: '阿俊', 242 | title: 'Learn by doing', 243 | time: '大约6小时之前', 244 | read: '3398', 245 | comment: '258', 246 | like: '232', 247 | pay: '88', 248 | src: 'url(../../static/vue-demo-new.jpg)' 249 | }, 250 | sec: { 251 | author: '阿猫', 252 | title: 'Learn by doing', 253 | time: '大约6小时之前', 254 | read: '3398', 255 | comment: '258', 256 | like: '232', 257 | pay: '88', 258 | src: 'url(../../static/vue-demo-new.jpg)' 259 | }, 260 | thi: { 261 | author: '阿狗', 262 | title: 'Learn by doing', 263 | time: '大约6小时之前', 264 | read: '3398', 265 | comment: '258', 266 | like: '232', 267 | pay: '88', 268 | src: 'url(../../static/vue-demo-new.jpg)' 269 | } 270 | }, 271 | daily: { 272 | fir: { 273 | author: '尸叔', 274 | title: '如何让你的自拍,惊爆朋友圈?看我是怎么设计的', 275 | time: '大约2小时之前', 276 | read: '3750', 277 | comment: '70', 278 | like: '190', 279 | pay: '0', 280 | src: '../../static/vue-demo-daily.jpg' 281 | }, 282 | sec: { 283 | author: '尸爸', 284 | title: '如何让你的自拍,惊爆朋友圈?看我是怎么设计的', 285 | time: '大约2小时之前', 286 | read: '3750', 287 | comment: '70', 288 | like: '190', 289 | pay: '0', 290 | src: '../../static/vue-demo-daily.jpg' 291 | }, 292 | thi: { 293 | author: '尸姐', 294 | title: '如何让你的自拍,惊爆朋友圈?看我是怎么设计的', 295 | time: '大约2小时之前', 296 | read: '3750', 297 | comment: '70', 298 | like: '190', 299 | pay: '0', 300 | src: '../../static/vue-demo-daily.jpg' 301 | } 302 | } 303 | } 304 | state.show = show 305 | state.articles = article[show] 306 | }, 307 | DISPLAY_TOPIC (state, show) { 308 | const topic = { 309 | hot: { 310 | fir: { 311 | img: 'url(../../static/vue-demo-hot.jpg', 312 | title: '游戏', 313 | par: '玩转简书的第一步,从这个专题开始。\ 314 | 想上首页热门榜么?好内容想被更多人看到么?来投稿吧!\ 315 | 如果被拒也不要灰心哦~入选文章会进一个队列挨个上首页,请耐心等待。\ 316 | 投稿必须原创。如果发现有非...', 317 | number: '97233', 318 | concern: '121.7k', 319 | keys: '故事、连载' 320 | }, 321 | sec: { 322 | img: 'url(../../static/topic_3.jpg', 323 | title: '诗', 324 | par: '诗,让你感受自己的心灵。\ 325 | 专题主编:苏锦年 投稿须知:\ 326 | 1.本专题收录古诗、词、现代诗以及诗词点评及指导。\ 327 | 2.内容必须为原创,切勿用其他诗人的诗句。\ 328 | 3.文章排版整洁,注意...', 329 | number: '35420', 330 | concern: '146.6k', 331 | keys: '诗', 332 | time: '20160630' 333 | } 334 | }, 335 | recommend: { 336 | fir: { 337 | img: 'url(../../static/topic_1.jpg', 338 | title: '游戏', 339 | par: '玩转简书的第一步,从这个专题开始。\ 340 | 想上首页热门榜么?好内容想被更多人看到么?来投稿吧!\ 341 | 如果被拒也不要灰心哦~入选文章会进一个队列挨个上首页,请耐心等待。\ 342 | 投稿必须原创。如果发现有非...', 343 | number: '97233', 344 | concern: '121.7', 345 | keys: '故事、连载', 346 | time: '20160620' 347 | }, 348 | sec: { 349 | img: 'url(../../static/topic_3.jpg', 350 | title: '诗', 351 | par: '诗,让你感受自己的心灵。\ 352 | 专题主编:苏锦年 投稿须知:\ 353 | 1.本专题收录古诗、词、现代诗以及诗词点评及指导。\ 354 | 2.内容必须为原创,切勿用其他诗人的诗句。\ 355 | 3.文章排版整洁,注意...', 356 | number: '35420', 357 | concern: '146.6', 358 | keys: '诗', 359 | time: '20160630' 360 | }, 361 | thi: { 362 | img: 'url(../../static/topic_2.jpg', 363 | title: '@IT互联网', 364 | par: '@IT 专题 由 IT大分类,转定位于IT·互联网行业观察与思考,数码产品极客体验。\ 365 | 主编:向右奔跑 http://www.jianshu.com/users/54b5900965ea...', 366 | number: '8409', 367 | concern: '111.1', 368 | keys: '互联网、产品、科技', 369 | time: '20160625' 370 | } 371 | } 372 | } 373 | state.show_2 = show 374 | state.topics = topic[show] 375 | }, 376 | SORTCONTENT (state, method){ 377 | const temp = state.topics 378 | let arr = [] 379 | let Arr = objClone(state.topics) 380 | switch (method) { 381 | case 'time': 382 | arr = [temp.fir.time, temp.sec.time, temp.thi.time].sort() 383 | break 384 | case 'concern': 385 | arr = [temp.fir.concern, temp.sec.concern, temp.thi.concern].sort() 386 | break 387 | default: 388 | break 389 | } 390 | for (let keys in state.topics) { 391 | if (Arr[keys][method] == arr[2]) { 392 | console.log(Arr[keys][method]) 393 | state.topics.fir = Arr[keys] 394 | } 395 | else if (Arr[keys][method] == arr[1]) { 396 | state.topics.sec = Arr[keys] 397 | } 398 | else if (Arr[keys][method] == arr[0]) { 399 | console.log(Arr[keys][method]) 400 | state.topics.thi = Arr[keys] 401 | } 402 | } 403 | function objClone(myObj) { 404 | if (typeof(myObj) != 'object') return myObj; 405 | if (myObj == null) return myObj; 406 | var myNewObj = new Object(); 407 | for (var i in myObj) { 408 | myNewObj[i] = objClone(myObj[i]); 409 | } 410 | return myNewObj; 411 | } 412 | } 413 | } 414 | export default new Vuex.Store({ 415 | state, 416 | mutations 417 | }) 418 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/less/variables.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | @fa-font-path: "../fonts"; 5 | @fa-font-size-base: 14px; 6 | @fa-line-height-base: 1; 7 | //@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts"; // for referencing Bootstrap CDN font files directly 8 | @fa-css-prefix: fa; 9 | @fa-version: "4.6.3"; 10 | @fa-border-color: #eee; 11 | @fa-inverse: #fff; 12 | @fa-li-width: (30em / 14); 13 | 14 | @fa-var-500px: "\f26e"; 15 | @fa-var-adjust: "\f042"; 16 | @fa-var-adn: "\f170"; 17 | @fa-var-align-center: "\f037"; 18 | @fa-var-align-justify: "\f039"; 19 | @fa-var-align-left: "\f036"; 20 | @fa-var-align-right: "\f038"; 21 | @fa-var-amazon: "\f270"; 22 | @fa-var-ambulance: "\f0f9"; 23 | @fa-var-american-sign-language-interpreting: "\f2a3"; 24 | @fa-var-anchor: "\f13d"; 25 | @fa-var-android: "\f17b"; 26 | @fa-var-angellist: "\f209"; 27 | @fa-var-angle-double-down: "\f103"; 28 | @fa-var-angle-double-left: "\f100"; 29 | @fa-var-angle-double-right: "\f101"; 30 | @fa-var-angle-double-up: "\f102"; 31 | @fa-var-angle-down: "\f107"; 32 | @fa-var-angle-left: "\f104"; 33 | @fa-var-angle-right: "\f105"; 34 | @fa-var-angle-up: "\f106"; 35 | @fa-var-apple: "\f179"; 36 | @fa-var-archive: "\f187"; 37 | @fa-var-area-chart: "\f1fe"; 38 | @fa-var-arrow-circle-down: "\f0ab"; 39 | @fa-var-arrow-circle-left: "\f0a8"; 40 | @fa-var-arrow-circle-o-down: "\f01a"; 41 | @fa-var-arrow-circle-o-left: "\f190"; 42 | @fa-var-arrow-circle-o-right: "\f18e"; 43 | @fa-var-arrow-circle-o-up: "\f01b"; 44 | @fa-var-arrow-circle-right: "\f0a9"; 45 | @fa-var-arrow-circle-up: "\f0aa"; 46 | @fa-var-arrow-down: "\f063"; 47 | @fa-var-arrow-left: "\f060"; 48 | @fa-var-arrow-right: "\f061"; 49 | @fa-var-arrow-up: "\f062"; 50 | @fa-var-arrows: "\f047"; 51 | @fa-var-arrows-alt: "\f0b2"; 52 | @fa-var-arrows-h: "\f07e"; 53 | @fa-var-arrows-v: "\f07d"; 54 | @fa-var-asl-interpreting: "\f2a3"; 55 | @fa-var-assistive-listening-systems: "\f2a2"; 56 | @fa-var-asterisk: "\f069"; 57 | @fa-var-at: "\f1fa"; 58 | @fa-var-audio-description: "\f29e"; 59 | @fa-var-automobile: "\f1b9"; 60 | @fa-var-backward: "\f04a"; 61 | @fa-var-balance-scale: "\f24e"; 62 | @fa-var-ban: "\f05e"; 63 | @fa-var-bank: "\f19c"; 64 | @fa-var-bar-chart: "\f080"; 65 | @fa-var-bar-chart-o: "\f080"; 66 | @fa-var-barcode: "\f02a"; 67 | @fa-var-bars: "\f0c9"; 68 | @fa-var-battery-0: "\f244"; 69 | @fa-var-battery-1: "\f243"; 70 | @fa-var-battery-2: "\f242"; 71 | @fa-var-battery-3: "\f241"; 72 | @fa-var-battery-4: "\f240"; 73 | @fa-var-battery-empty: "\f244"; 74 | @fa-var-battery-full: "\f240"; 75 | @fa-var-battery-half: "\f242"; 76 | @fa-var-battery-quarter: "\f243"; 77 | @fa-var-battery-three-quarters: "\f241"; 78 | @fa-var-bed: "\f236"; 79 | @fa-var-beer: "\f0fc"; 80 | @fa-var-behance: "\f1b4"; 81 | @fa-var-behance-square: "\f1b5"; 82 | @fa-var-bell: "\f0f3"; 83 | @fa-var-bell-o: "\f0a2"; 84 | @fa-var-bell-slash: "\f1f6"; 85 | @fa-var-bell-slash-o: "\f1f7"; 86 | @fa-var-bicycle: "\f206"; 87 | @fa-var-binoculars: "\f1e5"; 88 | @fa-var-birthday-cake: "\f1fd"; 89 | @fa-var-bitbucket: "\f171"; 90 | @fa-var-bitbucket-square: "\f172"; 91 | @fa-var-bitcoin: "\f15a"; 92 | @fa-var-black-tie: "\f27e"; 93 | @fa-var-blind: "\f29d"; 94 | @fa-var-bluetooth: "\f293"; 95 | @fa-var-bluetooth-b: "\f294"; 96 | @fa-var-bold: "\f032"; 97 | @fa-var-bolt: "\f0e7"; 98 | @fa-var-bomb: "\f1e2"; 99 | @fa-var-book: "\f02d"; 100 | @fa-var-bookmark: "\f02e"; 101 | @fa-var-bookmark-o: "\f097"; 102 | @fa-var-braille: "\f2a1"; 103 | @fa-var-briefcase: "\f0b1"; 104 | @fa-var-btc: "\f15a"; 105 | @fa-var-bug: "\f188"; 106 | @fa-var-building: "\f1ad"; 107 | @fa-var-building-o: "\f0f7"; 108 | @fa-var-bullhorn: "\f0a1"; 109 | @fa-var-bullseye: "\f140"; 110 | @fa-var-bus: "\f207"; 111 | @fa-var-buysellads: "\f20d"; 112 | @fa-var-cab: "\f1ba"; 113 | @fa-var-calculator: "\f1ec"; 114 | @fa-var-calendar: "\f073"; 115 | @fa-var-calendar-check-o: "\f274"; 116 | @fa-var-calendar-minus-o: "\f272"; 117 | @fa-var-calendar-o: "\f133"; 118 | @fa-var-calendar-plus-o: "\f271"; 119 | @fa-var-calendar-times-o: "\f273"; 120 | @fa-var-camera: "\f030"; 121 | @fa-var-camera-retro: "\f083"; 122 | @fa-var-car: "\f1b9"; 123 | @fa-var-caret-down: "\f0d7"; 124 | @fa-var-caret-left: "\f0d9"; 125 | @fa-var-caret-right: "\f0da"; 126 | @fa-var-caret-square-o-down: "\f150"; 127 | @fa-var-caret-square-o-left: "\f191"; 128 | @fa-var-caret-square-o-right: "\f152"; 129 | @fa-var-caret-square-o-up: "\f151"; 130 | @fa-var-caret-up: "\f0d8"; 131 | @fa-var-cart-arrow-down: "\f218"; 132 | @fa-var-cart-plus: "\f217"; 133 | @fa-var-cc: "\f20a"; 134 | @fa-var-cc-amex: "\f1f3"; 135 | @fa-var-cc-diners-club: "\f24c"; 136 | @fa-var-cc-discover: "\f1f2"; 137 | @fa-var-cc-jcb: "\f24b"; 138 | @fa-var-cc-mastercard: "\f1f1"; 139 | @fa-var-cc-paypal: "\f1f4"; 140 | @fa-var-cc-stripe: "\f1f5"; 141 | @fa-var-cc-visa: "\f1f0"; 142 | @fa-var-certificate: "\f0a3"; 143 | @fa-var-chain: "\f0c1"; 144 | @fa-var-chain-broken: "\f127"; 145 | @fa-var-check: "\f00c"; 146 | @fa-var-check-circle: "\f058"; 147 | @fa-var-check-circle-o: "\f05d"; 148 | @fa-var-check-square: "\f14a"; 149 | @fa-var-check-square-o: "\f046"; 150 | @fa-var-chevron-circle-down: "\f13a"; 151 | @fa-var-chevron-circle-left: "\f137"; 152 | @fa-var-chevron-circle-right: "\f138"; 153 | @fa-var-chevron-circle-up: "\f139"; 154 | @fa-var-chevron-down: "\f078"; 155 | @fa-var-chevron-left: "\f053"; 156 | @fa-var-chevron-right: "\f054"; 157 | @fa-var-chevron-up: "\f077"; 158 | @fa-var-child: "\f1ae"; 159 | @fa-var-chrome: "\f268"; 160 | @fa-var-circle: "\f111"; 161 | @fa-var-circle-o: "\f10c"; 162 | @fa-var-circle-o-notch: "\f1ce"; 163 | @fa-var-circle-thin: "\f1db"; 164 | @fa-var-clipboard: "\f0ea"; 165 | @fa-var-clock-o: "\f017"; 166 | @fa-var-clone: "\f24d"; 167 | @fa-var-close: "\f00d"; 168 | @fa-var-cloud: "\f0c2"; 169 | @fa-var-cloud-download: "\f0ed"; 170 | @fa-var-cloud-upload: "\f0ee"; 171 | @fa-var-cny: "\f157"; 172 | @fa-var-code: "\f121"; 173 | @fa-var-code-fork: "\f126"; 174 | @fa-var-codepen: "\f1cb"; 175 | @fa-var-codiepie: "\f284"; 176 | @fa-var-coffee: "\f0f4"; 177 | @fa-var-cog: "\f013"; 178 | @fa-var-cogs: "\f085"; 179 | @fa-var-columns: "\f0db"; 180 | @fa-var-comment: "\f075"; 181 | @fa-var-comment-o: "\f0e5"; 182 | @fa-var-commenting: "\f27a"; 183 | @fa-var-commenting-o: "\f27b"; 184 | @fa-var-comments: "\f086"; 185 | @fa-var-comments-o: "\f0e6"; 186 | @fa-var-compass: "\f14e"; 187 | @fa-var-compress: "\f066"; 188 | @fa-var-connectdevelop: "\f20e"; 189 | @fa-var-contao: "\f26d"; 190 | @fa-var-copy: "\f0c5"; 191 | @fa-var-copyright: "\f1f9"; 192 | @fa-var-creative-commons: "\f25e"; 193 | @fa-var-credit-card: "\f09d"; 194 | @fa-var-credit-card-alt: "\f283"; 195 | @fa-var-crop: "\f125"; 196 | @fa-var-crosshairs: "\f05b"; 197 | @fa-var-css3: "\f13c"; 198 | @fa-var-cube: "\f1b2"; 199 | @fa-var-cubes: "\f1b3"; 200 | @fa-var-cut: "\f0c4"; 201 | @fa-var-cutlery: "\f0f5"; 202 | @fa-var-dashboard: "\f0e4"; 203 | @fa-var-dashcube: "\f210"; 204 | @fa-var-database: "\f1c0"; 205 | @fa-var-deaf: "\f2a4"; 206 | @fa-var-deafness: "\f2a4"; 207 | @fa-var-dedent: "\f03b"; 208 | @fa-var-delicious: "\f1a5"; 209 | @fa-var-desktop: "\f108"; 210 | @fa-var-deviantart: "\f1bd"; 211 | @fa-var-diamond: "\f219"; 212 | @fa-var-digg: "\f1a6"; 213 | @fa-var-dollar: "\f155"; 214 | @fa-var-dot-circle-o: "\f192"; 215 | @fa-var-download: "\f019"; 216 | @fa-var-dribbble: "\f17d"; 217 | @fa-var-dropbox: "\f16b"; 218 | @fa-var-drupal: "\f1a9"; 219 | @fa-var-edge: "\f282"; 220 | @fa-var-edit: "\f044"; 221 | @fa-var-eject: "\f052"; 222 | @fa-var-ellipsis-h: "\f141"; 223 | @fa-var-ellipsis-v: "\f142"; 224 | @fa-var-empire: "\f1d1"; 225 | @fa-var-envelope: "\f0e0"; 226 | @fa-var-envelope-o: "\f003"; 227 | @fa-var-envelope-square: "\f199"; 228 | @fa-var-envira: "\f299"; 229 | @fa-var-eraser: "\f12d"; 230 | @fa-var-eur: "\f153"; 231 | @fa-var-euro: "\f153"; 232 | @fa-var-exchange: "\f0ec"; 233 | @fa-var-exclamation: "\f12a"; 234 | @fa-var-exclamation-circle: "\f06a"; 235 | @fa-var-exclamation-triangle: "\f071"; 236 | @fa-var-expand: "\f065"; 237 | @fa-var-expeditedssl: "\f23e"; 238 | @fa-var-external-link: "\f08e"; 239 | @fa-var-external-link-square: "\f14c"; 240 | @fa-var-eye: "\f06e"; 241 | @fa-var-eye-slash: "\f070"; 242 | @fa-var-eyedropper: "\f1fb"; 243 | @fa-var-fa: "\f2b4"; 244 | @fa-var-facebook: "\f09a"; 245 | @fa-var-facebook-f: "\f09a"; 246 | @fa-var-facebook-official: "\f230"; 247 | @fa-var-facebook-square: "\f082"; 248 | @fa-var-fast-backward: "\f049"; 249 | @fa-var-fast-forward: "\f050"; 250 | @fa-var-fax: "\f1ac"; 251 | @fa-var-feed: "\f09e"; 252 | @fa-var-female: "\f182"; 253 | @fa-var-fighter-jet: "\f0fb"; 254 | @fa-var-file: "\f15b"; 255 | @fa-var-file-archive-o: "\f1c6"; 256 | @fa-var-file-audio-o: "\f1c7"; 257 | @fa-var-file-code-o: "\f1c9"; 258 | @fa-var-file-excel-o: "\f1c3"; 259 | @fa-var-file-image-o: "\f1c5"; 260 | @fa-var-file-movie-o: "\f1c8"; 261 | @fa-var-file-o: "\f016"; 262 | @fa-var-file-pdf-o: "\f1c1"; 263 | @fa-var-file-photo-o: "\f1c5"; 264 | @fa-var-file-picture-o: "\f1c5"; 265 | @fa-var-file-powerpoint-o: "\f1c4"; 266 | @fa-var-file-sound-o: "\f1c7"; 267 | @fa-var-file-text: "\f15c"; 268 | @fa-var-file-text-o: "\f0f6"; 269 | @fa-var-file-video-o: "\f1c8"; 270 | @fa-var-file-word-o: "\f1c2"; 271 | @fa-var-file-zip-o: "\f1c6"; 272 | @fa-var-files-o: "\f0c5"; 273 | @fa-var-film: "\f008"; 274 | @fa-var-filter: "\f0b0"; 275 | @fa-var-fire: "\f06d"; 276 | @fa-var-fire-extinguisher: "\f134"; 277 | @fa-var-firefox: "\f269"; 278 | @fa-var-first-order: "\f2b0"; 279 | @fa-var-flag: "\f024"; 280 | @fa-var-flag-checkered: "\f11e"; 281 | @fa-var-flag-o: "\f11d"; 282 | @fa-var-flash: "\f0e7"; 283 | @fa-var-flask: "\f0c3"; 284 | @fa-var-flickr: "\f16e"; 285 | @fa-var-floppy-o: "\f0c7"; 286 | @fa-var-folder: "\f07b"; 287 | @fa-var-folder-o: "\f114"; 288 | @fa-var-folder-open: "\f07c"; 289 | @fa-var-folder-open-o: "\f115"; 290 | @fa-var-font: "\f031"; 291 | @fa-var-font-awesome: "\f2b4"; 292 | @fa-var-fonticons: "\f280"; 293 | @fa-var-fort-awesome: "\f286"; 294 | @fa-var-forumbee: "\f211"; 295 | @fa-var-forward: "\f04e"; 296 | @fa-var-foursquare: "\f180"; 297 | @fa-var-frown-o: "\f119"; 298 | @fa-var-futbol-o: "\f1e3"; 299 | @fa-var-gamepad: "\f11b"; 300 | @fa-var-gavel: "\f0e3"; 301 | @fa-var-gbp: "\f154"; 302 | @fa-var-ge: "\f1d1"; 303 | @fa-var-gear: "\f013"; 304 | @fa-var-gears: "\f085"; 305 | @fa-var-genderless: "\f22d"; 306 | @fa-var-get-pocket: "\f265"; 307 | @fa-var-gg: "\f260"; 308 | @fa-var-gg-circle: "\f261"; 309 | @fa-var-gift: "\f06b"; 310 | @fa-var-git: "\f1d3"; 311 | @fa-var-git-square: "\f1d2"; 312 | @fa-var-github: "\f09b"; 313 | @fa-var-github-alt: "\f113"; 314 | @fa-var-github-square: "\f092"; 315 | @fa-var-gitlab: "\f296"; 316 | @fa-var-gittip: "\f184"; 317 | @fa-var-glass: "\f000"; 318 | @fa-var-glide: "\f2a5"; 319 | @fa-var-glide-g: "\f2a6"; 320 | @fa-var-globe: "\f0ac"; 321 | @fa-var-google: "\f1a0"; 322 | @fa-var-google-plus: "\f0d5"; 323 | @fa-var-google-plus-circle: "\f2b3"; 324 | @fa-var-google-plus-official: "\f2b3"; 325 | @fa-var-google-plus-square: "\f0d4"; 326 | @fa-var-google-wallet: "\f1ee"; 327 | @fa-var-graduation-cap: "\f19d"; 328 | @fa-var-gratipay: "\f184"; 329 | @fa-var-group: "\f0c0"; 330 | @fa-var-h-square: "\f0fd"; 331 | @fa-var-hacker-news: "\f1d4"; 332 | @fa-var-hand-grab-o: "\f255"; 333 | @fa-var-hand-lizard-o: "\f258"; 334 | @fa-var-hand-o-down: "\f0a7"; 335 | @fa-var-hand-o-left: "\f0a5"; 336 | @fa-var-hand-o-right: "\f0a4"; 337 | @fa-var-hand-o-up: "\f0a6"; 338 | @fa-var-hand-paper-o: "\f256"; 339 | @fa-var-hand-peace-o: "\f25b"; 340 | @fa-var-hand-pointer-o: "\f25a"; 341 | @fa-var-hand-rock-o: "\f255"; 342 | @fa-var-hand-scissors-o: "\f257"; 343 | @fa-var-hand-spock-o: "\f259"; 344 | @fa-var-hand-stop-o: "\f256"; 345 | @fa-var-hard-of-hearing: "\f2a4"; 346 | @fa-var-hashtag: "\f292"; 347 | @fa-var-hdd-o: "\f0a0"; 348 | @fa-var-header: "\f1dc"; 349 | @fa-var-headphones: "\f025"; 350 | @fa-var-heart: "\f004"; 351 | @fa-var-heart-o: "\f08a"; 352 | @fa-var-heartbeat: "\f21e"; 353 | @fa-var-history: "\f1da"; 354 | @fa-var-home: "\f015"; 355 | @fa-var-hospital-o: "\f0f8"; 356 | @fa-var-hotel: "\f236"; 357 | @fa-var-hourglass: "\f254"; 358 | @fa-var-hourglass-1: "\f251"; 359 | @fa-var-hourglass-2: "\f252"; 360 | @fa-var-hourglass-3: "\f253"; 361 | @fa-var-hourglass-end: "\f253"; 362 | @fa-var-hourglass-half: "\f252"; 363 | @fa-var-hourglass-o: "\f250"; 364 | @fa-var-hourglass-start: "\f251"; 365 | @fa-var-houzz: "\f27c"; 366 | @fa-var-html5: "\f13b"; 367 | @fa-var-i-cursor: "\f246"; 368 | @fa-var-ils: "\f20b"; 369 | @fa-var-image: "\f03e"; 370 | @fa-var-inbox: "\f01c"; 371 | @fa-var-indent: "\f03c"; 372 | @fa-var-industry: "\f275"; 373 | @fa-var-info: "\f129"; 374 | @fa-var-info-circle: "\f05a"; 375 | @fa-var-inr: "\f156"; 376 | @fa-var-instagram: "\f16d"; 377 | @fa-var-institution: "\f19c"; 378 | @fa-var-internet-explorer: "\f26b"; 379 | @fa-var-intersex: "\f224"; 380 | @fa-var-ioxhost: "\f208"; 381 | @fa-var-italic: "\f033"; 382 | @fa-var-joomla: "\f1aa"; 383 | @fa-var-jpy: "\f157"; 384 | @fa-var-jsfiddle: "\f1cc"; 385 | @fa-var-key: "\f084"; 386 | @fa-var-keyboard-o: "\f11c"; 387 | @fa-var-krw: "\f159"; 388 | @fa-var-language: "\f1ab"; 389 | @fa-var-laptop: "\f109"; 390 | @fa-var-lastfm: "\f202"; 391 | @fa-var-lastfm-square: "\f203"; 392 | @fa-var-leaf: "\f06c"; 393 | @fa-var-leanpub: "\f212"; 394 | @fa-var-legal: "\f0e3"; 395 | @fa-var-lemon-o: "\f094"; 396 | @fa-var-level-down: "\f149"; 397 | @fa-var-level-up: "\f148"; 398 | @fa-var-life-bouy: "\f1cd"; 399 | @fa-var-life-buoy: "\f1cd"; 400 | @fa-var-life-ring: "\f1cd"; 401 | @fa-var-life-saver: "\f1cd"; 402 | @fa-var-lightbulb-o: "\f0eb"; 403 | @fa-var-line-chart: "\f201"; 404 | @fa-var-link: "\f0c1"; 405 | @fa-var-linkedin: "\f0e1"; 406 | @fa-var-linkedin-square: "\f08c"; 407 | @fa-var-linux: "\f17c"; 408 | @fa-var-list: "\f03a"; 409 | @fa-var-list-alt: "\f022"; 410 | @fa-var-list-ol: "\f0cb"; 411 | @fa-var-list-ul: "\f0ca"; 412 | @fa-var-location-arrow: "\f124"; 413 | @fa-var-lock: "\f023"; 414 | @fa-var-long-arrow-down: "\f175"; 415 | @fa-var-long-arrow-left: "\f177"; 416 | @fa-var-long-arrow-right: "\f178"; 417 | @fa-var-long-arrow-up: "\f176"; 418 | @fa-var-low-vision: "\f2a8"; 419 | @fa-var-magic: "\f0d0"; 420 | @fa-var-magnet: "\f076"; 421 | @fa-var-mail-forward: "\f064"; 422 | @fa-var-mail-reply: "\f112"; 423 | @fa-var-mail-reply-all: "\f122"; 424 | @fa-var-male: "\f183"; 425 | @fa-var-map: "\f279"; 426 | @fa-var-map-marker: "\f041"; 427 | @fa-var-map-o: "\f278"; 428 | @fa-var-map-pin: "\f276"; 429 | @fa-var-map-signs: "\f277"; 430 | @fa-var-mars: "\f222"; 431 | @fa-var-mars-double: "\f227"; 432 | @fa-var-mars-stroke: "\f229"; 433 | @fa-var-mars-stroke-h: "\f22b"; 434 | @fa-var-mars-stroke-v: "\f22a"; 435 | @fa-var-maxcdn: "\f136"; 436 | @fa-var-meanpath: "\f20c"; 437 | @fa-var-medium: "\f23a"; 438 | @fa-var-medkit: "\f0fa"; 439 | @fa-var-meh-o: "\f11a"; 440 | @fa-var-mercury: "\f223"; 441 | @fa-var-microphone: "\f130"; 442 | @fa-var-microphone-slash: "\f131"; 443 | @fa-var-minus: "\f068"; 444 | @fa-var-minus-circle: "\f056"; 445 | @fa-var-minus-square: "\f146"; 446 | @fa-var-minus-square-o: "\f147"; 447 | @fa-var-mixcloud: "\f289"; 448 | @fa-var-mobile: "\f10b"; 449 | @fa-var-mobile-phone: "\f10b"; 450 | @fa-var-modx: "\f285"; 451 | @fa-var-money: "\f0d6"; 452 | @fa-var-moon-o: "\f186"; 453 | @fa-var-mortar-board: "\f19d"; 454 | @fa-var-motorcycle: "\f21c"; 455 | @fa-var-mouse-pointer: "\f245"; 456 | @fa-var-music: "\f001"; 457 | @fa-var-navicon: "\f0c9"; 458 | @fa-var-neuter: "\f22c"; 459 | @fa-var-newspaper-o: "\f1ea"; 460 | @fa-var-object-group: "\f247"; 461 | @fa-var-object-ungroup: "\f248"; 462 | @fa-var-odnoklassniki: "\f263"; 463 | @fa-var-odnoklassniki-square: "\f264"; 464 | @fa-var-opencart: "\f23d"; 465 | @fa-var-openid: "\f19b"; 466 | @fa-var-opera: "\f26a"; 467 | @fa-var-optin-monster: "\f23c"; 468 | @fa-var-outdent: "\f03b"; 469 | @fa-var-pagelines: "\f18c"; 470 | @fa-var-paint-brush: "\f1fc"; 471 | @fa-var-paper-plane: "\f1d8"; 472 | @fa-var-paper-plane-o: "\f1d9"; 473 | @fa-var-paperclip: "\f0c6"; 474 | @fa-var-paragraph: "\f1dd"; 475 | @fa-var-paste: "\f0ea"; 476 | @fa-var-pause: "\f04c"; 477 | @fa-var-pause-circle: "\f28b"; 478 | @fa-var-pause-circle-o: "\f28c"; 479 | @fa-var-paw: "\f1b0"; 480 | @fa-var-paypal: "\f1ed"; 481 | @fa-var-pencil: "\f040"; 482 | @fa-var-pencil-square: "\f14b"; 483 | @fa-var-pencil-square-o: "\f044"; 484 | @fa-var-percent: "\f295"; 485 | @fa-var-phone: "\f095"; 486 | @fa-var-phone-square: "\f098"; 487 | @fa-var-photo: "\f03e"; 488 | @fa-var-picture-o: "\f03e"; 489 | @fa-var-pie-chart: "\f200"; 490 | @fa-var-pied-piper: "\f2ae"; 491 | @fa-var-pied-piper-alt: "\f1a8"; 492 | @fa-var-pied-piper-pp: "\f1a7"; 493 | @fa-var-pinterest: "\f0d2"; 494 | @fa-var-pinterest-p: "\f231"; 495 | @fa-var-pinterest-square: "\f0d3"; 496 | @fa-var-plane: "\f072"; 497 | @fa-var-play: "\f04b"; 498 | @fa-var-play-circle: "\f144"; 499 | @fa-var-play-circle-o: "\f01d"; 500 | @fa-var-plug: "\f1e6"; 501 | @fa-var-plus: "\f067"; 502 | @fa-var-plus-circle: "\f055"; 503 | @fa-var-plus-square: "\f0fe"; 504 | @fa-var-plus-square-o: "\f196"; 505 | @fa-var-power-off: "\f011"; 506 | @fa-var-print: "\f02f"; 507 | @fa-var-product-hunt: "\f288"; 508 | @fa-var-puzzle-piece: "\f12e"; 509 | @fa-var-qq: "\f1d6"; 510 | @fa-var-qrcode: "\f029"; 511 | @fa-var-question: "\f128"; 512 | @fa-var-question-circle: "\f059"; 513 | @fa-var-question-circle-o: "\f29c"; 514 | @fa-var-quote-left: "\f10d"; 515 | @fa-var-quote-right: "\f10e"; 516 | @fa-var-ra: "\f1d0"; 517 | @fa-var-random: "\f074"; 518 | @fa-var-rebel: "\f1d0"; 519 | @fa-var-recycle: "\f1b8"; 520 | @fa-var-reddit: "\f1a1"; 521 | @fa-var-reddit-alien: "\f281"; 522 | @fa-var-reddit-square: "\f1a2"; 523 | @fa-var-refresh: "\f021"; 524 | @fa-var-registered: "\f25d"; 525 | @fa-var-remove: "\f00d"; 526 | @fa-var-renren: "\f18b"; 527 | @fa-var-reorder: "\f0c9"; 528 | @fa-var-repeat: "\f01e"; 529 | @fa-var-reply: "\f112"; 530 | @fa-var-reply-all: "\f122"; 531 | @fa-var-resistance: "\f1d0"; 532 | @fa-var-retweet: "\f079"; 533 | @fa-var-rmb: "\f157"; 534 | @fa-var-road: "\f018"; 535 | @fa-var-rocket: "\f135"; 536 | @fa-var-rotate-left: "\f0e2"; 537 | @fa-var-rotate-right: "\f01e"; 538 | @fa-var-rouble: "\f158"; 539 | @fa-var-rss: "\f09e"; 540 | @fa-var-rss-square: "\f143"; 541 | @fa-var-rub: "\f158"; 542 | @fa-var-ruble: "\f158"; 543 | @fa-var-rupee: "\f156"; 544 | @fa-var-safari: "\f267"; 545 | @fa-var-save: "\f0c7"; 546 | @fa-var-scissors: "\f0c4"; 547 | @fa-var-scribd: "\f28a"; 548 | @fa-var-search: "\f002"; 549 | @fa-var-search-minus: "\f010"; 550 | @fa-var-search-plus: "\f00e"; 551 | @fa-var-sellsy: "\f213"; 552 | @fa-var-send: "\f1d8"; 553 | @fa-var-send-o: "\f1d9"; 554 | @fa-var-server: "\f233"; 555 | @fa-var-share: "\f064"; 556 | @fa-var-share-alt: "\f1e0"; 557 | @fa-var-share-alt-square: "\f1e1"; 558 | @fa-var-share-square: "\f14d"; 559 | @fa-var-share-square-o: "\f045"; 560 | @fa-var-shekel: "\f20b"; 561 | @fa-var-sheqel: "\f20b"; 562 | @fa-var-shield: "\f132"; 563 | @fa-var-ship: "\f21a"; 564 | @fa-var-shirtsinbulk: "\f214"; 565 | @fa-var-shopping-bag: "\f290"; 566 | @fa-var-shopping-basket: "\f291"; 567 | @fa-var-shopping-cart: "\f07a"; 568 | @fa-var-sign-in: "\f090"; 569 | @fa-var-sign-language: "\f2a7"; 570 | @fa-var-sign-out: "\f08b"; 571 | @fa-var-signal: "\f012"; 572 | @fa-var-signing: "\f2a7"; 573 | @fa-var-simplybuilt: "\f215"; 574 | @fa-var-sitemap: "\f0e8"; 575 | @fa-var-skyatlas: "\f216"; 576 | @fa-var-skype: "\f17e"; 577 | @fa-var-slack: "\f198"; 578 | @fa-var-sliders: "\f1de"; 579 | @fa-var-slideshare: "\f1e7"; 580 | @fa-var-smile-o: "\f118"; 581 | @fa-var-snapchat: "\f2ab"; 582 | @fa-var-snapchat-ghost: "\f2ac"; 583 | @fa-var-snapchat-square: "\f2ad"; 584 | @fa-var-soccer-ball-o: "\f1e3"; 585 | @fa-var-sort: "\f0dc"; 586 | @fa-var-sort-alpha-asc: "\f15d"; 587 | @fa-var-sort-alpha-desc: "\f15e"; 588 | @fa-var-sort-amount-asc: "\f160"; 589 | @fa-var-sort-amount-desc: "\f161"; 590 | @fa-var-sort-asc: "\f0de"; 591 | @fa-var-sort-desc: "\f0dd"; 592 | @fa-var-sort-down: "\f0dd"; 593 | @fa-var-sort-numeric-asc: "\f162"; 594 | @fa-var-sort-numeric-desc: "\f163"; 595 | @fa-var-sort-up: "\f0de"; 596 | @fa-var-soundcloud: "\f1be"; 597 | @fa-var-space-shuttle: "\f197"; 598 | @fa-var-spinner: "\f110"; 599 | @fa-var-spoon: "\f1b1"; 600 | @fa-var-spotify: "\f1bc"; 601 | @fa-var-square: "\f0c8"; 602 | @fa-var-square-o: "\f096"; 603 | @fa-var-stack-exchange: "\f18d"; 604 | @fa-var-stack-overflow: "\f16c"; 605 | @fa-var-star: "\f005"; 606 | @fa-var-star-half: "\f089"; 607 | @fa-var-star-half-empty: "\f123"; 608 | @fa-var-star-half-full: "\f123"; 609 | @fa-var-star-half-o: "\f123"; 610 | @fa-var-star-o: "\f006"; 611 | @fa-var-steam: "\f1b6"; 612 | @fa-var-steam-square: "\f1b7"; 613 | @fa-var-step-backward: "\f048"; 614 | @fa-var-step-forward: "\f051"; 615 | @fa-var-stethoscope: "\f0f1"; 616 | @fa-var-sticky-note: "\f249"; 617 | @fa-var-sticky-note-o: "\f24a"; 618 | @fa-var-stop: "\f04d"; 619 | @fa-var-stop-circle: "\f28d"; 620 | @fa-var-stop-circle-o: "\f28e"; 621 | @fa-var-street-view: "\f21d"; 622 | @fa-var-strikethrough: "\f0cc"; 623 | @fa-var-stumbleupon: "\f1a4"; 624 | @fa-var-stumbleupon-circle: "\f1a3"; 625 | @fa-var-subscript: "\f12c"; 626 | @fa-var-subway: "\f239"; 627 | @fa-var-suitcase: "\f0f2"; 628 | @fa-var-sun-o: "\f185"; 629 | @fa-var-superscript: "\f12b"; 630 | @fa-var-support: "\f1cd"; 631 | @fa-var-table: "\f0ce"; 632 | @fa-var-tablet: "\f10a"; 633 | @fa-var-tachometer: "\f0e4"; 634 | @fa-var-tag: "\f02b"; 635 | @fa-var-tags: "\f02c"; 636 | @fa-var-tasks: "\f0ae"; 637 | @fa-var-taxi: "\f1ba"; 638 | @fa-var-television: "\f26c"; 639 | @fa-var-tencent-weibo: "\f1d5"; 640 | @fa-var-terminal: "\f120"; 641 | @fa-var-text-height: "\f034"; 642 | @fa-var-text-width: "\f035"; 643 | @fa-var-th: "\f00a"; 644 | @fa-var-th-large: "\f009"; 645 | @fa-var-th-list: "\f00b"; 646 | @fa-var-themeisle: "\f2b2"; 647 | @fa-var-thumb-tack: "\f08d"; 648 | @fa-var-thumbs-down: "\f165"; 649 | @fa-var-thumbs-o-down: "\f088"; 650 | @fa-var-thumbs-o-up: "\f087"; 651 | @fa-var-thumbs-up: "\f164"; 652 | @fa-var-ticket: "\f145"; 653 | @fa-var-times: "\f00d"; 654 | @fa-var-times-circle: "\f057"; 655 | @fa-var-times-circle-o: "\f05c"; 656 | @fa-var-tint: "\f043"; 657 | @fa-var-toggle-down: "\f150"; 658 | @fa-var-toggle-left: "\f191"; 659 | @fa-var-toggle-off: "\f204"; 660 | @fa-var-toggle-on: "\f205"; 661 | @fa-var-toggle-right: "\f152"; 662 | @fa-var-toggle-up: "\f151"; 663 | @fa-var-trademark: "\f25c"; 664 | @fa-var-train: "\f238"; 665 | @fa-var-transgender: "\f224"; 666 | @fa-var-transgender-alt: "\f225"; 667 | @fa-var-trash: "\f1f8"; 668 | @fa-var-trash-o: "\f014"; 669 | @fa-var-tree: "\f1bb"; 670 | @fa-var-trello: "\f181"; 671 | @fa-var-tripadvisor: "\f262"; 672 | @fa-var-trophy: "\f091"; 673 | @fa-var-truck: "\f0d1"; 674 | @fa-var-try: "\f195"; 675 | @fa-var-tty: "\f1e4"; 676 | @fa-var-tumblr: "\f173"; 677 | @fa-var-tumblr-square: "\f174"; 678 | @fa-var-turkish-lira: "\f195"; 679 | @fa-var-tv: "\f26c"; 680 | @fa-var-twitch: "\f1e8"; 681 | @fa-var-twitter: "\f099"; 682 | @fa-var-twitter-square: "\f081"; 683 | @fa-var-umbrella: "\f0e9"; 684 | @fa-var-underline: "\f0cd"; 685 | @fa-var-undo: "\f0e2"; 686 | @fa-var-universal-access: "\f29a"; 687 | @fa-var-university: "\f19c"; 688 | @fa-var-unlink: "\f127"; 689 | @fa-var-unlock: "\f09c"; 690 | @fa-var-unlock-alt: "\f13e"; 691 | @fa-var-unsorted: "\f0dc"; 692 | @fa-var-upload: "\f093"; 693 | @fa-var-usb: "\f287"; 694 | @fa-var-usd: "\f155"; 695 | @fa-var-user: "\f007"; 696 | @fa-var-user-md: "\f0f0"; 697 | @fa-var-user-plus: "\f234"; 698 | @fa-var-user-secret: "\f21b"; 699 | @fa-var-user-times: "\f235"; 700 | @fa-var-users: "\f0c0"; 701 | @fa-var-venus: "\f221"; 702 | @fa-var-venus-double: "\f226"; 703 | @fa-var-venus-mars: "\f228"; 704 | @fa-var-viacoin: "\f237"; 705 | @fa-var-viadeo: "\f2a9"; 706 | @fa-var-viadeo-square: "\f2aa"; 707 | @fa-var-video-camera: "\f03d"; 708 | @fa-var-vimeo: "\f27d"; 709 | @fa-var-vimeo-square: "\f194"; 710 | @fa-var-vine: "\f1ca"; 711 | @fa-var-vk: "\f189"; 712 | @fa-var-volume-control-phone: "\f2a0"; 713 | @fa-var-volume-down: "\f027"; 714 | @fa-var-volume-off: "\f026"; 715 | @fa-var-volume-up: "\f028"; 716 | @fa-var-warning: "\f071"; 717 | @fa-var-wechat: "\f1d7"; 718 | @fa-var-weibo: "\f18a"; 719 | @fa-var-weixin: "\f1d7"; 720 | @fa-var-whatsapp: "\f232"; 721 | @fa-var-wheelchair: "\f193"; 722 | @fa-var-wheelchair-alt: "\f29b"; 723 | @fa-var-wifi: "\f1eb"; 724 | @fa-var-wikipedia-w: "\f266"; 725 | @fa-var-windows: "\f17a"; 726 | @fa-var-won: "\f159"; 727 | @fa-var-wordpress: "\f19a"; 728 | @fa-var-wpbeginner: "\f297"; 729 | @fa-var-wpforms: "\f298"; 730 | @fa-var-wrench: "\f0ad"; 731 | @fa-var-xing: "\f168"; 732 | @fa-var-xing-square: "\f169"; 733 | @fa-var-y-combinator: "\f23b"; 734 | @fa-var-y-combinator-square: "\f1d4"; 735 | @fa-var-yahoo: "\f19e"; 736 | @fa-var-yc: "\f23b"; 737 | @fa-var-yc-square: "\f1d4"; 738 | @fa-var-yelp: "\f1e9"; 739 | @fa-var-yen: "\f157"; 740 | @fa-var-yoast: "\f2b1"; 741 | @fa-var-youtube: "\f167"; 742 | @fa-var-youtube-play: "\f16a"; 743 | @fa-var-youtube-square: "\f166"; 744 | 745 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | $fa-font-path: "../fonts" !default; 5 | $fa-font-size-base: 14px !default; 6 | $fa-line-height-base: 1 !default; 7 | //$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts" !default; // for referencing Bootstrap CDN font files directly 8 | $fa-css-prefix: fa !default; 9 | $fa-version: "4.6.3" !default; 10 | $fa-border-color: #eee !default; 11 | $fa-inverse: #fff !default; 12 | $fa-li-width: (30em / 14) !default; 13 | 14 | $fa-var-500px: "\f26e"; 15 | $fa-var-adjust: "\f042"; 16 | $fa-var-adn: "\f170"; 17 | $fa-var-align-center: "\f037"; 18 | $fa-var-align-justify: "\f039"; 19 | $fa-var-align-left: "\f036"; 20 | $fa-var-align-right: "\f038"; 21 | $fa-var-amazon: "\f270"; 22 | $fa-var-ambulance: "\f0f9"; 23 | $fa-var-american-sign-language-interpreting: "\f2a3"; 24 | $fa-var-anchor: "\f13d"; 25 | $fa-var-android: "\f17b"; 26 | $fa-var-angellist: "\f209"; 27 | $fa-var-angle-double-down: "\f103"; 28 | $fa-var-angle-double-left: "\f100"; 29 | $fa-var-angle-double-right: "\f101"; 30 | $fa-var-angle-double-up: "\f102"; 31 | $fa-var-angle-down: "\f107"; 32 | $fa-var-angle-left: "\f104"; 33 | $fa-var-angle-right: "\f105"; 34 | $fa-var-angle-up: "\f106"; 35 | $fa-var-apple: "\f179"; 36 | $fa-var-archive: "\f187"; 37 | $fa-var-area-chart: "\f1fe"; 38 | $fa-var-arrow-circle-down: "\f0ab"; 39 | $fa-var-arrow-circle-left: "\f0a8"; 40 | $fa-var-arrow-circle-o-down: "\f01a"; 41 | $fa-var-arrow-circle-o-left: "\f190"; 42 | $fa-var-arrow-circle-o-right: "\f18e"; 43 | $fa-var-arrow-circle-o-up: "\f01b"; 44 | $fa-var-arrow-circle-right: "\f0a9"; 45 | $fa-var-arrow-circle-up: "\f0aa"; 46 | $fa-var-arrow-down: "\f063"; 47 | $fa-var-arrow-left: "\f060"; 48 | $fa-var-arrow-right: "\f061"; 49 | $fa-var-arrow-up: "\f062"; 50 | $fa-var-arrows: "\f047"; 51 | $fa-var-arrows-alt: "\f0b2"; 52 | $fa-var-arrows-h: "\f07e"; 53 | $fa-var-arrows-v: "\f07d"; 54 | $fa-var-asl-interpreting: "\f2a3"; 55 | $fa-var-assistive-listening-systems: "\f2a2"; 56 | $fa-var-asterisk: "\f069"; 57 | $fa-var-at: "\f1fa"; 58 | $fa-var-audio-description: "\f29e"; 59 | $fa-var-automobile: "\f1b9"; 60 | $fa-var-backward: "\f04a"; 61 | $fa-var-balance-scale: "\f24e"; 62 | $fa-var-ban: "\f05e"; 63 | $fa-var-bank: "\f19c"; 64 | $fa-var-bar-chart: "\f080"; 65 | $fa-var-bar-chart-o: "\f080"; 66 | $fa-var-barcode: "\f02a"; 67 | $fa-var-bars: "\f0c9"; 68 | $fa-var-battery-0: "\f244"; 69 | $fa-var-battery-1: "\f243"; 70 | $fa-var-battery-2: "\f242"; 71 | $fa-var-battery-3: "\f241"; 72 | $fa-var-battery-4: "\f240"; 73 | $fa-var-battery-empty: "\f244"; 74 | $fa-var-battery-full: "\f240"; 75 | $fa-var-battery-half: "\f242"; 76 | $fa-var-battery-quarter: "\f243"; 77 | $fa-var-battery-three-quarters: "\f241"; 78 | $fa-var-bed: "\f236"; 79 | $fa-var-beer: "\f0fc"; 80 | $fa-var-behance: "\f1b4"; 81 | $fa-var-behance-square: "\f1b5"; 82 | $fa-var-bell: "\f0f3"; 83 | $fa-var-bell-o: "\f0a2"; 84 | $fa-var-bell-slash: "\f1f6"; 85 | $fa-var-bell-slash-o: "\f1f7"; 86 | $fa-var-bicycle: "\f206"; 87 | $fa-var-binoculars: "\f1e5"; 88 | $fa-var-birthday-cake: "\f1fd"; 89 | $fa-var-bitbucket: "\f171"; 90 | $fa-var-bitbucket-square: "\f172"; 91 | $fa-var-bitcoin: "\f15a"; 92 | $fa-var-black-tie: "\f27e"; 93 | $fa-var-blind: "\f29d"; 94 | $fa-var-bluetooth: "\f293"; 95 | $fa-var-bluetooth-b: "\f294"; 96 | $fa-var-bold: "\f032"; 97 | $fa-var-bolt: "\f0e7"; 98 | $fa-var-bomb: "\f1e2"; 99 | $fa-var-book: "\f02d"; 100 | $fa-var-bookmark: "\f02e"; 101 | $fa-var-bookmark-o: "\f097"; 102 | $fa-var-braille: "\f2a1"; 103 | $fa-var-briefcase: "\f0b1"; 104 | $fa-var-btc: "\f15a"; 105 | $fa-var-bug: "\f188"; 106 | $fa-var-building: "\f1ad"; 107 | $fa-var-building-o: "\f0f7"; 108 | $fa-var-bullhorn: "\f0a1"; 109 | $fa-var-bullseye: "\f140"; 110 | $fa-var-bus: "\f207"; 111 | $fa-var-buysellads: "\f20d"; 112 | $fa-var-cab: "\f1ba"; 113 | $fa-var-calculator: "\f1ec"; 114 | $fa-var-calendar: "\f073"; 115 | $fa-var-calendar-check-o: "\f274"; 116 | $fa-var-calendar-minus-o: "\f272"; 117 | $fa-var-calendar-o: "\f133"; 118 | $fa-var-calendar-plus-o: "\f271"; 119 | $fa-var-calendar-times-o: "\f273"; 120 | $fa-var-camera: "\f030"; 121 | $fa-var-camera-retro: "\f083"; 122 | $fa-var-car: "\f1b9"; 123 | $fa-var-caret-down: "\f0d7"; 124 | $fa-var-caret-left: "\f0d9"; 125 | $fa-var-caret-right: "\f0da"; 126 | $fa-var-caret-square-o-down: "\f150"; 127 | $fa-var-caret-square-o-left: "\f191"; 128 | $fa-var-caret-square-o-right: "\f152"; 129 | $fa-var-caret-square-o-up: "\f151"; 130 | $fa-var-caret-up: "\f0d8"; 131 | $fa-var-cart-arrow-down: "\f218"; 132 | $fa-var-cart-plus: "\f217"; 133 | $fa-var-cc: "\f20a"; 134 | $fa-var-cc-amex: "\f1f3"; 135 | $fa-var-cc-diners-club: "\f24c"; 136 | $fa-var-cc-discover: "\f1f2"; 137 | $fa-var-cc-jcb: "\f24b"; 138 | $fa-var-cc-mastercard: "\f1f1"; 139 | $fa-var-cc-paypal: "\f1f4"; 140 | $fa-var-cc-stripe: "\f1f5"; 141 | $fa-var-cc-visa: "\f1f0"; 142 | $fa-var-certificate: "\f0a3"; 143 | $fa-var-chain: "\f0c1"; 144 | $fa-var-chain-broken: "\f127"; 145 | $fa-var-check: "\f00c"; 146 | $fa-var-check-circle: "\f058"; 147 | $fa-var-check-circle-o: "\f05d"; 148 | $fa-var-check-square: "\f14a"; 149 | $fa-var-check-square-o: "\f046"; 150 | $fa-var-chevron-circle-down: "\f13a"; 151 | $fa-var-chevron-circle-left: "\f137"; 152 | $fa-var-chevron-circle-right: "\f138"; 153 | $fa-var-chevron-circle-up: "\f139"; 154 | $fa-var-chevron-down: "\f078"; 155 | $fa-var-chevron-left: "\f053"; 156 | $fa-var-chevron-right: "\f054"; 157 | $fa-var-chevron-up: "\f077"; 158 | $fa-var-child: "\f1ae"; 159 | $fa-var-chrome: "\f268"; 160 | $fa-var-circle: "\f111"; 161 | $fa-var-circle-o: "\f10c"; 162 | $fa-var-circle-o-notch: "\f1ce"; 163 | $fa-var-circle-thin: "\f1db"; 164 | $fa-var-clipboard: "\f0ea"; 165 | $fa-var-clock-o: "\f017"; 166 | $fa-var-clone: "\f24d"; 167 | $fa-var-close: "\f00d"; 168 | $fa-var-cloud: "\f0c2"; 169 | $fa-var-cloud-download: "\f0ed"; 170 | $fa-var-cloud-upload: "\f0ee"; 171 | $fa-var-cny: "\f157"; 172 | $fa-var-code: "\f121"; 173 | $fa-var-code-fork: "\f126"; 174 | $fa-var-codepen: "\f1cb"; 175 | $fa-var-codiepie: "\f284"; 176 | $fa-var-coffee: "\f0f4"; 177 | $fa-var-cog: "\f013"; 178 | $fa-var-cogs: "\f085"; 179 | $fa-var-columns: "\f0db"; 180 | $fa-var-comment: "\f075"; 181 | $fa-var-comment-o: "\f0e5"; 182 | $fa-var-commenting: "\f27a"; 183 | $fa-var-commenting-o: "\f27b"; 184 | $fa-var-comments: "\f086"; 185 | $fa-var-comments-o: "\f0e6"; 186 | $fa-var-compass: "\f14e"; 187 | $fa-var-compress: "\f066"; 188 | $fa-var-connectdevelop: "\f20e"; 189 | $fa-var-contao: "\f26d"; 190 | $fa-var-copy: "\f0c5"; 191 | $fa-var-copyright: "\f1f9"; 192 | $fa-var-creative-commons: "\f25e"; 193 | $fa-var-credit-card: "\f09d"; 194 | $fa-var-credit-card-alt: "\f283"; 195 | $fa-var-crop: "\f125"; 196 | $fa-var-crosshairs: "\f05b"; 197 | $fa-var-css3: "\f13c"; 198 | $fa-var-cube: "\f1b2"; 199 | $fa-var-cubes: "\f1b3"; 200 | $fa-var-cut: "\f0c4"; 201 | $fa-var-cutlery: "\f0f5"; 202 | $fa-var-dashboard: "\f0e4"; 203 | $fa-var-dashcube: "\f210"; 204 | $fa-var-database: "\f1c0"; 205 | $fa-var-deaf: "\f2a4"; 206 | $fa-var-deafness: "\f2a4"; 207 | $fa-var-dedent: "\f03b"; 208 | $fa-var-delicious: "\f1a5"; 209 | $fa-var-desktop: "\f108"; 210 | $fa-var-deviantart: "\f1bd"; 211 | $fa-var-diamond: "\f219"; 212 | $fa-var-digg: "\f1a6"; 213 | $fa-var-dollar: "\f155"; 214 | $fa-var-dot-circle-o: "\f192"; 215 | $fa-var-download: "\f019"; 216 | $fa-var-dribbble: "\f17d"; 217 | $fa-var-dropbox: "\f16b"; 218 | $fa-var-drupal: "\f1a9"; 219 | $fa-var-edge: "\f282"; 220 | $fa-var-edit: "\f044"; 221 | $fa-var-eject: "\f052"; 222 | $fa-var-ellipsis-h: "\f141"; 223 | $fa-var-ellipsis-v: "\f142"; 224 | $fa-var-empire: "\f1d1"; 225 | $fa-var-envelope: "\f0e0"; 226 | $fa-var-envelope-o: "\f003"; 227 | $fa-var-envelope-square: "\f199"; 228 | $fa-var-envira: "\f299"; 229 | $fa-var-eraser: "\f12d"; 230 | $fa-var-eur: "\f153"; 231 | $fa-var-euro: "\f153"; 232 | $fa-var-exchange: "\f0ec"; 233 | $fa-var-exclamation: "\f12a"; 234 | $fa-var-exclamation-circle: "\f06a"; 235 | $fa-var-exclamation-triangle: "\f071"; 236 | $fa-var-expand: "\f065"; 237 | $fa-var-expeditedssl: "\f23e"; 238 | $fa-var-external-link: "\f08e"; 239 | $fa-var-external-link-square: "\f14c"; 240 | $fa-var-eye: "\f06e"; 241 | $fa-var-eye-slash: "\f070"; 242 | $fa-var-eyedropper: "\f1fb"; 243 | $fa-var-fa: "\f2b4"; 244 | $fa-var-facebook: "\f09a"; 245 | $fa-var-facebook-f: "\f09a"; 246 | $fa-var-facebook-official: "\f230"; 247 | $fa-var-facebook-square: "\f082"; 248 | $fa-var-fast-backward: "\f049"; 249 | $fa-var-fast-forward: "\f050"; 250 | $fa-var-fax: "\f1ac"; 251 | $fa-var-feed: "\f09e"; 252 | $fa-var-female: "\f182"; 253 | $fa-var-fighter-jet: "\f0fb"; 254 | $fa-var-file: "\f15b"; 255 | $fa-var-file-archive-o: "\f1c6"; 256 | $fa-var-file-audio-o: "\f1c7"; 257 | $fa-var-file-code-o: "\f1c9"; 258 | $fa-var-file-excel-o: "\f1c3"; 259 | $fa-var-file-image-o: "\f1c5"; 260 | $fa-var-file-movie-o: "\f1c8"; 261 | $fa-var-file-o: "\f016"; 262 | $fa-var-file-pdf-o: "\f1c1"; 263 | $fa-var-file-photo-o: "\f1c5"; 264 | $fa-var-file-picture-o: "\f1c5"; 265 | $fa-var-file-powerpoint-o: "\f1c4"; 266 | $fa-var-file-sound-o: "\f1c7"; 267 | $fa-var-file-text: "\f15c"; 268 | $fa-var-file-text-o: "\f0f6"; 269 | $fa-var-file-video-o: "\f1c8"; 270 | $fa-var-file-word-o: "\f1c2"; 271 | $fa-var-file-zip-o: "\f1c6"; 272 | $fa-var-files-o: "\f0c5"; 273 | $fa-var-film: "\f008"; 274 | $fa-var-filter: "\f0b0"; 275 | $fa-var-fire: "\f06d"; 276 | $fa-var-fire-extinguisher: "\f134"; 277 | $fa-var-firefox: "\f269"; 278 | $fa-var-first-order: "\f2b0"; 279 | $fa-var-flag: "\f024"; 280 | $fa-var-flag-checkered: "\f11e"; 281 | $fa-var-flag-o: "\f11d"; 282 | $fa-var-flash: "\f0e7"; 283 | $fa-var-flask: "\f0c3"; 284 | $fa-var-flickr: "\f16e"; 285 | $fa-var-floppy-o: "\f0c7"; 286 | $fa-var-folder: "\f07b"; 287 | $fa-var-folder-o: "\f114"; 288 | $fa-var-folder-open: "\f07c"; 289 | $fa-var-folder-open-o: "\f115"; 290 | $fa-var-font: "\f031"; 291 | $fa-var-font-awesome: "\f2b4"; 292 | $fa-var-fonticons: "\f280"; 293 | $fa-var-fort-awesome: "\f286"; 294 | $fa-var-forumbee: "\f211"; 295 | $fa-var-forward: "\f04e"; 296 | $fa-var-foursquare: "\f180"; 297 | $fa-var-frown-o: "\f119"; 298 | $fa-var-futbol-o: "\f1e3"; 299 | $fa-var-gamepad: "\f11b"; 300 | $fa-var-gavel: "\f0e3"; 301 | $fa-var-gbp: "\f154"; 302 | $fa-var-ge: "\f1d1"; 303 | $fa-var-gear: "\f013"; 304 | $fa-var-gears: "\f085"; 305 | $fa-var-genderless: "\f22d"; 306 | $fa-var-get-pocket: "\f265"; 307 | $fa-var-gg: "\f260"; 308 | $fa-var-gg-circle: "\f261"; 309 | $fa-var-gift: "\f06b"; 310 | $fa-var-git: "\f1d3"; 311 | $fa-var-git-square: "\f1d2"; 312 | $fa-var-github: "\f09b"; 313 | $fa-var-github-alt: "\f113"; 314 | $fa-var-github-square: "\f092"; 315 | $fa-var-gitlab: "\f296"; 316 | $fa-var-gittip: "\f184"; 317 | $fa-var-glass: "\f000"; 318 | $fa-var-glide: "\f2a5"; 319 | $fa-var-glide-g: "\f2a6"; 320 | $fa-var-globe: "\f0ac"; 321 | $fa-var-google: "\f1a0"; 322 | $fa-var-google-plus: "\f0d5"; 323 | $fa-var-google-plus-circle: "\f2b3"; 324 | $fa-var-google-plus-official: "\f2b3"; 325 | $fa-var-google-plus-square: "\f0d4"; 326 | $fa-var-google-wallet: "\f1ee"; 327 | $fa-var-graduation-cap: "\f19d"; 328 | $fa-var-gratipay: "\f184"; 329 | $fa-var-group: "\f0c0"; 330 | $fa-var-h-square: "\f0fd"; 331 | $fa-var-hacker-news: "\f1d4"; 332 | $fa-var-hand-grab-o: "\f255"; 333 | $fa-var-hand-lizard-o: "\f258"; 334 | $fa-var-hand-o-down: "\f0a7"; 335 | $fa-var-hand-o-left: "\f0a5"; 336 | $fa-var-hand-o-right: "\f0a4"; 337 | $fa-var-hand-o-up: "\f0a6"; 338 | $fa-var-hand-paper-o: "\f256"; 339 | $fa-var-hand-peace-o: "\f25b"; 340 | $fa-var-hand-pointer-o: "\f25a"; 341 | $fa-var-hand-rock-o: "\f255"; 342 | $fa-var-hand-scissors-o: "\f257"; 343 | $fa-var-hand-spock-o: "\f259"; 344 | $fa-var-hand-stop-o: "\f256"; 345 | $fa-var-hard-of-hearing: "\f2a4"; 346 | $fa-var-hashtag: "\f292"; 347 | $fa-var-hdd-o: "\f0a0"; 348 | $fa-var-header: "\f1dc"; 349 | $fa-var-headphones: "\f025"; 350 | $fa-var-heart: "\f004"; 351 | $fa-var-heart-o: "\f08a"; 352 | $fa-var-heartbeat: "\f21e"; 353 | $fa-var-history: "\f1da"; 354 | $fa-var-home: "\f015"; 355 | $fa-var-hospital-o: "\f0f8"; 356 | $fa-var-hotel: "\f236"; 357 | $fa-var-hourglass: "\f254"; 358 | $fa-var-hourglass-1: "\f251"; 359 | $fa-var-hourglass-2: "\f252"; 360 | $fa-var-hourglass-3: "\f253"; 361 | $fa-var-hourglass-end: "\f253"; 362 | $fa-var-hourglass-half: "\f252"; 363 | $fa-var-hourglass-o: "\f250"; 364 | $fa-var-hourglass-start: "\f251"; 365 | $fa-var-houzz: "\f27c"; 366 | $fa-var-html5: "\f13b"; 367 | $fa-var-i-cursor: "\f246"; 368 | $fa-var-ils: "\f20b"; 369 | $fa-var-image: "\f03e"; 370 | $fa-var-inbox: "\f01c"; 371 | $fa-var-indent: "\f03c"; 372 | $fa-var-industry: "\f275"; 373 | $fa-var-info: "\f129"; 374 | $fa-var-info-circle: "\f05a"; 375 | $fa-var-inr: "\f156"; 376 | $fa-var-instagram: "\f16d"; 377 | $fa-var-institution: "\f19c"; 378 | $fa-var-internet-explorer: "\f26b"; 379 | $fa-var-intersex: "\f224"; 380 | $fa-var-ioxhost: "\f208"; 381 | $fa-var-italic: "\f033"; 382 | $fa-var-joomla: "\f1aa"; 383 | $fa-var-jpy: "\f157"; 384 | $fa-var-jsfiddle: "\f1cc"; 385 | $fa-var-key: "\f084"; 386 | $fa-var-keyboard-o: "\f11c"; 387 | $fa-var-krw: "\f159"; 388 | $fa-var-language: "\f1ab"; 389 | $fa-var-laptop: "\f109"; 390 | $fa-var-lastfm: "\f202"; 391 | $fa-var-lastfm-square: "\f203"; 392 | $fa-var-leaf: "\f06c"; 393 | $fa-var-leanpub: "\f212"; 394 | $fa-var-legal: "\f0e3"; 395 | $fa-var-lemon-o: "\f094"; 396 | $fa-var-level-down: "\f149"; 397 | $fa-var-level-up: "\f148"; 398 | $fa-var-life-bouy: "\f1cd"; 399 | $fa-var-life-buoy: "\f1cd"; 400 | $fa-var-life-ring: "\f1cd"; 401 | $fa-var-life-saver: "\f1cd"; 402 | $fa-var-lightbulb-o: "\f0eb"; 403 | $fa-var-line-chart: "\f201"; 404 | $fa-var-link: "\f0c1"; 405 | $fa-var-linkedin: "\f0e1"; 406 | $fa-var-linkedin-square: "\f08c"; 407 | $fa-var-linux: "\f17c"; 408 | $fa-var-list: "\f03a"; 409 | $fa-var-list-alt: "\f022"; 410 | $fa-var-list-ol: "\f0cb"; 411 | $fa-var-list-ul: "\f0ca"; 412 | $fa-var-location-arrow: "\f124"; 413 | $fa-var-lock: "\f023"; 414 | $fa-var-long-arrow-down: "\f175"; 415 | $fa-var-long-arrow-left: "\f177"; 416 | $fa-var-long-arrow-right: "\f178"; 417 | $fa-var-long-arrow-up: "\f176"; 418 | $fa-var-low-vision: "\f2a8"; 419 | $fa-var-magic: "\f0d0"; 420 | $fa-var-magnet: "\f076"; 421 | $fa-var-mail-forward: "\f064"; 422 | $fa-var-mail-reply: "\f112"; 423 | $fa-var-mail-reply-all: "\f122"; 424 | $fa-var-male: "\f183"; 425 | $fa-var-map: "\f279"; 426 | $fa-var-map-marker: "\f041"; 427 | $fa-var-map-o: "\f278"; 428 | $fa-var-map-pin: "\f276"; 429 | $fa-var-map-signs: "\f277"; 430 | $fa-var-mars: "\f222"; 431 | $fa-var-mars-double: "\f227"; 432 | $fa-var-mars-stroke: "\f229"; 433 | $fa-var-mars-stroke-h: "\f22b"; 434 | $fa-var-mars-stroke-v: "\f22a"; 435 | $fa-var-maxcdn: "\f136"; 436 | $fa-var-meanpath: "\f20c"; 437 | $fa-var-medium: "\f23a"; 438 | $fa-var-medkit: "\f0fa"; 439 | $fa-var-meh-o: "\f11a"; 440 | $fa-var-mercury: "\f223"; 441 | $fa-var-microphone: "\f130"; 442 | $fa-var-microphone-slash: "\f131"; 443 | $fa-var-minus: "\f068"; 444 | $fa-var-minus-circle: "\f056"; 445 | $fa-var-minus-square: "\f146"; 446 | $fa-var-minus-square-o: "\f147"; 447 | $fa-var-mixcloud: "\f289"; 448 | $fa-var-mobile: "\f10b"; 449 | $fa-var-mobile-phone: "\f10b"; 450 | $fa-var-modx: "\f285"; 451 | $fa-var-money: "\f0d6"; 452 | $fa-var-moon-o: "\f186"; 453 | $fa-var-mortar-board: "\f19d"; 454 | $fa-var-motorcycle: "\f21c"; 455 | $fa-var-mouse-pointer: "\f245"; 456 | $fa-var-music: "\f001"; 457 | $fa-var-navicon: "\f0c9"; 458 | $fa-var-neuter: "\f22c"; 459 | $fa-var-newspaper-o: "\f1ea"; 460 | $fa-var-object-group: "\f247"; 461 | $fa-var-object-ungroup: "\f248"; 462 | $fa-var-odnoklassniki: "\f263"; 463 | $fa-var-odnoklassniki-square: "\f264"; 464 | $fa-var-opencart: "\f23d"; 465 | $fa-var-openid: "\f19b"; 466 | $fa-var-opera: "\f26a"; 467 | $fa-var-optin-monster: "\f23c"; 468 | $fa-var-outdent: "\f03b"; 469 | $fa-var-pagelines: "\f18c"; 470 | $fa-var-paint-brush: "\f1fc"; 471 | $fa-var-paper-plane: "\f1d8"; 472 | $fa-var-paper-plane-o: "\f1d9"; 473 | $fa-var-paperclip: "\f0c6"; 474 | $fa-var-paragraph: "\f1dd"; 475 | $fa-var-paste: "\f0ea"; 476 | $fa-var-pause: "\f04c"; 477 | $fa-var-pause-circle: "\f28b"; 478 | $fa-var-pause-circle-o: "\f28c"; 479 | $fa-var-paw: "\f1b0"; 480 | $fa-var-paypal: "\f1ed"; 481 | $fa-var-pencil: "\f040"; 482 | $fa-var-pencil-square: "\f14b"; 483 | $fa-var-pencil-square-o: "\f044"; 484 | $fa-var-percent: "\f295"; 485 | $fa-var-phone: "\f095"; 486 | $fa-var-phone-square: "\f098"; 487 | $fa-var-photo: "\f03e"; 488 | $fa-var-picture-o: "\f03e"; 489 | $fa-var-pie-chart: "\f200"; 490 | $fa-var-pied-piper: "\f2ae"; 491 | $fa-var-pied-piper-alt: "\f1a8"; 492 | $fa-var-pied-piper-pp: "\f1a7"; 493 | $fa-var-pinterest: "\f0d2"; 494 | $fa-var-pinterest-p: "\f231"; 495 | $fa-var-pinterest-square: "\f0d3"; 496 | $fa-var-plane: "\f072"; 497 | $fa-var-play: "\f04b"; 498 | $fa-var-play-circle: "\f144"; 499 | $fa-var-play-circle-o: "\f01d"; 500 | $fa-var-plug: "\f1e6"; 501 | $fa-var-plus: "\f067"; 502 | $fa-var-plus-circle: "\f055"; 503 | $fa-var-plus-square: "\f0fe"; 504 | $fa-var-plus-square-o: "\f196"; 505 | $fa-var-power-off: "\f011"; 506 | $fa-var-print: "\f02f"; 507 | $fa-var-product-hunt: "\f288"; 508 | $fa-var-puzzle-piece: "\f12e"; 509 | $fa-var-qq: "\f1d6"; 510 | $fa-var-qrcode: "\f029"; 511 | $fa-var-question: "\f128"; 512 | $fa-var-question-circle: "\f059"; 513 | $fa-var-question-circle-o: "\f29c"; 514 | $fa-var-quote-left: "\f10d"; 515 | $fa-var-quote-right: "\f10e"; 516 | $fa-var-ra: "\f1d0"; 517 | $fa-var-random: "\f074"; 518 | $fa-var-rebel: "\f1d0"; 519 | $fa-var-recycle: "\f1b8"; 520 | $fa-var-reddit: "\f1a1"; 521 | $fa-var-reddit-alien: "\f281"; 522 | $fa-var-reddit-square: "\f1a2"; 523 | $fa-var-refresh: "\f021"; 524 | $fa-var-registered: "\f25d"; 525 | $fa-var-remove: "\f00d"; 526 | $fa-var-renren: "\f18b"; 527 | $fa-var-reorder: "\f0c9"; 528 | $fa-var-repeat: "\f01e"; 529 | $fa-var-reply: "\f112"; 530 | $fa-var-reply-all: "\f122"; 531 | $fa-var-resistance: "\f1d0"; 532 | $fa-var-retweet: "\f079"; 533 | $fa-var-rmb: "\f157"; 534 | $fa-var-road: "\f018"; 535 | $fa-var-rocket: "\f135"; 536 | $fa-var-rotate-left: "\f0e2"; 537 | $fa-var-rotate-right: "\f01e"; 538 | $fa-var-rouble: "\f158"; 539 | $fa-var-rss: "\f09e"; 540 | $fa-var-rss-square: "\f143"; 541 | $fa-var-rub: "\f158"; 542 | $fa-var-ruble: "\f158"; 543 | $fa-var-rupee: "\f156"; 544 | $fa-var-safari: "\f267"; 545 | $fa-var-save: "\f0c7"; 546 | $fa-var-scissors: "\f0c4"; 547 | $fa-var-scribd: "\f28a"; 548 | $fa-var-search: "\f002"; 549 | $fa-var-search-minus: "\f010"; 550 | $fa-var-search-plus: "\f00e"; 551 | $fa-var-sellsy: "\f213"; 552 | $fa-var-send: "\f1d8"; 553 | $fa-var-send-o: "\f1d9"; 554 | $fa-var-server: "\f233"; 555 | $fa-var-share: "\f064"; 556 | $fa-var-share-alt: "\f1e0"; 557 | $fa-var-share-alt-square: "\f1e1"; 558 | $fa-var-share-square: "\f14d"; 559 | $fa-var-share-square-o: "\f045"; 560 | $fa-var-shekel: "\f20b"; 561 | $fa-var-sheqel: "\f20b"; 562 | $fa-var-shield: "\f132"; 563 | $fa-var-ship: "\f21a"; 564 | $fa-var-shirtsinbulk: "\f214"; 565 | $fa-var-shopping-bag: "\f290"; 566 | $fa-var-shopping-basket: "\f291"; 567 | $fa-var-shopping-cart: "\f07a"; 568 | $fa-var-sign-in: "\f090"; 569 | $fa-var-sign-language: "\f2a7"; 570 | $fa-var-sign-out: "\f08b"; 571 | $fa-var-signal: "\f012"; 572 | $fa-var-signing: "\f2a7"; 573 | $fa-var-simplybuilt: "\f215"; 574 | $fa-var-sitemap: "\f0e8"; 575 | $fa-var-skyatlas: "\f216"; 576 | $fa-var-skype: "\f17e"; 577 | $fa-var-slack: "\f198"; 578 | $fa-var-sliders: "\f1de"; 579 | $fa-var-slideshare: "\f1e7"; 580 | $fa-var-smile-o: "\f118"; 581 | $fa-var-snapchat: "\f2ab"; 582 | $fa-var-snapchat-ghost: "\f2ac"; 583 | $fa-var-snapchat-square: "\f2ad"; 584 | $fa-var-soccer-ball-o: "\f1e3"; 585 | $fa-var-sort: "\f0dc"; 586 | $fa-var-sort-alpha-asc: "\f15d"; 587 | $fa-var-sort-alpha-desc: "\f15e"; 588 | $fa-var-sort-amount-asc: "\f160"; 589 | $fa-var-sort-amount-desc: "\f161"; 590 | $fa-var-sort-asc: "\f0de"; 591 | $fa-var-sort-desc: "\f0dd"; 592 | $fa-var-sort-down: "\f0dd"; 593 | $fa-var-sort-numeric-asc: "\f162"; 594 | $fa-var-sort-numeric-desc: "\f163"; 595 | $fa-var-sort-up: "\f0de"; 596 | $fa-var-soundcloud: "\f1be"; 597 | $fa-var-space-shuttle: "\f197"; 598 | $fa-var-spinner: "\f110"; 599 | $fa-var-spoon: "\f1b1"; 600 | $fa-var-spotify: "\f1bc"; 601 | $fa-var-square: "\f0c8"; 602 | $fa-var-square-o: "\f096"; 603 | $fa-var-stack-exchange: "\f18d"; 604 | $fa-var-stack-overflow: "\f16c"; 605 | $fa-var-star: "\f005"; 606 | $fa-var-star-half: "\f089"; 607 | $fa-var-star-half-empty: "\f123"; 608 | $fa-var-star-half-full: "\f123"; 609 | $fa-var-star-half-o: "\f123"; 610 | $fa-var-star-o: "\f006"; 611 | $fa-var-steam: "\f1b6"; 612 | $fa-var-steam-square: "\f1b7"; 613 | $fa-var-step-backward: "\f048"; 614 | $fa-var-step-forward: "\f051"; 615 | $fa-var-stethoscope: "\f0f1"; 616 | $fa-var-sticky-note: "\f249"; 617 | $fa-var-sticky-note-o: "\f24a"; 618 | $fa-var-stop: "\f04d"; 619 | $fa-var-stop-circle: "\f28d"; 620 | $fa-var-stop-circle-o: "\f28e"; 621 | $fa-var-street-view: "\f21d"; 622 | $fa-var-strikethrough: "\f0cc"; 623 | $fa-var-stumbleupon: "\f1a4"; 624 | $fa-var-stumbleupon-circle: "\f1a3"; 625 | $fa-var-subscript: "\f12c"; 626 | $fa-var-subway: "\f239"; 627 | $fa-var-suitcase: "\f0f2"; 628 | $fa-var-sun-o: "\f185"; 629 | $fa-var-superscript: "\f12b"; 630 | $fa-var-support: "\f1cd"; 631 | $fa-var-table: "\f0ce"; 632 | $fa-var-tablet: "\f10a"; 633 | $fa-var-tachometer: "\f0e4"; 634 | $fa-var-tag: "\f02b"; 635 | $fa-var-tags: "\f02c"; 636 | $fa-var-tasks: "\f0ae"; 637 | $fa-var-taxi: "\f1ba"; 638 | $fa-var-television: "\f26c"; 639 | $fa-var-tencent-weibo: "\f1d5"; 640 | $fa-var-terminal: "\f120"; 641 | $fa-var-text-height: "\f034"; 642 | $fa-var-text-width: "\f035"; 643 | $fa-var-th: "\f00a"; 644 | $fa-var-th-large: "\f009"; 645 | $fa-var-th-list: "\f00b"; 646 | $fa-var-themeisle: "\f2b2"; 647 | $fa-var-thumb-tack: "\f08d"; 648 | $fa-var-thumbs-down: "\f165"; 649 | $fa-var-thumbs-o-down: "\f088"; 650 | $fa-var-thumbs-o-up: "\f087"; 651 | $fa-var-thumbs-up: "\f164"; 652 | $fa-var-ticket: "\f145"; 653 | $fa-var-times: "\f00d"; 654 | $fa-var-times-circle: "\f057"; 655 | $fa-var-times-circle-o: "\f05c"; 656 | $fa-var-tint: "\f043"; 657 | $fa-var-toggle-down: "\f150"; 658 | $fa-var-toggle-left: "\f191"; 659 | $fa-var-toggle-off: "\f204"; 660 | $fa-var-toggle-on: "\f205"; 661 | $fa-var-toggle-right: "\f152"; 662 | $fa-var-toggle-up: "\f151"; 663 | $fa-var-trademark: "\f25c"; 664 | $fa-var-train: "\f238"; 665 | $fa-var-transgender: "\f224"; 666 | $fa-var-transgender-alt: "\f225"; 667 | $fa-var-trash: "\f1f8"; 668 | $fa-var-trash-o: "\f014"; 669 | $fa-var-tree: "\f1bb"; 670 | $fa-var-trello: "\f181"; 671 | $fa-var-tripadvisor: "\f262"; 672 | $fa-var-trophy: "\f091"; 673 | $fa-var-truck: "\f0d1"; 674 | $fa-var-try: "\f195"; 675 | $fa-var-tty: "\f1e4"; 676 | $fa-var-tumblr: "\f173"; 677 | $fa-var-tumblr-square: "\f174"; 678 | $fa-var-turkish-lira: "\f195"; 679 | $fa-var-tv: "\f26c"; 680 | $fa-var-twitch: "\f1e8"; 681 | $fa-var-twitter: "\f099"; 682 | $fa-var-twitter-square: "\f081"; 683 | $fa-var-umbrella: "\f0e9"; 684 | $fa-var-underline: "\f0cd"; 685 | $fa-var-undo: "\f0e2"; 686 | $fa-var-universal-access: "\f29a"; 687 | $fa-var-university: "\f19c"; 688 | $fa-var-unlink: "\f127"; 689 | $fa-var-unlock: "\f09c"; 690 | $fa-var-unlock-alt: "\f13e"; 691 | $fa-var-unsorted: "\f0dc"; 692 | $fa-var-upload: "\f093"; 693 | $fa-var-usb: "\f287"; 694 | $fa-var-usd: "\f155"; 695 | $fa-var-user: "\f007"; 696 | $fa-var-user-md: "\f0f0"; 697 | $fa-var-user-plus: "\f234"; 698 | $fa-var-user-secret: "\f21b"; 699 | $fa-var-user-times: "\f235"; 700 | $fa-var-users: "\f0c0"; 701 | $fa-var-venus: "\f221"; 702 | $fa-var-venus-double: "\f226"; 703 | $fa-var-venus-mars: "\f228"; 704 | $fa-var-viacoin: "\f237"; 705 | $fa-var-viadeo: "\f2a9"; 706 | $fa-var-viadeo-square: "\f2aa"; 707 | $fa-var-video-camera: "\f03d"; 708 | $fa-var-vimeo: "\f27d"; 709 | $fa-var-vimeo-square: "\f194"; 710 | $fa-var-vine: "\f1ca"; 711 | $fa-var-vk: "\f189"; 712 | $fa-var-volume-control-phone: "\f2a0"; 713 | $fa-var-volume-down: "\f027"; 714 | $fa-var-volume-off: "\f026"; 715 | $fa-var-volume-up: "\f028"; 716 | $fa-var-warning: "\f071"; 717 | $fa-var-wechat: "\f1d7"; 718 | $fa-var-weibo: "\f18a"; 719 | $fa-var-weixin: "\f1d7"; 720 | $fa-var-whatsapp: "\f232"; 721 | $fa-var-wheelchair: "\f193"; 722 | $fa-var-wheelchair-alt: "\f29b"; 723 | $fa-var-wifi: "\f1eb"; 724 | $fa-var-wikipedia-w: "\f266"; 725 | $fa-var-windows: "\f17a"; 726 | $fa-var-won: "\f159"; 727 | $fa-var-wordpress: "\f19a"; 728 | $fa-var-wpbeginner: "\f297"; 729 | $fa-var-wpforms: "\f298"; 730 | $fa-var-wrench: "\f0ad"; 731 | $fa-var-xing: "\f168"; 732 | $fa-var-xing-square: "\f169"; 733 | $fa-var-y-combinator: "\f23b"; 734 | $fa-var-y-combinator-square: "\f1d4"; 735 | $fa-var-yahoo: "\f19e"; 736 | $fa-var-yc: "\f23b"; 737 | $fa-var-yc-square: "\f1d4"; 738 | $fa-var-yelp: "\f1e9"; 739 | $fa-var-yen: "\f157"; 740 | $fa-var-yoast: "\f2b1"; 741 | $fa-var-youtube: "\f167"; 742 | $fa-var-youtube-play: "\f16a"; 743 | $fa-var-youtube-square: "\f166"; 744 | 745 | -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} -------------------------------------------------------------------------------- /static/font-awesome-4.6.3/css/font-awesome.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | /* FONT PATH 6 | * -------------------------- */ 7 | @font-face { 8 | font-family: 'FontAwesome'; 9 | src: url('../fonts/fontawesome-webfont.eot?v=4.6.3'); 10 | src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg'); 11 | font-weight: normal; 12 | font-style: normal; 13 | } 14 | .fa { 15 | display: inline-block; 16 | font: normal normal normal 14px/1 FontAwesome; 17 | font-size: inherit; 18 | text-rendering: auto; 19 | -webkit-font-smoothing: antialiased; 20 | -moz-osx-font-smoothing: grayscale; 21 | } 22 | /* makes the font 33% larger relative to the icon container */ 23 | .fa-lg { 24 | font-size: 1.33333333em; 25 | line-height: 0.75em; 26 | vertical-align: -15%; 27 | } 28 | .fa-2x { 29 | font-size: 2em; 30 | } 31 | .fa-3x { 32 | font-size: 3em; 33 | } 34 | .fa-4x { 35 | font-size: 4em; 36 | } 37 | .fa-5x { 38 | font-size: 5em; 39 | } 40 | .fa-fw { 41 | width: 1.28571429em; 42 | text-align: center; 43 | } 44 | .fa-ul { 45 | padding-left: 0; 46 | margin-left: 2.14285714em; 47 | list-style-type: none; 48 | } 49 | .fa-ul > li { 50 | position: relative; 51 | } 52 | .fa-li { 53 | position: absolute; 54 | left: -2.14285714em; 55 | width: 2.14285714em; 56 | top: 0.14285714em; 57 | text-align: center; 58 | } 59 | .fa-li.fa-lg { 60 | left: -1.85714286em; 61 | } 62 | .fa-border { 63 | padding: .2em .25em .15em; 64 | border: solid 0.08em #eee; 65 | border-radius: .1em; 66 | } 67 | .fa-pull-left { 68 | float: left; 69 | } 70 | .fa-pull-right { 71 | float: right; 72 | } 73 | .fa.fa-pull-left { 74 | margin-right: .3em; 75 | } 76 | .fa.fa-pull-right { 77 | margin-left: .3em; 78 | } 79 | /* Deprecated as of 4.4.0 */ 80 | .pull-right { 81 | float: right; 82 | } 83 | .pull-left { 84 | float: left; 85 | } 86 | .fa.pull-left { 87 | margin-right: .3em; 88 | } 89 | .fa.pull-right { 90 | margin-left: .3em; 91 | } 92 | .fa-spin { 93 | -webkit-animation: fa-spin 2s infinite linear; 94 | animation: fa-spin 2s infinite linear; 95 | } 96 | .fa-pulse { 97 | -webkit-animation: fa-spin 1s infinite steps(8); 98 | animation: fa-spin 1s infinite steps(8); 99 | } 100 | @-webkit-keyframes fa-spin { 101 | 0% { 102 | -webkit-transform: rotate(0deg); 103 | transform: rotate(0deg); 104 | } 105 | 100% { 106 | -webkit-transform: rotate(359deg); 107 | transform: rotate(359deg); 108 | } 109 | } 110 | @keyframes fa-spin { 111 | 0% { 112 | -webkit-transform: rotate(0deg); 113 | transform: rotate(0deg); 114 | } 115 | 100% { 116 | -webkit-transform: rotate(359deg); 117 | transform: rotate(359deg); 118 | } 119 | } 120 | .fa-rotate-90 { 121 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; 122 | -webkit-transform: rotate(90deg); 123 | -ms-transform: rotate(90deg); 124 | transform: rotate(90deg); 125 | } 126 | .fa-rotate-180 { 127 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; 128 | -webkit-transform: rotate(180deg); 129 | -ms-transform: rotate(180deg); 130 | transform: rotate(180deg); 131 | } 132 | .fa-rotate-270 { 133 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; 134 | -webkit-transform: rotate(270deg); 135 | -ms-transform: rotate(270deg); 136 | transform: rotate(270deg); 137 | } 138 | .fa-flip-horizontal { 139 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; 140 | -webkit-transform: scale(-1, 1); 141 | -ms-transform: scale(-1, 1); 142 | transform: scale(-1, 1); 143 | } 144 | .fa-flip-vertical { 145 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; 146 | -webkit-transform: scale(1, -1); 147 | -ms-transform: scale(1, -1); 148 | transform: scale(1, -1); 149 | } 150 | :root .fa-rotate-90, 151 | :root .fa-rotate-180, 152 | :root .fa-rotate-270, 153 | :root .fa-flip-horizontal, 154 | :root .fa-flip-vertical { 155 | filter: none; 156 | } 157 | .fa-stack { 158 | position: relative; 159 | display: inline-block; 160 | width: 2em; 161 | height: 2em; 162 | line-height: 2em; 163 | vertical-align: middle; 164 | } 165 | .fa-stack-1x, 166 | .fa-stack-2x { 167 | position: absolute; 168 | left: 0; 169 | width: 100%; 170 | text-align: center; 171 | } 172 | .fa-stack-1x { 173 | line-height: inherit; 174 | } 175 | .fa-stack-2x { 176 | font-size: 2em; 177 | } 178 | .fa-inverse { 179 | color: #fff; 180 | } 181 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 182 | readers do not read off random characters that represent icons */ 183 | .fa-glass:before { 184 | content: "\f000"; 185 | } 186 | .fa-music:before { 187 | content: "\f001"; 188 | } 189 | .fa-search:before { 190 | content: "\f002"; 191 | } 192 | .fa-envelope-o:before { 193 | content: "\f003"; 194 | } 195 | .fa-heart:before { 196 | content: "\f004"; 197 | } 198 | .fa-star:before { 199 | content: "\f005"; 200 | } 201 | .fa-star-o:before { 202 | content: "\f006"; 203 | } 204 | .fa-user:before { 205 | content: "\f007"; 206 | } 207 | .fa-film:before { 208 | content: "\f008"; 209 | } 210 | .fa-th-large:before { 211 | content: "\f009"; 212 | } 213 | .fa-th:before { 214 | content: "\f00a"; 215 | } 216 | .fa-th-list:before { 217 | content: "\f00b"; 218 | } 219 | .fa-check:before { 220 | content: "\f00c"; 221 | } 222 | .fa-remove:before, 223 | .fa-close:before, 224 | .fa-times:before { 225 | content: "\f00d"; 226 | } 227 | .fa-search-plus:before { 228 | content: "\f00e"; 229 | } 230 | .fa-search-minus:before { 231 | content: "\f010"; 232 | } 233 | .fa-power-off:before { 234 | content: "\f011"; 235 | } 236 | .fa-signal:before { 237 | content: "\f012"; 238 | } 239 | .fa-gear:before, 240 | .fa-cog:before { 241 | content: "\f013"; 242 | } 243 | .fa-trash-o:before { 244 | content: "\f014"; 245 | } 246 | .fa-home:before { 247 | content: "\f015"; 248 | } 249 | .fa-file-o:before { 250 | content: "\f016"; 251 | } 252 | .fa-clock-o:before { 253 | content: "\f017"; 254 | } 255 | .fa-road:before { 256 | content: "\f018"; 257 | } 258 | .fa-download:before { 259 | content: "\f019"; 260 | } 261 | .fa-arrow-circle-o-down:before { 262 | content: "\f01a"; 263 | } 264 | .fa-arrow-circle-o-up:before { 265 | content: "\f01b"; 266 | } 267 | .fa-inbox:before { 268 | content: "\f01c"; 269 | } 270 | .fa-play-circle-o:before { 271 | content: "\f01d"; 272 | } 273 | .fa-rotate-right:before, 274 | .fa-repeat:before { 275 | content: "\f01e"; 276 | } 277 | .fa-refresh:before { 278 | content: "\f021"; 279 | } 280 | .fa-list-alt:before { 281 | content: "\f022"; 282 | } 283 | .fa-lock:before { 284 | content: "\f023"; 285 | } 286 | .fa-flag:before { 287 | content: "\f024"; 288 | } 289 | .fa-headphones:before { 290 | content: "\f025"; 291 | } 292 | .fa-volume-off:before { 293 | content: "\f026"; 294 | } 295 | .fa-volume-down:before { 296 | content: "\f027"; 297 | } 298 | .fa-volume-up:before { 299 | content: "\f028"; 300 | } 301 | .fa-qrcode:before { 302 | content: "\f029"; 303 | } 304 | .fa-barcode:before { 305 | content: "\f02a"; 306 | } 307 | .fa-tag:before { 308 | content: "\f02b"; 309 | } 310 | .fa-tags:before { 311 | content: "\f02c"; 312 | } 313 | .fa-book:before { 314 | content: "\f02d"; 315 | } 316 | .fa-bookmark:before { 317 | content: "\f02e"; 318 | } 319 | .fa-print:before { 320 | content: "\f02f"; 321 | } 322 | .fa-camera:before { 323 | content: "\f030"; 324 | } 325 | .fa-font:before { 326 | content: "\f031"; 327 | } 328 | .fa-bold:before { 329 | content: "\f032"; 330 | } 331 | .fa-italic:before { 332 | content: "\f033"; 333 | } 334 | .fa-text-height:before { 335 | content: "\f034"; 336 | } 337 | .fa-text-width:before { 338 | content: "\f035"; 339 | } 340 | .fa-align-left:before { 341 | content: "\f036"; 342 | } 343 | .fa-align-center:before { 344 | content: "\f037"; 345 | } 346 | .fa-align-right:before { 347 | content: "\f038"; 348 | } 349 | .fa-align-justify:before { 350 | content: "\f039"; 351 | } 352 | .fa-list:before { 353 | content: "\f03a"; 354 | } 355 | .fa-dedent:before, 356 | .fa-outdent:before { 357 | content: "\f03b"; 358 | } 359 | .fa-indent:before { 360 | content: "\f03c"; 361 | } 362 | .fa-video-camera:before { 363 | content: "\f03d"; 364 | } 365 | .fa-photo:before, 366 | .fa-image:before, 367 | .fa-picture-o:before { 368 | content: "\f03e"; 369 | } 370 | .fa-pencil:before { 371 | content: "\f040"; 372 | } 373 | .fa-map-marker:before { 374 | content: "\f041"; 375 | } 376 | .fa-adjust:before { 377 | content: "\f042"; 378 | } 379 | .fa-tint:before { 380 | content: "\f043"; 381 | } 382 | .fa-edit:before, 383 | .fa-pencil-square-o:before { 384 | content: "\f044"; 385 | } 386 | .fa-share-square-o:before { 387 | content: "\f045"; 388 | } 389 | .fa-check-square-o:before { 390 | content: "\f046"; 391 | } 392 | .fa-arrows:before { 393 | content: "\f047"; 394 | } 395 | .fa-step-backward:before { 396 | content: "\f048"; 397 | } 398 | .fa-fast-backward:before { 399 | content: "\f049"; 400 | } 401 | .fa-backward:before { 402 | content: "\f04a"; 403 | } 404 | .fa-play:before { 405 | content: "\f04b"; 406 | } 407 | .fa-pause:before { 408 | content: "\f04c"; 409 | } 410 | .fa-stop:before { 411 | content: "\f04d"; 412 | } 413 | .fa-forward:before { 414 | content: "\f04e"; 415 | } 416 | .fa-fast-forward:before { 417 | content: "\f050"; 418 | } 419 | .fa-step-forward:before { 420 | content: "\f051"; 421 | } 422 | .fa-eject:before { 423 | content: "\f052"; 424 | } 425 | .fa-chevron-left:before { 426 | content: "\f053"; 427 | } 428 | .fa-chevron-right:before { 429 | content: "\f054"; 430 | } 431 | .fa-plus-circle:before { 432 | content: "\f055"; 433 | } 434 | .fa-minus-circle:before { 435 | content: "\f056"; 436 | } 437 | .fa-times-circle:before { 438 | content: "\f057"; 439 | } 440 | .fa-check-circle:before { 441 | content: "\f058"; 442 | } 443 | .fa-question-circle:before { 444 | content: "\f059"; 445 | } 446 | .fa-info-circle:before { 447 | content: "\f05a"; 448 | } 449 | .fa-crosshairs:before { 450 | content: "\f05b"; 451 | } 452 | .fa-times-circle-o:before { 453 | content: "\f05c"; 454 | } 455 | .fa-check-circle-o:before { 456 | content: "\f05d"; 457 | } 458 | .fa-ban:before { 459 | content: "\f05e"; 460 | } 461 | .fa-arrow-left:before { 462 | content: "\f060"; 463 | } 464 | .fa-arrow-right:before { 465 | content: "\f061"; 466 | } 467 | .fa-arrow-up:before { 468 | content: "\f062"; 469 | } 470 | .fa-arrow-down:before { 471 | content: "\f063"; 472 | } 473 | .fa-mail-forward:before, 474 | .fa-share:before { 475 | content: "\f064"; 476 | } 477 | .fa-expand:before { 478 | content: "\f065"; 479 | } 480 | .fa-compress:before { 481 | content: "\f066"; 482 | } 483 | .fa-plus:before { 484 | content: "\f067"; 485 | } 486 | .fa-minus:before { 487 | content: "\f068"; 488 | } 489 | .fa-asterisk:before { 490 | content: "\f069"; 491 | } 492 | .fa-exclamation-circle:before { 493 | content: "\f06a"; 494 | } 495 | .fa-gift:before { 496 | content: "\f06b"; 497 | } 498 | .fa-leaf:before { 499 | content: "\f06c"; 500 | } 501 | .fa-fire:before { 502 | content: "\f06d"; 503 | } 504 | .fa-eye:before { 505 | content: "\f06e"; 506 | } 507 | .fa-eye-slash:before { 508 | content: "\f070"; 509 | } 510 | .fa-warning:before, 511 | .fa-exclamation-triangle:before { 512 | content: "\f071"; 513 | } 514 | .fa-plane:before { 515 | content: "\f072"; 516 | } 517 | .fa-calendar:before { 518 | content: "\f073"; 519 | } 520 | .fa-random:before { 521 | content: "\f074"; 522 | } 523 | .fa-comment:before { 524 | content: "\f075"; 525 | } 526 | .fa-magnet:before { 527 | content: "\f076"; 528 | } 529 | .fa-chevron-up:before { 530 | content: "\f077"; 531 | } 532 | .fa-chevron-down:before { 533 | content: "\f078"; 534 | } 535 | .fa-retweet:before { 536 | content: "\f079"; 537 | } 538 | .fa-shopping-cart:before { 539 | content: "\f07a"; 540 | } 541 | .fa-folder:before { 542 | content: "\f07b"; 543 | } 544 | .fa-folder-open:before { 545 | content: "\f07c"; 546 | } 547 | .fa-arrows-v:before { 548 | content: "\f07d"; 549 | } 550 | .fa-arrows-h:before { 551 | content: "\f07e"; 552 | } 553 | .fa-bar-chart-o:before, 554 | .fa-bar-chart:before { 555 | content: "\f080"; 556 | } 557 | .fa-twitter-square:before { 558 | content: "\f081"; 559 | } 560 | .fa-facebook-square:before { 561 | content: "\f082"; 562 | } 563 | .fa-camera-retro:before { 564 | content: "\f083"; 565 | } 566 | .fa-key:before { 567 | content: "\f084"; 568 | } 569 | .fa-gears:before, 570 | .fa-cogs:before { 571 | content: "\f085"; 572 | } 573 | .fa-comments:before { 574 | content: "\f086"; 575 | } 576 | .fa-thumbs-o-up:before { 577 | content: "\f087"; 578 | } 579 | .fa-thumbs-o-down:before { 580 | content: "\f088"; 581 | } 582 | .fa-star-half:before { 583 | content: "\f089"; 584 | } 585 | .fa-heart-o:before { 586 | content: "\f08a"; 587 | } 588 | .fa-sign-out:before { 589 | content: "\f08b"; 590 | } 591 | .fa-linkedin-square:before { 592 | content: "\f08c"; 593 | } 594 | .fa-thumb-tack:before { 595 | content: "\f08d"; 596 | } 597 | .fa-external-link:before { 598 | content: "\f08e"; 599 | } 600 | .fa-sign-in:before { 601 | content: "\f090"; 602 | } 603 | .fa-trophy:before { 604 | content: "\f091"; 605 | } 606 | .fa-github-square:before { 607 | content: "\f092"; 608 | } 609 | .fa-upload:before { 610 | content: "\f093"; 611 | } 612 | .fa-lemon-o:before { 613 | content: "\f094"; 614 | } 615 | .fa-phone:before { 616 | content: "\f095"; 617 | } 618 | .fa-square-o:before { 619 | content: "\f096"; 620 | } 621 | .fa-bookmark-o:before { 622 | content: "\f097"; 623 | } 624 | .fa-phone-square:before { 625 | content: "\f098"; 626 | } 627 | .fa-twitter:before { 628 | content: "\f099"; 629 | } 630 | .fa-facebook-f:before, 631 | .fa-facebook:before { 632 | content: "\f09a"; 633 | } 634 | .fa-github:before { 635 | content: "\f09b"; 636 | } 637 | .fa-unlock:before { 638 | content: "\f09c"; 639 | } 640 | .fa-credit-card:before { 641 | content: "\f09d"; 642 | } 643 | .fa-feed:before, 644 | .fa-rss:before { 645 | content: "\f09e"; 646 | } 647 | .fa-hdd-o:before { 648 | content: "\f0a0"; 649 | } 650 | .fa-bullhorn:before { 651 | content: "\f0a1"; 652 | } 653 | .fa-bell:before { 654 | content: "\f0f3"; 655 | } 656 | .fa-certificate:before { 657 | content: "\f0a3"; 658 | } 659 | .fa-hand-o-right:before { 660 | content: "\f0a4"; 661 | } 662 | .fa-hand-o-left:before { 663 | content: "\f0a5"; 664 | } 665 | .fa-hand-o-up:before { 666 | content: "\f0a6"; 667 | } 668 | .fa-hand-o-down:before { 669 | content: "\f0a7"; 670 | } 671 | .fa-arrow-circle-left:before { 672 | content: "\f0a8"; 673 | } 674 | .fa-arrow-circle-right:before { 675 | content: "\f0a9"; 676 | } 677 | .fa-arrow-circle-up:before { 678 | content: "\f0aa"; 679 | } 680 | .fa-arrow-circle-down:before { 681 | content: "\f0ab"; 682 | } 683 | .fa-globe:before { 684 | content: "\f0ac"; 685 | } 686 | .fa-wrench:before { 687 | content: "\f0ad"; 688 | } 689 | .fa-tasks:before { 690 | content: "\f0ae"; 691 | } 692 | .fa-filter:before { 693 | content: "\f0b0"; 694 | } 695 | .fa-briefcase:before { 696 | content: "\f0b1"; 697 | } 698 | .fa-arrows-alt:before { 699 | content: "\f0b2"; 700 | } 701 | .fa-group:before, 702 | .fa-users:before { 703 | content: "\f0c0"; 704 | } 705 | .fa-chain:before, 706 | .fa-link:before { 707 | content: "\f0c1"; 708 | } 709 | .fa-cloud:before { 710 | content: "\f0c2"; 711 | } 712 | .fa-flask:before { 713 | content: "\f0c3"; 714 | } 715 | .fa-cut:before, 716 | .fa-scissors:before { 717 | content: "\f0c4"; 718 | } 719 | .fa-copy:before, 720 | .fa-files-o:before { 721 | content: "\f0c5"; 722 | } 723 | .fa-paperclip:before { 724 | content: "\f0c6"; 725 | } 726 | .fa-save:before, 727 | .fa-floppy-o:before { 728 | content: "\f0c7"; 729 | } 730 | .fa-square:before { 731 | content: "\f0c8"; 732 | } 733 | .fa-navicon:before, 734 | .fa-reorder:before, 735 | .fa-bars:before { 736 | content: "\f0c9"; 737 | } 738 | .fa-list-ul:before { 739 | content: "\f0ca"; 740 | } 741 | .fa-list-ol:before { 742 | content: "\f0cb"; 743 | } 744 | .fa-strikethrough:before { 745 | content: "\f0cc"; 746 | } 747 | .fa-underline:before { 748 | content: "\f0cd"; 749 | } 750 | .fa-table:before { 751 | content: "\f0ce"; 752 | } 753 | .fa-magic:before { 754 | content: "\f0d0"; 755 | } 756 | .fa-truck:before { 757 | content: "\f0d1"; 758 | } 759 | .fa-pinterest:before { 760 | content: "\f0d2"; 761 | } 762 | .fa-pinterest-square:before { 763 | content: "\f0d3"; 764 | } 765 | .fa-google-plus-square:before { 766 | content: "\f0d4"; 767 | } 768 | .fa-google-plus:before { 769 | content: "\f0d5"; 770 | } 771 | .fa-money:before { 772 | content: "\f0d6"; 773 | } 774 | .fa-caret-down:before { 775 | content: "\f0d7"; 776 | } 777 | .fa-caret-up:before { 778 | content: "\f0d8"; 779 | } 780 | .fa-caret-left:before { 781 | content: "\f0d9"; 782 | } 783 | .fa-caret-right:before { 784 | content: "\f0da"; 785 | } 786 | .fa-columns:before { 787 | content: "\f0db"; 788 | } 789 | .fa-unsorted:before, 790 | .fa-sort:before { 791 | content: "\f0dc"; 792 | } 793 | .fa-sort-down:before, 794 | .fa-sort-desc:before { 795 | content: "\f0dd"; 796 | } 797 | .fa-sort-up:before, 798 | .fa-sort-asc:before { 799 | content: "\f0de"; 800 | } 801 | .fa-envelope:before { 802 | content: "\f0e0"; 803 | } 804 | .fa-linkedin:before { 805 | content: "\f0e1"; 806 | } 807 | .fa-rotate-left:before, 808 | .fa-undo:before { 809 | content: "\f0e2"; 810 | } 811 | .fa-legal:before, 812 | .fa-gavel:before { 813 | content: "\f0e3"; 814 | } 815 | .fa-dashboard:before, 816 | .fa-tachometer:before { 817 | content: "\f0e4"; 818 | } 819 | .fa-comment-o:before { 820 | content: "\f0e5"; 821 | } 822 | .fa-comments-o:before { 823 | content: "\f0e6"; 824 | } 825 | .fa-flash:before, 826 | .fa-bolt:before { 827 | content: "\f0e7"; 828 | } 829 | .fa-sitemap:before { 830 | content: "\f0e8"; 831 | } 832 | .fa-umbrella:before { 833 | content: "\f0e9"; 834 | } 835 | .fa-paste:before, 836 | .fa-clipboard:before { 837 | content: "\f0ea"; 838 | } 839 | .fa-lightbulb-o:before { 840 | content: "\f0eb"; 841 | } 842 | .fa-exchange:before { 843 | content: "\f0ec"; 844 | } 845 | .fa-cloud-download:before { 846 | content: "\f0ed"; 847 | } 848 | .fa-cloud-upload:before { 849 | content: "\f0ee"; 850 | } 851 | .fa-user-md:before { 852 | content: "\f0f0"; 853 | } 854 | .fa-stethoscope:before { 855 | content: "\f0f1"; 856 | } 857 | .fa-suitcase:before { 858 | content: "\f0f2"; 859 | } 860 | .fa-bell-o:before { 861 | content: "\f0a2"; 862 | } 863 | .fa-coffee:before { 864 | content: "\f0f4"; 865 | } 866 | .fa-cutlery:before { 867 | content: "\f0f5"; 868 | } 869 | .fa-file-text-o:before { 870 | content: "\f0f6"; 871 | } 872 | .fa-building-o:before { 873 | content: "\f0f7"; 874 | } 875 | .fa-hospital-o:before { 876 | content: "\f0f8"; 877 | } 878 | .fa-ambulance:before { 879 | content: "\f0f9"; 880 | } 881 | .fa-medkit:before { 882 | content: "\f0fa"; 883 | } 884 | .fa-fighter-jet:before { 885 | content: "\f0fb"; 886 | } 887 | .fa-beer:before { 888 | content: "\f0fc"; 889 | } 890 | .fa-h-square:before { 891 | content: "\f0fd"; 892 | } 893 | .fa-plus-square:before { 894 | content: "\f0fe"; 895 | } 896 | .fa-angle-double-left:before { 897 | content: "\f100"; 898 | } 899 | .fa-angle-double-right:before { 900 | content: "\f101"; 901 | } 902 | .fa-angle-double-up:before { 903 | content: "\f102"; 904 | } 905 | .fa-angle-double-down:before { 906 | content: "\f103"; 907 | } 908 | .fa-angle-left:before { 909 | content: "\f104"; 910 | } 911 | .fa-angle-right:before { 912 | content: "\f105"; 913 | } 914 | .fa-angle-up:before { 915 | content: "\f106"; 916 | } 917 | .fa-angle-down:before { 918 | content: "\f107"; 919 | } 920 | .fa-desktop:before { 921 | content: "\f108"; 922 | } 923 | .fa-laptop:before { 924 | content: "\f109"; 925 | } 926 | .fa-tablet:before { 927 | content: "\f10a"; 928 | } 929 | .fa-mobile-phone:before, 930 | .fa-mobile:before { 931 | content: "\f10b"; 932 | } 933 | .fa-circle-o:before { 934 | content: "\f10c"; 935 | } 936 | .fa-quote-left:before { 937 | content: "\f10d"; 938 | } 939 | .fa-quote-right:before { 940 | content: "\f10e"; 941 | } 942 | .fa-spinner:before { 943 | content: "\f110"; 944 | } 945 | .fa-circle:before { 946 | content: "\f111"; 947 | } 948 | .fa-mail-reply:before, 949 | .fa-reply:before { 950 | content: "\f112"; 951 | } 952 | .fa-github-alt:before { 953 | content: "\f113"; 954 | } 955 | .fa-folder-o:before { 956 | content: "\f114"; 957 | } 958 | .fa-folder-open-o:before { 959 | content: "\f115"; 960 | } 961 | .fa-smile-o:before { 962 | content: "\f118"; 963 | } 964 | .fa-frown-o:before { 965 | content: "\f119"; 966 | } 967 | .fa-meh-o:before { 968 | content: "\f11a"; 969 | } 970 | .fa-gamepad:before { 971 | content: "\f11b"; 972 | } 973 | .fa-keyboard-o:before { 974 | content: "\f11c"; 975 | } 976 | .fa-flag-o:before { 977 | content: "\f11d"; 978 | } 979 | .fa-flag-checkered:before { 980 | content: "\f11e"; 981 | } 982 | .fa-terminal:before { 983 | content: "\f120"; 984 | } 985 | .fa-code:before { 986 | content: "\f121"; 987 | } 988 | .fa-mail-reply-all:before, 989 | .fa-reply-all:before { 990 | content: "\f122"; 991 | } 992 | .fa-star-half-empty:before, 993 | .fa-star-half-full:before, 994 | .fa-star-half-o:before { 995 | content: "\f123"; 996 | } 997 | .fa-location-arrow:before { 998 | content: "\f124"; 999 | } 1000 | .fa-crop:before { 1001 | content: "\f125"; 1002 | } 1003 | .fa-code-fork:before { 1004 | content: "\f126"; 1005 | } 1006 | .fa-unlink:before, 1007 | .fa-chain-broken:before { 1008 | content: "\f127"; 1009 | } 1010 | .fa-question:before { 1011 | content: "\f128"; 1012 | } 1013 | .fa-info:before { 1014 | content: "\f129"; 1015 | } 1016 | .fa-exclamation:before { 1017 | content: "\f12a"; 1018 | } 1019 | .fa-superscript:before { 1020 | content: "\f12b"; 1021 | } 1022 | .fa-subscript:before { 1023 | content: "\f12c"; 1024 | } 1025 | .fa-eraser:before { 1026 | content: "\f12d"; 1027 | } 1028 | .fa-puzzle-piece:before { 1029 | content: "\f12e"; 1030 | } 1031 | .fa-microphone:before { 1032 | content: "\f130"; 1033 | } 1034 | .fa-microphone-slash:before { 1035 | content: "\f131"; 1036 | } 1037 | .fa-shield:before { 1038 | content: "\f132"; 1039 | } 1040 | .fa-calendar-o:before { 1041 | content: "\f133"; 1042 | } 1043 | .fa-fire-extinguisher:before { 1044 | content: "\f134"; 1045 | } 1046 | .fa-rocket:before { 1047 | content: "\f135"; 1048 | } 1049 | .fa-maxcdn:before { 1050 | content: "\f136"; 1051 | } 1052 | .fa-chevron-circle-left:before { 1053 | content: "\f137"; 1054 | } 1055 | .fa-chevron-circle-right:before { 1056 | content: "\f138"; 1057 | } 1058 | .fa-chevron-circle-up:before { 1059 | content: "\f139"; 1060 | } 1061 | .fa-chevron-circle-down:before { 1062 | content: "\f13a"; 1063 | } 1064 | .fa-html5:before { 1065 | content: "\f13b"; 1066 | } 1067 | .fa-css3:before { 1068 | content: "\f13c"; 1069 | } 1070 | .fa-anchor:before { 1071 | content: "\f13d"; 1072 | } 1073 | .fa-unlock-alt:before { 1074 | content: "\f13e"; 1075 | } 1076 | .fa-bullseye:before { 1077 | content: "\f140"; 1078 | } 1079 | .fa-ellipsis-h:before { 1080 | content: "\f141"; 1081 | } 1082 | .fa-ellipsis-v:before { 1083 | content: "\f142"; 1084 | } 1085 | .fa-rss-square:before { 1086 | content: "\f143"; 1087 | } 1088 | .fa-play-circle:before { 1089 | content: "\f144"; 1090 | } 1091 | .fa-ticket:before { 1092 | content: "\f145"; 1093 | } 1094 | .fa-minus-square:before { 1095 | content: "\f146"; 1096 | } 1097 | .fa-minus-square-o:before { 1098 | content: "\f147"; 1099 | } 1100 | .fa-level-up:before { 1101 | content: "\f148"; 1102 | } 1103 | .fa-level-down:before { 1104 | content: "\f149"; 1105 | } 1106 | .fa-check-square:before { 1107 | content: "\f14a"; 1108 | } 1109 | .fa-pencil-square:before { 1110 | content: "\f14b"; 1111 | } 1112 | .fa-external-link-square:before { 1113 | content: "\f14c"; 1114 | } 1115 | .fa-share-square:before { 1116 | content: "\f14d"; 1117 | } 1118 | .fa-compass:before { 1119 | content: "\f14e"; 1120 | } 1121 | .fa-toggle-down:before, 1122 | .fa-caret-square-o-down:before { 1123 | content: "\f150"; 1124 | } 1125 | .fa-toggle-up:before, 1126 | .fa-caret-square-o-up:before { 1127 | content: "\f151"; 1128 | } 1129 | .fa-toggle-right:before, 1130 | .fa-caret-square-o-right:before { 1131 | content: "\f152"; 1132 | } 1133 | .fa-euro:before, 1134 | .fa-eur:before { 1135 | content: "\f153"; 1136 | } 1137 | .fa-gbp:before { 1138 | content: "\f154"; 1139 | } 1140 | .fa-dollar:before, 1141 | .fa-usd:before { 1142 | content: "\f155"; 1143 | } 1144 | .fa-rupee:before, 1145 | .fa-inr:before { 1146 | content: "\f156"; 1147 | } 1148 | .fa-cny:before, 1149 | .fa-rmb:before, 1150 | .fa-yen:before, 1151 | .fa-jpy:before { 1152 | content: "\f157"; 1153 | } 1154 | .fa-ruble:before, 1155 | .fa-rouble:before, 1156 | .fa-rub:before { 1157 | content: "\f158"; 1158 | } 1159 | .fa-won:before, 1160 | .fa-krw:before { 1161 | content: "\f159"; 1162 | } 1163 | .fa-bitcoin:before, 1164 | .fa-btc:before { 1165 | content: "\f15a"; 1166 | } 1167 | .fa-file:before { 1168 | content: "\f15b"; 1169 | } 1170 | .fa-file-text:before { 1171 | content: "\f15c"; 1172 | } 1173 | .fa-sort-alpha-asc:before { 1174 | content: "\f15d"; 1175 | } 1176 | .fa-sort-alpha-desc:before { 1177 | content: "\f15e"; 1178 | } 1179 | .fa-sort-amount-asc:before { 1180 | content: "\f160"; 1181 | } 1182 | .fa-sort-amount-desc:before { 1183 | content: "\f161"; 1184 | } 1185 | .fa-sort-numeric-asc:before { 1186 | content: "\f162"; 1187 | } 1188 | .fa-sort-numeric-desc:before { 1189 | content: "\f163"; 1190 | } 1191 | .fa-thumbs-up:before { 1192 | content: "\f164"; 1193 | } 1194 | .fa-thumbs-down:before { 1195 | content: "\f165"; 1196 | } 1197 | .fa-youtube-square:before { 1198 | content: "\f166"; 1199 | } 1200 | .fa-youtube:before { 1201 | content: "\f167"; 1202 | } 1203 | .fa-xing:before { 1204 | content: "\f168"; 1205 | } 1206 | .fa-xing-square:before { 1207 | content: "\f169"; 1208 | } 1209 | .fa-youtube-play:before { 1210 | content: "\f16a"; 1211 | } 1212 | .fa-dropbox:before { 1213 | content: "\f16b"; 1214 | } 1215 | .fa-stack-overflow:before { 1216 | content: "\f16c"; 1217 | } 1218 | .fa-instagram:before { 1219 | content: "\f16d"; 1220 | } 1221 | .fa-flickr:before { 1222 | content: "\f16e"; 1223 | } 1224 | .fa-adn:before { 1225 | content: "\f170"; 1226 | } 1227 | .fa-bitbucket:before { 1228 | content: "\f171"; 1229 | } 1230 | .fa-bitbucket-square:before { 1231 | content: "\f172"; 1232 | } 1233 | .fa-tumblr:before { 1234 | content: "\f173"; 1235 | } 1236 | .fa-tumblr-square:before { 1237 | content: "\f174"; 1238 | } 1239 | .fa-long-arrow-down:before { 1240 | content: "\f175"; 1241 | } 1242 | .fa-long-arrow-up:before { 1243 | content: "\f176"; 1244 | } 1245 | .fa-long-arrow-left:before { 1246 | content: "\f177"; 1247 | } 1248 | .fa-long-arrow-right:before { 1249 | content: "\f178"; 1250 | } 1251 | .fa-apple:before { 1252 | content: "\f179"; 1253 | } 1254 | .fa-windows:before { 1255 | content: "\f17a"; 1256 | } 1257 | .fa-android:before { 1258 | content: "\f17b"; 1259 | } 1260 | .fa-linux:before { 1261 | content: "\f17c"; 1262 | } 1263 | .fa-dribbble:before { 1264 | content: "\f17d"; 1265 | } 1266 | .fa-skype:before { 1267 | content: "\f17e"; 1268 | } 1269 | .fa-foursquare:before { 1270 | content: "\f180"; 1271 | } 1272 | .fa-trello:before { 1273 | content: "\f181"; 1274 | } 1275 | .fa-female:before { 1276 | content: "\f182"; 1277 | } 1278 | .fa-male:before { 1279 | content: "\f183"; 1280 | } 1281 | .fa-gittip:before, 1282 | .fa-gratipay:before { 1283 | content: "\f184"; 1284 | } 1285 | .fa-sun-o:before { 1286 | content: "\f185"; 1287 | } 1288 | .fa-moon-o:before { 1289 | content: "\f186"; 1290 | } 1291 | .fa-archive:before { 1292 | content: "\f187"; 1293 | } 1294 | .fa-bug:before { 1295 | content: "\f188"; 1296 | } 1297 | .fa-vk:before { 1298 | content: "\f189"; 1299 | } 1300 | .fa-weibo:before { 1301 | content: "\f18a"; 1302 | } 1303 | .fa-renren:before { 1304 | content: "\f18b"; 1305 | } 1306 | .fa-pagelines:before { 1307 | content: "\f18c"; 1308 | } 1309 | .fa-stack-exchange:before { 1310 | content: "\f18d"; 1311 | } 1312 | .fa-arrow-circle-o-right:before { 1313 | content: "\f18e"; 1314 | } 1315 | .fa-arrow-circle-o-left:before { 1316 | content: "\f190"; 1317 | } 1318 | .fa-toggle-left:before, 1319 | .fa-caret-square-o-left:before { 1320 | content: "\f191"; 1321 | } 1322 | .fa-dot-circle-o:before { 1323 | content: "\f192"; 1324 | } 1325 | .fa-wheelchair:before { 1326 | content: "\f193"; 1327 | } 1328 | .fa-vimeo-square:before { 1329 | content: "\f194"; 1330 | } 1331 | .fa-turkish-lira:before, 1332 | .fa-try:before { 1333 | content: "\f195"; 1334 | } 1335 | .fa-plus-square-o:before { 1336 | content: "\f196"; 1337 | } 1338 | .fa-space-shuttle:before { 1339 | content: "\f197"; 1340 | } 1341 | .fa-slack:before { 1342 | content: "\f198"; 1343 | } 1344 | .fa-envelope-square:before { 1345 | content: "\f199"; 1346 | } 1347 | .fa-wordpress:before { 1348 | content: "\f19a"; 1349 | } 1350 | .fa-openid:before { 1351 | content: "\f19b"; 1352 | } 1353 | .fa-institution:before, 1354 | .fa-bank:before, 1355 | .fa-university:before { 1356 | content: "\f19c"; 1357 | } 1358 | .fa-mortar-board:before, 1359 | .fa-graduation-cap:before { 1360 | content: "\f19d"; 1361 | } 1362 | .fa-yahoo:before { 1363 | content: "\f19e"; 1364 | } 1365 | .fa-google:before { 1366 | content: "\f1a0"; 1367 | } 1368 | .fa-reddit:before { 1369 | content: "\f1a1"; 1370 | } 1371 | .fa-reddit-square:before { 1372 | content: "\f1a2"; 1373 | } 1374 | .fa-stumbleupon-circle:before { 1375 | content: "\f1a3"; 1376 | } 1377 | .fa-stumbleupon:before { 1378 | content: "\f1a4"; 1379 | } 1380 | .fa-delicious:before { 1381 | content: "\f1a5"; 1382 | } 1383 | .fa-digg:before { 1384 | content: "\f1a6"; 1385 | } 1386 | .fa-pied-piper-pp:before { 1387 | content: "\f1a7"; 1388 | } 1389 | .fa-pied-piper-alt:before { 1390 | content: "\f1a8"; 1391 | } 1392 | .fa-drupal:before { 1393 | content: "\f1a9"; 1394 | } 1395 | .fa-joomla:before { 1396 | content: "\f1aa"; 1397 | } 1398 | .fa-language:before { 1399 | content: "\f1ab"; 1400 | } 1401 | .fa-fax:before { 1402 | content: "\f1ac"; 1403 | } 1404 | .fa-building:before { 1405 | content: "\f1ad"; 1406 | } 1407 | .fa-child:before { 1408 | content: "\f1ae"; 1409 | } 1410 | .fa-paw:before { 1411 | content: "\f1b0"; 1412 | } 1413 | .fa-spoon:before { 1414 | content: "\f1b1"; 1415 | } 1416 | .fa-cube:before { 1417 | content: "\f1b2"; 1418 | } 1419 | .fa-cubes:before { 1420 | content: "\f1b3"; 1421 | } 1422 | .fa-behance:before { 1423 | content: "\f1b4"; 1424 | } 1425 | .fa-behance-square:before { 1426 | content: "\f1b5"; 1427 | } 1428 | .fa-steam:before { 1429 | content: "\f1b6"; 1430 | } 1431 | .fa-steam-square:before { 1432 | content: "\f1b7"; 1433 | } 1434 | .fa-recycle:before { 1435 | content: "\f1b8"; 1436 | } 1437 | .fa-automobile:before, 1438 | .fa-car:before { 1439 | content: "\f1b9"; 1440 | } 1441 | .fa-cab:before, 1442 | .fa-taxi:before { 1443 | content: "\f1ba"; 1444 | } 1445 | .fa-tree:before { 1446 | content: "\f1bb"; 1447 | } 1448 | .fa-spotify:before { 1449 | content: "\f1bc"; 1450 | } 1451 | .fa-deviantart:before { 1452 | content: "\f1bd"; 1453 | } 1454 | .fa-soundcloud:before { 1455 | content: "\f1be"; 1456 | } 1457 | .fa-database:before { 1458 | content: "\f1c0"; 1459 | } 1460 | .fa-file-pdf-o:before { 1461 | content: "\f1c1"; 1462 | } 1463 | .fa-file-word-o:before { 1464 | content: "\f1c2"; 1465 | } 1466 | .fa-file-excel-o:before { 1467 | content: "\f1c3"; 1468 | } 1469 | .fa-file-powerpoint-o:before { 1470 | content: "\f1c4"; 1471 | } 1472 | .fa-file-photo-o:before, 1473 | .fa-file-picture-o:before, 1474 | .fa-file-image-o:before { 1475 | content: "\f1c5"; 1476 | } 1477 | .fa-file-zip-o:before, 1478 | .fa-file-archive-o:before { 1479 | content: "\f1c6"; 1480 | } 1481 | .fa-file-sound-o:before, 1482 | .fa-file-audio-o:before { 1483 | content: "\f1c7"; 1484 | } 1485 | .fa-file-movie-o:before, 1486 | .fa-file-video-o:before { 1487 | content: "\f1c8"; 1488 | } 1489 | .fa-file-code-o:before { 1490 | content: "\f1c9"; 1491 | } 1492 | .fa-vine:before { 1493 | content: "\f1ca"; 1494 | } 1495 | .fa-codepen:before { 1496 | content: "\f1cb"; 1497 | } 1498 | .fa-jsfiddle:before { 1499 | content: "\f1cc"; 1500 | } 1501 | .fa-life-bouy:before, 1502 | .fa-life-buoy:before, 1503 | .fa-life-saver:before, 1504 | .fa-support:before, 1505 | .fa-life-ring:before { 1506 | content: "\f1cd"; 1507 | } 1508 | .fa-circle-o-notch:before { 1509 | content: "\f1ce"; 1510 | } 1511 | .fa-ra:before, 1512 | .fa-resistance:before, 1513 | .fa-rebel:before { 1514 | content: "\f1d0"; 1515 | } 1516 | .fa-ge:before, 1517 | .fa-empire:before { 1518 | content: "\f1d1"; 1519 | } 1520 | .fa-git-square:before { 1521 | content: "\f1d2"; 1522 | } 1523 | .fa-git:before { 1524 | content: "\f1d3"; 1525 | } 1526 | .fa-y-combinator-square:before, 1527 | .fa-yc-square:before, 1528 | .fa-hacker-news:before { 1529 | content: "\f1d4"; 1530 | } 1531 | .fa-tencent-weibo:before { 1532 | content: "\f1d5"; 1533 | } 1534 | .fa-qq:before { 1535 | content: "\f1d6"; 1536 | } 1537 | .fa-wechat:before, 1538 | .fa-weixin:before { 1539 | content: "\f1d7"; 1540 | } 1541 | .fa-send:before, 1542 | .fa-paper-plane:before { 1543 | content: "\f1d8"; 1544 | } 1545 | .fa-send-o:before, 1546 | .fa-paper-plane-o:before { 1547 | content: "\f1d9"; 1548 | } 1549 | .fa-history:before { 1550 | content: "\f1da"; 1551 | } 1552 | .fa-circle-thin:before { 1553 | content: "\f1db"; 1554 | } 1555 | .fa-header:before { 1556 | content: "\f1dc"; 1557 | } 1558 | .fa-paragraph:before { 1559 | content: "\f1dd"; 1560 | } 1561 | .fa-sliders:before { 1562 | content: "\f1de"; 1563 | } 1564 | .fa-share-alt:before { 1565 | content: "\f1e0"; 1566 | } 1567 | .fa-share-alt-square:before { 1568 | content: "\f1e1"; 1569 | } 1570 | .fa-bomb:before { 1571 | content: "\f1e2"; 1572 | } 1573 | .fa-soccer-ball-o:before, 1574 | .fa-futbol-o:before { 1575 | content: "\f1e3"; 1576 | } 1577 | .fa-tty:before { 1578 | content: "\f1e4"; 1579 | } 1580 | .fa-binoculars:before { 1581 | content: "\f1e5"; 1582 | } 1583 | .fa-plug:before { 1584 | content: "\f1e6"; 1585 | } 1586 | .fa-slideshare:before { 1587 | content: "\f1e7"; 1588 | } 1589 | .fa-twitch:before { 1590 | content: "\f1e8"; 1591 | } 1592 | .fa-yelp:before { 1593 | content: "\f1e9"; 1594 | } 1595 | .fa-newspaper-o:before { 1596 | content: "\f1ea"; 1597 | } 1598 | .fa-wifi:before { 1599 | content: "\f1eb"; 1600 | } 1601 | .fa-calculator:before { 1602 | content: "\f1ec"; 1603 | } 1604 | .fa-paypal:before { 1605 | content: "\f1ed"; 1606 | } 1607 | .fa-google-wallet:before { 1608 | content: "\f1ee"; 1609 | } 1610 | .fa-cc-visa:before { 1611 | content: "\f1f0"; 1612 | } 1613 | .fa-cc-mastercard:before { 1614 | content: "\f1f1"; 1615 | } 1616 | .fa-cc-discover:before { 1617 | content: "\f1f2"; 1618 | } 1619 | .fa-cc-amex:before { 1620 | content: "\f1f3"; 1621 | } 1622 | .fa-cc-paypal:before { 1623 | content: "\f1f4"; 1624 | } 1625 | .fa-cc-stripe:before { 1626 | content: "\f1f5"; 1627 | } 1628 | .fa-bell-slash:before { 1629 | content: "\f1f6"; 1630 | } 1631 | .fa-bell-slash-o:before { 1632 | content: "\f1f7"; 1633 | } 1634 | .fa-trash:before { 1635 | content: "\f1f8"; 1636 | } 1637 | .fa-copyright:before { 1638 | content: "\f1f9"; 1639 | } 1640 | .fa-at:before { 1641 | content: "\f1fa"; 1642 | } 1643 | .fa-eyedropper:before { 1644 | content: "\f1fb"; 1645 | } 1646 | .fa-paint-brush:before { 1647 | content: "\f1fc"; 1648 | } 1649 | .fa-birthday-cake:before { 1650 | content: "\f1fd"; 1651 | } 1652 | .fa-area-chart:before { 1653 | content: "\f1fe"; 1654 | } 1655 | .fa-pie-chart:before { 1656 | content: "\f200"; 1657 | } 1658 | .fa-line-chart:before { 1659 | content: "\f201"; 1660 | } 1661 | .fa-lastfm:before { 1662 | content: "\f202"; 1663 | } 1664 | .fa-lastfm-square:before { 1665 | content: "\f203"; 1666 | } 1667 | .fa-toggle-off:before { 1668 | content: "\f204"; 1669 | } 1670 | .fa-toggle-on:before { 1671 | content: "\f205"; 1672 | } 1673 | .fa-bicycle:before { 1674 | content: "\f206"; 1675 | } 1676 | .fa-bus:before { 1677 | content: "\f207"; 1678 | } 1679 | .fa-ioxhost:before { 1680 | content: "\f208"; 1681 | } 1682 | .fa-angellist:before { 1683 | content: "\f209"; 1684 | } 1685 | .fa-cc:before { 1686 | content: "\f20a"; 1687 | } 1688 | .fa-shekel:before, 1689 | .fa-sheqel:before, 1690 | .fa-ils:before { 1691 | content: "\f20b"; 1692 | } 1693 | .fa-meanpath:before { 1694 | content: "\f20c"; 1695 | } 1696 | .fa-buysellads:before { 1697 | content: "\f20d"; 1698 | } 1699 | .fa-connectdevelop:before { 1700 | content: "\f20e"; 1701 | } 1702 | .fa-dashcube:before { 1703 | content: "\f210"; 1704 | } 1705 | .fa-forumbee:before { 1706 | content: "\f211"; 1707 | } 1708 | .fa-leanpub:before { 1709 | content: "\f212"; 1710 | } 1711 | .fa-sellsy:before { 1712 | content: "\f213"; 1713 | } 1714 | .fa-shirtsinbulk:before { 1715 | content: "\f214"; 1716 | } 1717 | .fa-simplybuilt:before { 1718 | content: "\f215"; 1719 | } 1720 | .fa-skyatlas:before { 1721 | content: "\f216"; 1722 | } 1723 | .fa-cart-plus:before { 1724 | content: "\f217"; 1725 | } 1726 | .fa-cart-arrow-down:before { 1727 | content: "\f218"; 1728 | } 1729 | .fa-diamond:before { 1730 | content: "\f219"; 1731 | } 1732 | .fa-ship:before { 1733 | content: "\f21a"; 1734 | } 1735 | .fa-user-secret:before { 1736 | content: "\f21b"; 1737 | } 1738 | .fa-motorcycle:before { 1739 | content: "\f21c"; 1740 | } 1741 | .fa-street-view:before { 1742 | content: "\f21d"; 1743 | } 1744 | .fa-heartbeat:before { 1745 | content: "\f21e"; 1746 | } 1747 | .fa-venus:before { 1748 | content: "\f221"; 1749 | } 1750 | .fa-mars:before { 1751 | content: "\f222"; 1752 | } 1753 | .fa-mercury:before { 1754 | content: "\f223"; 1755 | } 1756 | .fa-intersex:before, 1757 | .fa-transgender:before { 1758 | content: "\f224"; 1759 | } 1760 | .fa-transgender-alt:before { 1761 | content: "\f225"; 1762 | } 1763 | .fa-venus-double:before { 1764 | content: "\f226"; 1765 | } 1766 | .fa-mars-double:before { 1767 | content: "\f227"; 1768 | } 1769 | .fa-venus-mars:before { 1770 | content: "\f228"; 1771 | } 1772 | .fa-mars-stroke:before { 1773 | content: "\f229"; 1774 | } 1775 | .fa-mars-stroke-v:before { 1776 | content: "\f22a"; 1777 | } 1778 | .fa-mars-stroke-h:before { 1779 | content: "\f22b"; 1780 | } 1781 | .fa-neuter:before { 1782 | content: "\f22c"; 1783 | } 1784 | .fa-genderless:before { 1785 | content: "\f22d"; 1786 | } 1787 | .fa-facebook-official:before { 1788 | content: "\f230"; 1789 | } 1790 | .fa-pinterest-p:before { 1791 | content: "\f231"; 1792 | } 1793 | .fa-whatsapp:before { 1794 | content: "\f232"; 1795 | } 1796 | .fa-server:before { 1797 | content: "\f233"; 1798 | } 1799 | .fa-user-plus:before { 1800 | content: "\f234"; 1801 | } 1802 | .fa-user-times:before { 1803 | content: "\f235"; 1804 | } 1805 | .fa-hotel:before, 1806 | .fa-bed:before { 1807 | content: "\f236"; 1808 | } 1809 | .fa-viacoin:before { 1810 | content: "\f237"; 1811 | } 1812 | .fa-train:before { 1813 | content: "\f238"; 1814 | } 1815 | .fa-subway:before { 1816 | content: "\f239"; 1817 | } 1818 | .fa-medium:before { 1819 | content: "\f23a"; 1820 | } 1821 | .fa-yc:before, 1822 | .fa-y-combinator:before { 1823 | content: "\f23b"; 1824 | } 1825 | .fa-optin-monster:before { 1826 | content: "\f23c"; 1827 | } 1828 | .fa-opencart:before { 1829 | content: "\f23d"; 1830 | } 1831 | .fa-expeditedssl:before { 1832 | content: "\f23e"; 1833 | } 1834 | .fa-battery-4:before, 1835 | .fa-battery-full:before { 1836 | content: "\f240"; 1837 | } 1838 | .fa-battery-3:before, 1839 | .fa-battery-three-quarters:before { 1840 | content: "\f241"; 1841 | } 1842 | .fa-battery-2:before, 1843 | .fa-battery-half:before { 1844 | content: "\f242"; 1845 | } 1846 | .fa-battery-1:before, 1847 | .fa-battery-quarter:before { 1848 | content: "\f243"; 1849 | } 1850 | .fa-battery-0:before, 1851 | .fa-battery-empty:before { 1852 | content: "\f244"; 1853 | } 1854 | .fa-mouse-pointer:before { 1855 | content: "\f245"; 1856 | } 1857 | .fa-i-cursor:before { 1858 | content: "\f246"; 1859 | } 1860 | .fa-object-group:before { 1861 | content: "\f247"; 1862 | } 1863 | .fa-object-ungroup:before { 1864 | content: "\f248"; 1865 | } 1866 | .fa-sticky-note:before { 1867 | content: "\f249"; 1868 | } 1869 | .fa-sticky-note-o:before { 1870 | content: "\f24a"; 1871 | } 1872 | .fa-cc-jcb:before { 1873 | content: "\f24b"; 1874 | } 1875 | .fa-cc-diners-club:before { 1876 | content: "\f24c"; 1877 | } 1878 | .fa-clone:before { 1879 | content: "\f24d"; 1880 | } 1881 | .fa-balance-scale:before { 1882 | content: "\f24e"; 1883 | } 1884 | .fa-hourglass-o:before { 1885 | content: "\f250"; 1886 | } 1887 | .fa-hourglass-1:before, 1888 | .fa-hourglass-start:before { 1889 | content: "\f251"; 1890 | } 1891 | .fa-hourglass-2:before, 1892 | .fa-hourglass-half:before { 1893 | content: "\f252"; 1894 | } 1895 | .fa-hourglass-3:before, 1896 | .fa-hourglass-end:before { 1897 | content: "\f253"; 1898 | } 1899 | .fa-hourglass:before { 1900 | content: "\f254"; 1901 | } 1902 | .fa-hand-grab-o:before, 1903 | .fa-hand-rock-o:before { 1904 | content: "\f255"; 1905 | } 1906 | .fa-hand-stop-o:before, 1907 | .fa-hand-paper-o:before { 1908 | content: "\f256"; 1909 | } 1910 | .fa-hand-scissors-o:before { 1911 | content: "\f257"; 1912 | } 1913 | .fa-hand-lizard-o:before { 1914 | content: "\f258"; 1915 | } 1916 | .fa-hand-spock-o:before { 1917 | content: "\f259"; 1918 | } 1919 | .fa-hand-pointer-o:before { 1920 | content: "\f25a"; 1921 | } 1922 | .fa-hand-peace-o:before { 1923 | content: "\f25b"; 1924 | } 1925 | .fa-trademark:before { 1926 | content: "\f25c"; 1927 | } 1928 | .fa-registered:before { 1929 | content: "\f25d"; 1930 | } 1931 | .fa-creative-commons:before { 1932 | content: "\f25e"; 1933 | } 1934 | .fa-gg:before { 1935 | content: "\f260"; 1936 | } 1937 | .fa-gg-circle:before { 1938 | content: "\f261"; 1939 | } 1940 | .fa-tripadvisor:before { 1941 | content: "\f262"; 1942 | } 1943 | .fa-odnoklassniki:before { 1944 | content: "\f263"; 1945 | } 1946 | .fa-odnoklassniki-square:before { 1947 | content: "\f264"; 1948 | } 1949 | .fa-get-pocket:before { 1950 | content: "\f265"; 1951 | } 1952 | .fa-wikipedia-w:before { 1953 | content: "\f266"; 1954 | } 1955 | .fa-safari:before { 1956 | content: "\f267"; 1957 | } 1958 | .fa-chrome:before { 1959 | content: "\f268"; 1960 | } 1961 | .fa-firefox:before { 1962 | content: "\f269"; 1963 | } 1964 | .fa-opera:before { 1965 | content: "\f26a"; 1966 | } 1967 | .fa-internet-explorer:before { 1968 | content: "\f26b"; 1969 | } 1970 | .fa-tv:before, 1971 | .fa-television:before { 1972 | content: "\f26c"; 1973 | } 1974 | .fa-contao:before { 1975 | content: "\f26d"; 1976 | } 1977 | .fa-500px:before { 1978 | content: "\f26e"; 1979 | } 1980 | .fa-amazon:before { 1981 | content: "\f270"; 1982 | } 1983 | .fa-calendar-plus-o:before { 1984 | content: "\f271"; 1985 | } 1986 | .fa-calendar-minus-o:before { 1987 | content: "\f272"; 1988 | } 1989 | .fa-calendar-times-o:before { 1990 | content: "\f273"; 1991 | } 1992 | .fa-calendar-check-o:before { 1993 | content: "\f274"; 1994 | } 1995 | .fa-industry:before { 1996 | content: "\f275"; 1997 | } 1998 | .fa-map-pin:before { 1999 | content: "\f276"; 2000 | } 2001 | .fa-map-signs:before { 2002 | content: "\f277"; 2003 | } 2004 | .fa-map-o:before { 2005 | content: "\f278"; 2006 | } 2007 | .fa-map:before { 2008 | content: "\f279"; 2009 | } 2010 | .fa-commenting:before { 2011 | content: "\f27a"; 2012 | } 2013 | .fa-commenting-o:before { 2014 | content: "\f27b"; 2015 | } 2016 | .fa-houzz:before { 2017 | content: "\f27c"; 2018 | } 2019 | .fa-vimeo:before { 2020 | content: "\f27d"; 2021 | } 2022 | .fa-black-tie:before { 2023 | content: "\f27e"; 2024 | } 2025 | .fa-fonticons:before { 2026 | content: "\f280"; 2027 | } 2028 | .fa-reddit-alien:before { 2029 | content: "\f281"; 2030 | } 2031 | .fa-edge:before { 2032 | content: "\f282"; 2033 | } 2034 | .fa-credit-card-alt:before { 2035 | content: "\f283"; 2036 | } 2037 | .fa-codiepie:before { 2038 | content: "\f284"; 2039 | } 2040 | .fa-modx:before { 2041 | content: "\f285"; 2042 | } 2043 | .fa-fort-awesome:before { 2044 | content: "\f286"; 2045 | } 2046 | .fa-usb:before { 2047 | content: "\f287"; 2048 | } 2049 | .fa-product-hunt:before { 2050 | content: "\f288"; 2051 | } 2052 | .fa-mixcloud:before { 2053 | content: "\f289"; 2054 | } 2055 | .fa-scribd:before { 2056 | content: "\f28a"; 2057 | } 2058 | .fa-pause-circle:before { 2059 | content: "\f28b"; 2060 | } 2061 | .fa-pause-circle-o:before { 2062 | content: "\f28c"; 2063 | } 2064 | .fa-stop-circle:before { 2065 | content: "\f28d"; 2066 | } 2067 | .fa-stop-circle-o:before { 2068 | content: "\f28e"; 2069 | } 2070 | .fa-shopping-bag:before { 2071 | content: "\f290"; 2072 | } 2073 | .fa-shopping-basket:before { 2074 | content: "\f291"; 2075 | } 2076 | .fa-hashtag:before { 2077 | content: "\f292"; 2078 | } 2079 | .fa-bluetooth:before { 2080 | content: "\f293"; 2081 | } 2082 | .fa-bluetooth-b:before { 2083 | content: "\f294"; 2084 | } 2085 | .fa-percent:before { 2086 | content: "\f295"; 2087 | } 2088 | .fa-gitlab:before { 2089 | content: "\f296"; 2090 | } 2091 | .fa-wpbeginner:before { 2092 | content: "\f297"; 2093 | } 2094 | .fa-wpforms:before { 2095 | content: "\f298"; 2096 | } 2097 | .fa-envira:before { 2098 | content: "\f299"; 2099 | } 2100 | .fa-universal-access:before { 2101 | content: "\f29a"; 2102 | } 2103 | .fa-wheelchair-alt:before { 2104 | content: "\f29b"; 2105 | } 2106 | .fa-question-circle-o:before { 2107 | content: "\f29c"; 2108 | } 2109 | .fa-blind:before { 2110 | content: "\f29d"; 2111 | } 2112 | .fa-audio-description:before { 2113 | content: "\f29e"; 2114 | } 2115 | .fa-volume-control-phone:before { 2116 | content: "\f2a0"; 2117 | } 2118 | .fa-braille:before { 2119 | content: "\f2a1"; 2120 | } 2121 | .fa-assistive-listening-systems:before { 2122 | content: "\f2a2"; 2123 | } 2124 | .fa-asl-interpreting:before, 2125 | .fa-american-sign-language-interpreting:before { 2126 | content: "\f2a3"; 2127 | } 2128 | .fa-deafness:before, 2129 | .fa-hard-of-hearing:before, 2130 | .fa-deaf:before { 2131 | content: "\f2a4"; 2132 | } 2133 | .fa-glide:before { 2134 | content: "\f2a5"; 2135 | } 2136 | .fa-glide-g:before { 2137 | content: "\f2a6"; 2138 | } 2139 | .fa-signing:before, 2140 | .fa-sign-language:before { 2141 | content: "\f2a7"; 2142 | } 2143 | .fa-low-vision:before { 2144 | content: "\f2a8"; 2145 | } 2146 | .fa-viadeo:before { 2147 | content: "\f2a9"; 2148 | } 2149 | .fa-viadeo-square:before { 2150 | content: "\f2aa"; 2151 | } 2152 | .fa-snapchat:before { 2153 | content: "\f2ab"; 2154 | } 2155 | .fa-snapchat-ghost:before { 2156 | content: "\f2ac"; 2157 | } 2158 | .fa-snapchat-square:before { 2159 | content: "\f2ad"; 2160 | } 2161 | .fa-pied-piper:before { 2162 | content: "\f2ae"; 2163 | } 2164 | .fa-first-order:before { 2165 | content: "\f2b0"; 2166 | } 2167 | .fa-yoast:before { 2168 | content: "\f2b1"; 2169 | } 2170 | .fa-themeisle:before { 2171 | content: "\f2b2"; 2172 | } 2173 | .fa-google-plus-circle:before, 2174 | .fa-google-plus-official:before { 2175 | content: "\f2b3"; 2176 | } 2177 | .fa-fa:before, 2178 | .fa-font-awesome:before { 2179 | content: "\f2b4"; 2180 | } 2181 | .sr-only { 2182 | position: absolute; 2183 | width: 1px; 2184 | height: 1px; 2185 | padding: 0; 2186 | margin: -1px; 2187 | overflow: hidden; 2188 | clip: rect(0, 0, 0, 0); 2189 | border: 0; 2190 | } 2191 | .sr-only-focusable:active, 2192 | .sr-only-focusable:focus { 2193 | position: static; 2194 | width: auto; 2195 | height: auto; 2196 | margin: 0; 2197 | overflow: visible; 2198 | clip: auto; 2199 | } 2200 | --------------------------------------------------------------------------------