stylish 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -10
- data/ARCHITECTURE.md +96 -0
- data/Gemfile +8 -0
- data/README.md +25 -29
- data/Rakefile +24 -0
- data/bin/stylish +33 -0
- data/lib/stylish.rb +36 -1
- data/lib/stylish/configuration.rb +37 -0
- data/lib/stylish/core_ext.rb +20 -0
- data/lib/stylish/developer.rb +13 -0
- data/lib/stylish/developer/config.rb +19 -0
- data/lib/stylish/developer/environment.rb +75 -0
- data/lib/stylish/developer/listing.rb +85 -0
- data/lib/stylish/developer/model_delegator.rb +51 -0
- data/lib/stylish/developer/modification.rb +139 -0
- data/lib/stylish/developer/path.rb +168 -0
- data/lib/stylish/developer/route.rb +97 -0
- data/lib/stylish/developer/server.rb +40 -0
- data/lib/stylish/engine.rb +12 -0
- data/lib/stylish/fs.rb +59 -0
- data/lib/stylish/manifest.rb +100 -0
- data/lib/stylish/models.rb +119 -0
- data/lib/stylish/models/component.rb +19 -0
- data/lib/stylish/models/layout.rb +19 -0
- data/lib/stylish/models/library.rb +134 -0
- data/lib/stylish/models/package.rb +156 -0
- data/lib/stylish/models/script.rb +10 -0
- data/lib/stylish/models/stylesheet.rb +9 -0
- data/lib/stylish/models/template.rb +9 -0
- data/lib/stylish/models/theme.rb +8 -0
- data/lib/stylish/util.rb +20 -0
- data/lib/stylish/version.rb +1 -1
- data/library/config.json +4 -0
- data/library/second-theme/manifest.json +8 -0
- data/library/second-theme/manifest.yml +6 -0
- data/library/second-theme/templates/footers/footer-01.html +3 -0
- data/library/second-theme/templates/footers/footer-02.html +3 -0
- data/library/second-theme/templates/headers/header-01.html +3 -0
- data/library/second-theme/templates/headers/header-02.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/components/footers/footer-01.json +5 -0
- data/library/test-theme/components/footers/footer-02.json +5 -0
- data/library/test-theme/components/headers/header-01.json +5 -0
- data/library/test-theme/components/headers/header-02.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/library/test-theme/manifest.json +8 -0
- data/library/test-theme/manifest.yml +6 -0
- data/library/test-theme/pages/page-01.json +11 -0
- data/library/test-theme/templates/footers/footer-01.html +3 -0
- data/library/test-theme/templates/footers/footer-02.html +3 -0
- data/library/test-theme/templates/headers/header-01.html +3 -0
- data/library/test-theme/templates/headers/header-02.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/templates/layouts/standard-layout.html +10 -0
- data/spec/acceptance/listing_assets_spec.rb +20 -0
- data/spec/acceptance/model_browsing_spec.rb +21 -0
- data/spec/acceptance/model_creation_spec.rb +16 -0
- data/spec/acceptance/model_deleting_spec.rb +10 -0
- data/spec/acceptance/model_updating_spec.rb +12 -0
- data/spec/acceptance/modifying_assets_spec.rb +50 -0
- data/spec/acceptance/server_info_spec.rb +10 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
- data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +30 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +82 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
- data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
- data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
- data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
- data/spec/dummy/db/schema.rb +37 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/fixtures/config.json +3 -0
- data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
- data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/spec/fixtures/test-theme/manifest.json +8 -0
- data/spec/fixtures/test-theme/manifest.yml +6 -0
- data/spec/fixtures/test-theme/pages/page-01.json +11 -0
- data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
- data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
- data/spec/lib/stylish/configuration_spec.rb +8 -0
- data/spec/lib/stylish/developer/path_spec.rb +36 -0
- data/spec/lib/stylish/developer/route_spec.rb +5 -0
- data/spec/lib/stylish/manifest_spec.rb +48 -0
- data/spec/lib/stylish/models/library_spec.rb +38 -0
- data/spec/lib/stylish/models/package_spec.rb +35 -0
- data/spec/lib/stylish/models_spec.rb +12 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/json_helper.rb +7 -0
- data/spec/test.css.scss +6 -0
- data/stylish.gemspec +17 -2
- data/support/editor-app/.gitignore +2 -0
- data/support/editor-app/development/bower.json +9 -0
- data/support/editor-app/development/package.json +28 -0
- data/support/editor-app/development/semantic/components/accordion.css +257 -0
- data/support/editor-app/development/semantic/components/accordion.js +558 -0
- data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/development/semantic/components/ad.css +277 -0
- data/support/editor-app/development/semantic/components/ad.min.css +11 -0
- data/support/editor-app/development/semantic/components/api.js +851 -0
- data/support/editor-app/development/semantic/components/api.min.js +11 -0
- data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/development/semantic/components/button.css +2391 -0
- data/support/editor-app/development/semantic/components/button.min.css +11 -0
- data/support/editor-app/development/semantic/components/card.css +758 -0
- data/support/editor-app/development/semantic/components/card.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.css +514 -0
- data/support/editor-app/development/semantic/components/checkbox.js +507 -0
- data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/development/semantic/components/comment.css +260 -0
- data/support/editor-app/development/semantic/components/comment.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.css +187 -0
- data/support/editor-app/development/semantic/components/dimmer.js +627 -0
- data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/development/semantic/components/divider.css +244 -0
- data/support/editor-app/development/semantic/components/divider.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/development/semantic/components/feed.css +277 -0
- data/support/editor-app/development/semantic/components/feed.min.css +11 -0
- data/support/editor-app/development/semantic/components/flag.css +1017 -0
- data/support/editor-app/development/semantic/components/flag.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.css +875 -0
- data/support/editor-app/development/semantic/components/form.js +1039 -0
- data/support/editor-app/development/semantic/components/form.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.min.js +11 -0
- data/support/editor-app/development/semantic/components/grid.css +1816 -0
- data/support/editor-app/development/semantic/components/grid.min.css +11 -0
- data/support/editor-app/development/semantic/components/header.css +572 -0
- data/support/editor-app/development/semantic/components/header.min.css +11 -0
- data/support/editor-app/development/semantic/components/icon.css +2127 -0
- data/support/editor-app/development/semantic/components/icon.min.css +11 -0
- data/support/editor-app/development/semantic/components/image.css +275 -0
- data/support/editor-app/development/semantic/components/image.min.css +11 -0
- data/support/editor-app/development/semantic/components/input.css +455 -0
- data/support/editor-app/development/semantic/components/input.min.css +11 -0
- data/support/editor-app/development/semantic/components/item.css +458 -0
- data/support/editor-app/development/semantic/components/item.min.css +11 -0
- data/support/editor-app/development/semantic/components/label.css +930 -0
- data/support/editor-app/development/semantic/components/label.min.css +11 -0
- data/support/editor-app/development/semantic/components/list.css +879 -0
- data/support/editor-app/development/semantic/components/list.min.css +11 -0
- data/support/editor-app/development/semantic/components/loader.css +279 -0
- data/support/editor-app/development/semantic/components/loader.min.css +11 -0
- data/support/editor-app/development/semantic/components/menu.css +1596 -0
- data/support/editor-app/development/semantic/components/menu.min.css +11 -0
- data/support/editor-app/development/semantic/components/message.css +422 -0
- data/support/editor-app/development/semantic/components/message.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.css +431 -0
- data/support/editor-app/development/semantic/components/modal.js +860 -0
- data/support/editor-app/development/semantic/components/modal.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.min.js +11 -0
- data/support/editor-app/development/semantic/components/nag.css +149 -0
- data/support/editor-app/development/semantic/components/nag.js +477 -0
- data/support/editor-app/development/semantic/components/nag.min.css +11 -0
- data/support/editor-app/development/semantic/components/nag.min.js +11 -0
- data/support/editor-app/development/semantic/components/popup.css +294 -0
- data/support/editor-app/development/semantic/components/popup.js +1187 -0
- data/support/editor-app/development/semantic/components/popup.min.css +11 -0
- data/support/editor-app/development/semantic/components/popup.min.js +11 -0
- data/support/editor-app/development/semantic/components/progress.css +449 -0
- data/support/editor-app/development/semantic/components/progress.js +785 -0
- data/support/editor-app/development/semantic/components/progress.min.css +11 -0
- data/support/editor-app/development/semantic/components/progress.min.js +11 -0
- data/support/editor-app/development/semantic/components/rail.css +125 -0
- data/support/editor-app/development/semantic/components/rail.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.css +262 -0
- data/support/editor-app/development/semantic/components/rating.js +451 -0
- data/support/editor-app/development/semantic/components/rating.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.min.js +11 -0
- data/support/editor-app/development/semantic/components/reset.css +430 -0
- data/support/editor-app/development/semantic/components/reset.min.css +11 -0
- data/support/editor-app/development/semantic/components/reveal.css +294 -0
- data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.css +330 -0
- data/support/editor-app/development/semantic/components/search.js +1055 -0
- data/support/editor-app/development/semantic/components/search.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.min.js +11 -0
- data/support/editor-app/development/semantic/components/segment.css +590 -0
- data/support/editor-app/development/semantic/components/segment.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.css +155 -0
- data/support/editor-app/development/semantic/components/shape.js +830 -0
- data/support/editor-app/development/semantic/components/shape.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.min.js +11 -0
- data/support/editor-app/development/semantic/components/sidebar.css +621 -0
- data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/development/semantic/components/site.css +147 -0
- data/support/editor-app/development/semantic/components/site.js +487 -0
- data/support/editor-app/development/semantic/components/site.min.css +11 -0
- data/support/editor-app/development/semantic/components/site.min.js +11 -0
- data/support/editor-app/development/semantic/components/state.js +690 -0
- data/support/editor-app/development/semantic/components/state.min.js +11 -0
- data/support/editor-app/development/semantic/components/statistic.css +410 -0
- data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/development/semantic/components/step.css +433 -0
- data/support/editor-app/development/semantic/components/step.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.css +80 -0
- data/support/editor-app/development/semantic/components/sticky.js +775 -0
- data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/development/semantic/components/tab.css +93 -0
- data/support/editor-app/development/semantic/components/tab.js +787 -0
- data/support/editor-app/development/semantic/components/tab.min.css +11 -0
- data/support/editor-app/development/semantic/components/tab.min.js +11 -0
- data/support/editor-app/development/semantic/components/table.css +999 -0
- data/support/editor-app/development/semantic/components/table.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.css +2152 -0
- data/support/editor-app/development/semantic/components/transition.js +936 -0
- data/support/editor-app/development/semantic/components/transition.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.min.js +11 -0
- data/support/editor-app/development/semantic/components/video.css +126 -0
- data/support/editor-app/development/semantic/components/video.js +540 -0
- data/support/editor-app/development/semantic/components/video.min.css +11 -0
- data/support/editor-app/development/semantic/components/video.min.js +11 -0
- data/support/editor-app/development/semantic/components/visibility.js +970 -0
- data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/development/semantic/semantic.css +31768 -0
- data/support/editor-app/development/semantic/semantic.js +18317 -0
- data/support/editor-app/development/semantic/semantic.min.css +11 -0
- data/support/editor-app/development/semantic/semantic.min.js +17 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/development/src/apis/index.coffee +35 -0
- data/support/editor-app/development/src/components/editor.cjsx +58 -0
- data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
- data/support/editor-app/development/src/components/header.cjsx +12 -0
- data/support/editor-app/development/src/components/index.coffee +9 -0
- data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
- data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
- data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
- data/support/editor-app/development/src/index.cjsx +82 -0
- data/support/editor-app/development/src/lib/util.coffee +48 -0
- data/support/editor-app/development/src/pages/home.cjsx +46 -0
- data/support/editor-app/development/src/pages/index.coffee +6 -0
- data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
- data/support/editor-app/development/src/registry.coffee +35 -0
- data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
- data/support/editor-app/development/src/styles/index.css.scss +240 -0
- data/support/editor-app/development/src/sugar.cjsx +126 -0
- data/support/editor-app/development/webpack.config.js +53 -0
- data/support/editor-app/dist/base.css +0 -0
- data/support/editor-app/dist/toolit.js +62 -0
- data/support/editor-app/dist/toolkit.js +44573 -0
- data/support/editor-app/index.html +50 -0
- data/support/editor-app/package.json +15 -0
- data/support/editor-app/semantic/components/accordion.css +257 -0
- data/support/editor-app/semantic/components/accordion.js +558 -0
- data/support/editor-app/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/semantic/components/ad.css +277 -0
- data/support/editor-app/semantic/components/ad.min.css +11 -0
- data/support/editor-app/semantic/components/api.js +851 -0
- data/support/editor-app/semantic/components/api.min.js +11 -0
- data/support/editor-app/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/semantic/components/button.css +2391 -0
- data/support/editor-app/semantic/components/button.min.css +11 -0
- data/support/editor-app/semantic/components/card.css +758 -0
- data/support/editor-app/semantic/components/card.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.css +514 -0
- data/support/editor-app/semantic/components/checkbox.js +507 -0
- data/support/editor-app/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/semantic/components/comment.css +260 -0
- data/support/editor-app/semantic/components/comment.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.css +187 -0
- data/support/editor-app/semantic/components/dimmer.js +627 -0
- data/support/editor-app/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/semantic/components/divider.css +244 -0
- data/support/editor-app/semantic/components/divider.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/semantic/components/feed.css +277 -0
- data/support/editor-app/semantic/components/feed.min.css +11 -0
- data/support/editor-app/semantic/components/flag.css +1017 -0
- data/support/editor-app/semantic/components/flag.min.css +11 -0
- data/support/editor-app/semantic/components/form.css +875 -0
- data/support/editor-app/semantic/components/form.js +1039 -0
- data/support/editor-app/semantic/components/form.min.css +11 -0
- data/support/editor-app/semantic/components/form.min.js +11 -0
- data/support/editor-app/semantic/components/grid.css +1816 -0
- data/support/editor-app/semantic/components/grid.min.css +11 -0
- data/support/editor-app/semantic/components/header.css +572 -0
- data/support/editor-app/semantic/components/header.min.css +11 -0
- data/support/editor-app/semantic/components/icon.css +2127 -0
- data/support/editor-app/semantic/components/icon.min.css +11 -0
- data/support/editor-app/semantic/components/image.css +275 -0
- data/support/editor-app/semantic/components/image.min.css +11 -0
- data/support/editor-app/semantic/components/input.css +455 -0
- data/support/editor-app/semantic/components/input.min.css +11 -0
- data/support/editor-app/semantic/components/item.css +458 -0
- data/support/editor-app/semantic/components/item.min.css +11 -0
- data/support/editor-app/semantic/components/label.css +930 -0
- data/support/editor-app/semantic/components/label.min.css +11 -0
- data/support/editor-app/semantic/components/list.css +879 -0
- data/support/editor-app/semantic/components/list.min.css +11 -0
- data/support/editor-app/semantic/components/loader.css +279 -0
- data/support/editor-app/semantic/components/loader.min.css +11 -0
- data/support/editor-app/semantic/components/menu.css +1596 -0
- data/support/editor-app/semantic/components/menu.min.css +11 -0
- data/support/editor-app/semantic/components/message.css +422 -0
- data/support/editor-app/semantic/components/message.min.css +11 -0
- data/support/editor-app/semantic/components/modal.css +431 -0
- data/support/editor-app/semantic/components/modal.js +860 -0
- data/support/editor-app/semantic/components/modal.min.css +11 -0
- data/support/editor-app/semantic/components/modal.min.js +11 -0
- data/support/editor-app/semantic/components/nag.css +149 -0
- data/support/editor-app/semantic/components/nag.js +477 -0
- data/support/editor-app/semantic/components/nag.min.css +11 -0
- data/support/editor-app/semantic/components/nag.min.js +11 -0
- data/support/editor-app/semantic/components/popup.css +294 -0
- data/support/editor-app/semantic/components/popup.js +1187 -0
- data/support/editor-app/semantic/components/popup.min.css +11 -0
- data/support/editor-app/semantic/components/popup.min.js +11 -0
- data/support/editor-app/semantic/components/progress.css +449 -0
- data/support/editor-app/semantic/components/progress.js +785 -0
- data/support/editor-app/semantic/components/progress.min.css +11 -0
- data/support/editor-app/semantic/components/progress.min.js +11 -0
- data/support/editor-app/semantic/components/rail.css +125 -0
- data/support/editor-app/semantic/components/rail.min.css +11 -0
- data/support/editor-app/semantic/components/rating.css +262 -0
- data/support/editor-app/semantic/components/rating.js +451 -0
- data/support/editor-app/semantic/components/rating.min.css +11 -0
- data/support/editor-app/semantic/components/rating.min.js +11 -0
- data/support/editor-app/semantic/components/reset.css +430 -0
- data/support/editor-app/semantic/components/reset.min.css +11 -0
- data/support/editor-app/semantic/components/reveal.css +294 -0
- data/support/editor-app/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/semantic/components/search.css +330 -0
- data/support/editor-app/semantic/components/search.js +1055 -0
- data/support/editor-app/semantic/components/search.min.css +11 -0
- data/support/editor-app/semantic/components/search.min.js +11 -0
- data/support/editor-app/semantic/components/segment.css +590 -0
- data/support/editor-app/semantic/components/segment.min.css +11 -0
- data/support/editor-app/semantic/components/shape.css +155 -0
- data/support/editor-app/semantic/components/shape.js +830 -0
- data/support/editor-app/semantic/components/shape.min.css +11 -0
- data/support/editor-app/semantic/components/shape.min.js +11 -0
- data/support/editor-app/semantic/components/sidebar.css +621 -0
- data/support/editor-app/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/semantic/components/site.css +147 -0
- data/support/editor-app/semantic/components/site.js +487 -0
- data/support/editor-app/semantic/components/site.min.css +11 -0
- data/support/editor-app/semantic/components/site.min.js +11 -0
- data/support/editor-app/semantic/components/state.js +690 -0
- data/support/editor-app/semantic/components/state.min.js +11 -0
- data/support/editor-app/semantic/components/statistic.css +410 -0
- data/support/editor-app/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/semantic/components/step.css +433 -0
- data/support/editor-app/semantic/components/step.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.css +80 -0
- data/support/editor-app/semantic/components/sticky.js +775 -0
- data/support/editor-app/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/semantic/components/tab.css +93 -0
- data/support/editor-app/semantic/components/tab.js +787 -0
- data/support/editor-app/semantic/components/tab.min.css +11 -0
- data/support/editor-app/semantic/components/tab.min.js +11 -0
- data/support/editor-app/semantic/components/table.css +999 -0
- data/support/editor-app/semantic/components/table.min.css +11 -0
- data/support/editor-app/semantic/components/transition.css +2152 -0
- data/support/editor-app/semantic/components/transition.js +936 -0
- data/support/editor-app/semantic/components/transition.min.css +11 -0
- data/support/editor-app/semantic/components/transition.min.js +11 -0
- data/support/editor-app/semantic/components/video.css +126 -0
- data/support/editor-app/semantic/components/video.js +540 -0
- data/support/editor-app/semantic/components/video.min.css +11 -0
- data/support/editor-app/semantic/components/video.min.js +11 -0
- data/support/editor-app/semantic/components/visibility.js +970 -0
- data/support/editor-app/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/semantic/semantic.css +31768 -0
- data/support/editor-app/semantic/semantic.js +18317 -0
- data/support/editor-app/semantic/semantic.min.css +11 -0
- data/support/editor-app/semantic/semantic.min.js +17 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/vendor/jquery.js +8829 -0
- data/support/library-server/Gemfile +0 -0
- data/support/library-server/config.ru +4 -0
- metadata +740 -7
@@ -0,0 +1,11 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
.ui.header{border:none;margin:-webkit-calc(2rem - .165em) 0 1rem;margin:calc(2rem - .165em) 0 1rem;padding:0;font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:700;line-height:1.33em;text-transform:none;color:rgba(0,0,0,.8)}.ui.header:first-child{margin-top:-.165em}.ui.header:last-child{margin-bottom:0}.ui.header .sub.header{font-weight:400;margin:0;padding:0;line-height:1.2em;color:rgba(0,0,0,.5)}.ui.header>.icon{display:table-cell;opacity:1;font-size:1.5em;padding-top:.165em;vertical-align:middle;padding-right:.5rem}.ui.header .icon:only-child{display:inline-block;padding:0;margin-right:.5rem;vertical-align:baseline}.ui.header .content{display:inline-block;vertical-align:top}.ui.header>.icon+.content{padding-left:.5rem;display:table-cell;vertical-align:middle}.ui.header .ui.label{margin:0 0 0 .5rem;vertical-align:middle}.ui.header+p{margin-top:0}h1.ui.header{font-size:2rem}h2.ui.header{font-size:1.714rem}h3.ui.header{font-size:1.28rem}h4.ui.header{font-size:1.071rem}h5.ui.header{font-size:1rem}h1.ui.header .sub.header{font-size:1.4285rem}h2.ui.header .sub.header,h3.ui.header .sub.header{font-size:1.1428rem}h4.ui.header .sub.header{font-size:1rem}h5.ui.header .sub.header{font-size:.9285rem}.ui.huge.header{min-height:1em;font-size:2em}.ui.large.header{font-size:1.714em}.ui.medium.header{font-size:1.28em}.ui.small.header{font-size:1.071em}.ui.tiny.header{font-size:1em}.ui.huge.header .sub.header,.ui.large.header .sub.header{font-size:1.4285rem}.ui.header .sub.header{font-size:1.1428rem}.ui.small.header .sub.header{font-size:1rem}.ui.tiny.header .sub.header{font-size:.9285rem}.ui.icon.header{display:inline-block;text-align:center;margin:2rem 0 1rem}.ui.icon.header:after{content:'';display:block;height:0;clear:both;visibility:hidden}.ui.icon.header:first-child{margin-top:0}.ui.icon.header .icon{float:none;display:block;width:auto;height:auto;padding:0;font-size:3em;margin:0 auto .25rem;opacity:1}.ui.icon.header .content{display:block}.ui.icon.header .circular.icon,.ui.icon.header .square.icon{font-size:2em}.ui.block.icon.header .icon{margin-bottom:0}.ui.icon.header.aligned{margin-left:auto;margin-right:auto;display:block}.ui.disabled.header{opacity:.3}.ui.black.header,a.ui.black.header:hover{color:#1b1c1d!important}.ui.blue.header{color:#3b83c0!important}a.ui.blue.header:hover{color:#458ac6!important}.ui.green.header{color:#5bbd72!important}a.ui.green.header:hover{color:#66c17b!important}.ui.orange.header{color:#e07b53!important}a.ui.orange.header:hover{color:#e28560!important}.ui.pink.header{color:#d9499a!important}a.ui.pink.header:hover{color:#dc56a1!important}.ui.purple.header{color:#564f8a!important}a.ui.purple.header:hover{color:#5c5594!important}.ui.red.header{color:#d95c5c!important}a.ui.red.header:hover{color:#dc6868!important}.ui.teal.header{color:#00b5ad!important}a.ui.teal.header:hover{color:#00c4bc!important}.ui.yellow.header{color:#f2c61f!important}a.ui.yellow.header:hover{color:#f3ca2d!important}.ui.black.dividing.header{border-bottom:2px solid #1b1c1d}.ui.blue.dividing.header{border-bottom:2px solid #3b83c0}.ui.green.dividing.header{border-bottom:2px solid #5bbd72}.ui.orange.dividing.header{border-bottom:2px solid #e07b53}.ui.pink.dividing.header{border-bottom:2px solid #d9499a}.ui.purple.dividing.header{border-bottom:2px solid #564f8a}.ui.red.dividing.header{border-bottom:2px solid #d95c5c}.ui.teal.dividing.header{border-bottom:2px solid #00b5ad}.ui.yellow.dividing.header{border-bottom:2px solid #f2c61f}.ui.inverted.header{color:#fff}.ui.inverted.header .sub.header{color:rgba(255,255,255,.85)}.ui.inverted.attached.header,.ui.inverted.block.header{background:-webkit-linear-gradient(transparent,rgba(0,0,0,.05)) #333;background:linear-gradient(transparent,rgba(0,0,0,.05)) #333;box-shadow:none}.ui.inverted.black.header{color:#aaa!important}a.ui.inverted.black.header:hover{color:#b2b2b2!important}.ui.inverted.blue.header{color:#54c8ff!important}a.ui.inverted.blue.header:hover{color:#63cdff!important}.ui.inverted.green.header{color:#2ecc40!important}a.ui.inverted.green.header:hover{color:#37d249!important}.ui.inverted.orange.header{color:#ff851b!important}a.ui.inverted.orange.header:hover{color:#ff8d2a!important}.ui.inverted.pink.header{color:#ff8edf!important}a.ui.inverted.pink.header:hover{color:#ff9de3!important}.ui.inverted.purple.header{color:#cdc6ff!important}a.ui.inverted.purple.header:hover{color:#dad5ff!important}.ui.inverted.red.header{color:#ff695e!important}a.ui.inverted.red.header:hover{color:#ff776d!important}.ui.inverted.teal.header{color:#6dffff!important}a.ui.inverted.teal.header:hover{color:#7cffff!important}.ui.inverted.yellow.header{color:#ffe21f!important}a.ui.inverted.yellow.header:hover{color:#ffe42e!important}.ui.inverted.block.header{border-bottom:none}.ui.left.aligned.header{text-align:left}.ui.right.aligned.header{text-align:right}.ui.center.aligned.header,.ui.centered.header{text-align:center}.ui.justified.header{text-align:justify}.ui.justified.header:after{display:inline-block;content:'';width:100%}.ui.floated.header,.ui[class*="left floated"].header{float:left;margin-top:0;margin-right:.5em}.ui[class*="right floated"].header{float:right;margin-top:0;margin-left:.5em}.ui.fitted.header{padding:0}.ui.dividing.header{padding-bottom:.25rem;border-bottom:1px solid rgba(0,0,0,.1)}.ui.dividing.header .sub.header{padding-bottom:.25rem}.ui.dividing.header .icon{margin-bottom:0}.ui.inverted.dividing.header{border-bottom-color:rgba(255,255,255,.2)}.ui.block.header{background:#f0f0f0;padding:.75rem 1rem;box-shadow:none;border:1px solid #d4d4d5;border-radius:.3125rem}.ui.tiny.block.header{font-size:1em}.ui.small.block.header{font-size:1.071em}.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28em}.ui.large.block.header{font-size:1.714em}.ui.huge.block.header{font-size:2em}.ui.attached.header{background:#fff;padding:.75rem 1rem;margin-left:-1px;margin-right:-1px;box-shadow:none;border:1px solid #d4d4d5}.ui.attached.block.header{background:#f0f0f0}.ui.attached:not(.top):not(.bottom).header{margin-top:0;margin-bottom:0;border-top:none;border-bottom:none;border-radius:0}.ui.top.attached.header{margin-bottom:0;border-bottom:none;border-radius:.3125rem .3125rem 0 0}.ui.bottom.attached.header{margin-top:0;border-top:none;border-radius:0 0 .3125rem .3125rem}.ui.tiny.attached.header{font-size:.8571em}.ui.small.attached.header{font-size:.9285em}.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1em}.ui.large.attached.header{font-size:1.0714em}.ui.huge.attached.header{font-size:1.1428em}.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6){font-size:1.28em}
|
@@ -0,0 +1,2127 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
/*******************************
|
15
|
+
Icon
|
16
|
+
*******************************/
|
17
|
+
|
18
|
+
@font-face {
|
19
|
+
font-family: 'Icons';
|
20
|
+
src: url("../themes/default/assets/fonts/icons.eot");
|
21
|
+
src: url("../themes/default/assets/fonts/icons.eot?#iefix") format('embedded-opentype'), url("../themes/default/assets/fonts/icons.svg#icons") format('svg'), url("../themes/default/assets/fonts/icons.woff") format('woff'), url("../themes/default/assets/fonts/icons.ttf") format('truetype');
|
22
|
+
font-style: normal;
|
23
|
+
font-weight: normal;
|
24
|
+
font-variant: normal;
|
25
|
+
text-decoration: inherit;
|
26
|
+
text-transform: none;
|
27
|
+
}
|
28
|
+
i.icon {
|
29
|
+
display: inline-block;
|
30
|
+
opacity: 1;
|
31
|
+
margin: 0em 0.25rem 0em 0em;
|
32
|
+
width: 1.23em;
|
33
|
+
height: 0.9em;
|
34
|
+
font-family: 'Icons';
|
35
|
+
font-style: normal;
|
36
|
+
line-height: 1;
|
37
|
+
font-weight: normal;
|
38
|
+
text-decoration: inherit;
|
39
|
+
text-align: center;
|
40
|
+
speak: none;
|
41
|
+
font-smoothing: antialiased;
|
42
|
+
-moz-osx-font-smoothing: grayscale;
|
43
|
+
-webkit-backface-visibility: hidden;
|
44
|
+
backface-visibility: hidden;
|
45
|
+
}
|
46
|
+
i.icon:before {
|
47
|
+
background: none !important;
|
48
|
+
}
|
49
|
+
|
50
|
+
|
51
|
+
/*******************************
|
52
|
+
Types
|
53
|
+
*******************************/
|
54
|
+
|
55
|
+
|
56
|
+
/*--------------
|
57
|
+
Loading
|
58
|
+
---------------*/
|
59
|
+
|
60
|
+
i.icon.loading {
|
61
|
+
height: 1em;
|
62
|
+
-webkit-animation: icon-loading 2s linear infinite;
|
63
|
+
animation: icon-loading 2s linear infinite;
|
64
|
+
}
|
65
|
+
@-webkit-keyframes icon-loading {
|
66
|
+
|
67
|
+
from {
|
68
|
+
-webkit-transform: rotate(0deg);
|
69
|
+
transform: rotate(0deg);
|
70
|
+
}
|
71
|
+
|
72
|
+
to {
|
73
|
+
-webkit-transform: rotate(360deg);
|
74
|
+
transform: rotate(360deg);
|
75
|
+
}
|
76
|
+
}
|
77
|
+
@keyframes icon-loading {
|
78
|
+
from {
|
79
|
+
-webkit-transform: rotate(0deg);
|
80
|
+
transform: rotate(0deg);
|
81
|
+
}
|
82
|
+
to {
|
83
|
+
-webkit-transform: rotate(360deg);
|
84
|
+
transform: rotate(360deg);
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
|
89
|
+
/*******************************
|
90
|
+
States
|
91
|
+
*******************************/
|
92
|
+
|
93
|
+
i.icon.hover {
|
94
|
+
opacity: 1;
|
95
|
+
}
|
96
|
+
i.icon.active {
|
97
|
+
opacity: 1;
|
98
|
+
}
|
99
|
+
i.emphasized.icon {
|
100
|
+
opacity: 1;
|
101
|
+
}
|
102
|
+
i.disabled.icon {
|
103
|
+
pointer-events: none;
|
104
|
+
opacity: 0.3 !important;
|
105
|
+
}
|
106
|
+
|
107
|
+
|
108
|
+
/*******************************
|
109
|
+
Variations
|
110
|
+
*******************************/
|
111
|
+
|
112
|
+
|
113
|
+
/*-------------------
|
114
|
+
Link
|
115
|
+
--------------------*/
|
116
|
+
|
117
|
+
i.link.icon {
|
118
|
+
cursor: pointer;
|
119
|
+
opacity: 0.8;
|
120
|
+
-webkit-transition: opacity 0.2s ease;
|
121
|
+
transition: opacity 0.2s ease;
|
122
|
+
}
|
123
|
+
i.link.icon:hover {
|
124
|
+
opacity: 1 !important;
|
125
|
+
}
|
126
|
+
|
127
|
+
/*-------------------
|
128
|
+
Circular
|
129
|
+
--------------------*/
|
130
|
+
|
131
|
+
i.circular.icon {
|
132
|
+
border-radius: 500em !important;
|
133
|
+
padding: 0.5em 0.5em !important;
|
134
|
+
box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
135
|
+
line-height: 1 !important;
|
136
|
+
width: 2em !important;
|
137
|
+
height: 2em !important;
|
138
|
+
}
|
139
|
+
i.circular.inverted.icon {
|
140
|
+
border: none;
|
141
|
+
box-shadow: none;
|
142
|
+
}
|
143
|
+
|
144
|
+
/*-------------------
|
145
|
+
Flipped
|
146
|
+
--------------------*/
|
147
|
+
|
148
|
+
i.flipped.icon,
|
149
|
+
i.horizontally.flipped.icon {
|
150
|
+
-webkit-transform: scale(-1, 1);
|
151
|
+
-ms-transform: scale(-1, 1);
|
152
|
+
transform: scale(-1, 1);
|
153
|
+
}
|
154
|
+
i.vertically.flipped.icon {
|
155
|
+
-webkit-transform: scale(1, -1);
|
156
|
+
-ms-transform: scale(1, -1);
|
157
|
+
transform: scale(1, -1);
|
158
|
+
}
|
159
|
+
|
160
|
+
/*-------------------
|
161
|
+
Rotated
|
162
|
+
--------------------*/
|
163
|
+
|
164
|
+
i.rotated.icon,
|
165
|
+
i.right.rotated.icon,
|
166
|
+
i.clockwise.rotated.icon {
|
167
|
+
-webkit-transform: rotate(90deg);
|
168
|
+
-ms-transform: rotate(90deg);
|
169
|
+
transform: rotate(90deg);
|
170
|
+
}
|
171
|
+
i.left.rotated.icon,
|
172
|
+
i.counterclockwise.rotated.icon {
|
173
|
+
-webkit-transform: rotate(-90deg);
|
174
|
+
-ms-transform: rotate(-90deg);
|
175
|
+
transform: rotate(-90deg);
|
176
|
+
}
|
177
|
+
|
178
|
+
/*-------------------
|
179
|
+
Bordered
|
180
|
+
--------------------*/
|
181
|
+
|
182
|
+
i.bordered.icon {
|
183
|
+
width: 2em;
|
184
|
+
height: 2em;
|
185
|
+
padding: 0.55em 0.385em !important;
|
186
|
+
box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
|
187
|
+
vertical-align: baseline;
|
188
|
+
}
|
189
|
+
i.bordered.inverted.icon {
|
190
|
+
border: none;
|
191
|
+
box-shadow: none;
|
192
|
+
}
|
193
|
+
|
194
|
+
/*-------------------
|
195
|
+
Colors
|
196
|
+
--------------------*/
|
197
|
+
|
198
|
+
i.white.icon {
|
199
|
+
color: #ffffff !important;
|
200
|
+
}
|
201
|
+
i.black.icon {
|
202
|
+
color: #1b1c1d !important;
|
203
|
+
}
|
204
|
+
i.blue.icon {
|
205
|
+
color: #3b83c0 !important;
|
206
|
+
}
|
207
|
+
i.green.icon {
|
208
|
+
color: #5bbd72 !important;
|
209
|
+
}
|
210
|
+
i.orange.icon {
|
211
|
+
color: #e07b53 !important;
|
212
|
+
}
|
213
|
+
i.pink.icon {
|
214
|
+
color: #d9499a !important;
|
215
|
+
}
|
216
|
+
i.purple.icon {
|
217
|
+
color: #564f8a !important;
|
218
|
+
}
|
219
|
+
i.red.icon {
|
220
|
+
color: #d95c5c !important;
|
221
|
+
}
|
222
|
+
i.teal.icon {
|
223
|
+
color: #00b5ad !important;
|
224
|
+
}
|
225
|
+
i.yellow.icon {
|
226
|
+
color: #f2c61f !important;
|
227
|
+
}
|
228
|
+
|
229
|
+
/*-------------------
|
230
|
+
Inverted
|
231
|
+
--------------------*/
|
232
|
+
|
233
|
+
i.inverted.icon {
|
234
|
+
color: #ffffff;
|
235
|
+
}
|
236
|
+
i.inverted.black.icon {
|
237
|
+
color: #333333 !important;
|
238
|
+
}
|
239
|
+
i.inverted.blue.icon {
|
240
|
+
color: #54c8ff !important;
|
241
|
+
}
|
242
|
+
i.inverted.green.icon {
|
243
|
+
color: #2ecc40 !important;
|
244
|
+
}
|
245
|
+
i.inverted.orange.icon {
|
246
|
+
color: #ff851b !important;
|
247
|
+
}
|
248
|
+
i.inverted.pink.icon {
|
249
|
+
color: #ff8edf !important;
|
250
|
+
}
|
251
|
+
i.inverted.purple.icon {
|
252
|
+
color: #cdc6ff !important;
|
253
|
+
}
|
254
|
+
i.inverted.red.icon {
|
255
|
+
color: #ff695e !important;
|
256
|
+
}
|
257
|
+
i.inverted.teal.icon {
|
258
|
+
color: #6dffff !important;
|
259
|
+
}
|
260
|
+
i.inverted.yellow.icon {
|
261
|
+
color: #ffe21f !important;
|
262
|
+
}
|
263
|
+
|
264
|
+
/* Inverted Shapes */
|
265
|
+
i.inverted.bordered.icon,
|
266
|
+
i.inverted.circular.icon {
|
267
|
+
background-color: #222222 !important;
|
268
|
+
color: #FFFFFF !important;
|
269
|
+
}
|
270
|
+
i.inverted.bordered.black.icon,
|
271
|
+
i.inverted.circular.black.icon {
|
272
|
+
background-color: #1b1c1d !important;
|
273
|
+
color: #FFFFFF !important;
|
274
|
+
}
|
275
|
+
i.inverted.bordered.blue.icon,
|
276
|
+
i.inverted.circular.blue.icon {
|
277
|
+
background-color: #3b83c0 !important;
|
278
|
+
color: #FFFFFF !important;
|
279
|
+
}
|
280
|
+
i.inverted.bordered.green.icon,
|
281
|
+
i.inverted.circular.green.icon {
|
282
|
+
background-color: #5bbd72 !important;
|
283
|
+
color: #FFFFFF !important;
|
284
|
+
}
|
285
|
+
i.inverted.bordered.orange.icon,
|
286
|
+
i.inverted.circular.orange.icon {
|
287
|
+
background-color: #e07b53 !important;
|
288
|
+
color: #FFFFFF !important;
|
289
|
+
}
|
290
|
+
i.inverted.bordered.pink.icon,
|
291
|
+
i.inverted.circular.pink.icon {
|
292
|
+
background-color: #d9499a !important;
|
293
|
+
color: #FFFFFF !important;
|
294
|
+
}
|
295
|
+
i.inverted.bordered.purple.icon,
|
296
|
+
i.inverted.circular.purple.icon {
|
297
|
+
background-color: #564f8a !important;
|
298
|
+
color: #FFFFFF !important;
|
299
|
+
}
|
300
|
+
i.inverted.bordered.red.icon,
|
301
|
+
i.inverted.circular.red.icon {
|
302
|
+
background-color: #d95c5c !important;
|
303
|
+
color: #FFFFFF !important;
|
304
|
+
}
|
305
|
+
i.inverted.bordered.teal.icon,
|
306
|
+
i.inverted.circular.teal.icon {
|
307
|
+
background-color: #00b5ad !important;
|
308
|
+
color: #FFFFFF !important;
|
309
|
+
}
|
310
|
+
i.inverted.bordered.yellow.icon,
|
311
|
+
i.inverted.circular.yellow.icon {
|
312
|
+
background-color: #f2c61f !important;
|
313
|
+
color: #FFFFFF !important;
|
314
|
+
}
|
315
|
+
|
316
|
+
/*-------------------
|
317
|
+
Sizes
|
318
|
+
--------------------*/
|
319
|
+
|
320
|
+
i.small.icon {
|
321
|
+
font-size: 0.875em;
|
322
|
+
}
|
323
|
+
i.icon {
|
324
|
+
font-size: 1em;
|
325
|
+
}
|
326
|
+
i.large.icon {
|
327
|
+
font-size: 1.5em;
|
328
|
+
vertical-align: middle;
|
329
|
+
}
|
330
|
+
i.big.icon {
|
331
|
+
font-size: 2em;
|
332
|
+
vertical-align: middle;
|
333
|
+
}
|
334
|
+
i.huge.icon {
|
335
|
+
font-size: 4em;
|
336
|
+
vertical-align: middle;
|
337
|
+
}
|
338
|
+
i.massive.icon {
|
339
|
+
font-size: 8em;
|
340
|
+
vertical-align: middle;
|
341
|
+
}
|
342
|
+
/*
|
343
|
+
* # Semantic - Icon
|
344
|
+
* http://github.com/semantic-org/semantic-ui/
|
345
|
+
*
|
346
|
+
*
|
347
|
+
* Copyright 2014 Contributor
|
348
|
+
* Released under the MIT license
|
349
|
+
* http://opensource.org/licenses/MIT
|
350
|
+
*
|
351
|
+
*/
|
352
|
+
/*
|
353
|
+
* Font Awesome 4.0.3
|
354
|
+
* the iconic font designed for Bootstrap
|
355
|
+
* ------------------------------------------------------------------------------
|
356
|
+
* The full suite of pictographic icons, examples, and documentation can be
|
357
|
+
* found at http://fon.io. Stay up to date on Twitter at
|
358
|
+
* http://twitter.com/fon.
|
359
|
+
*
|
360
|
+
* License
|
361
|
+
* ------------------------------------------------------------------------------
|
362
|
+
* - The Font Awesome font is licensed under SIL OFL 1.1 -
|
363
|
+
* http://scripts.sil.org/OFL
|
364
|
+
|
365
|
+
|
366
|
+
|
367
|
+
/*******************************
|
368
|
+
|
369
|
+
Semantic-UI integration of font-awesome :
|
370
|
+
|
371
|
+
///class names are separated
|
372
|
+
i.icon.circle => i.icon.circle
|
373
|
+
i.icon.circle-o => i.icon.circle.outline
|
374
|
+
|
375
|
+
//abbreviation are replaced by full letters:
|
376
|
+
i.icon.ellipsis-h => i.icon.ellipsis.horizontal
|
377
|
+
i.icon.ellipsis-v => i.icon.ellipsis.vertical
|
378
|
+
.alpha => .i.icon.alphabet
|
379
|
+
.asc => .i.icon.ascending
|
380
|
+
.desc => .i.icon.descending
|
381
|
+
.alt =>.alternate
|
382
|
+
|
383
|
+
ASCII order is conserved for easier maintenance.
|
384
|
+
|
385
|
+
Icons that only have one style 'outline', 'square' etc do not require this class
|
386
|
+
for instance `lemon icon` not `lemon outline icon` since there is only one lemon
|
387
|
+
|
388
|
+
*******************************/
|
389
|
+
|
390
|
+
|
391
|
+
|
392
|
+
/*******************************
|
393
|
+
Icons
|
394
|
+
*******************************/
|
395
|
+
|
396
|
+
|
397
|
+
/* Web Content */
|
398
|
+
i.icon.search:before {
|
399
|
+
content: "\f002";
|
400
|
+
}
|
401
|
+
i.icon.mail.outline:before {
|
402
|
+
content: "\f003";
|
403
|
+
}
|
404
|
+
i.icon.external.link:before {
|
405
|
+
content: "\f08e";
|
406
|
+
}
|
407
|
+
i.icon.wifi:before {
|
408
|
+
content: "\f012";
|
409
|
+
}
|
410
|
+
i.icon.setting:before {
|
411
|
+
content: "\f013";
|
412
|
+
}
|
413
|
+
i.icon.home:before {
|
414
|
+
content: "\f015";
|
415
|
+
}
|
416
|
+
i.icon.inbox:before {
|
417
|
+
content: "\f01c";
|
418
|
+
}
|
419
|
+
i.icon.browser:before {
|
420
|
+
content: "\f022";
|
421
|
+
}
|
422
|
+
i.icon.tag:before {
|
423
|
+
content: "\f02b";
|
424
|
+
}
|
425
|
+
i.icon.tags:before {
|
426
|
+
content: "\f02c";
|
427
|
+
}
|
428
|
+
i.icon.calendar:before {
|
429
|
+
content: "\f073";
|
430
|
+
}
|
431
|
+
i.icon.comment:before {
|
432
|
+
content: "\f075";
|
433
|
+
}
|
434
|
+
i.icon.comments:before {
|
435
|
+
content: "\f086";
|
436
|
+
}
|
437
|
+
i.icon.shop:before {
|
438
|
+
content: "\f07a";
|
439
|
+
}
|
440
|
+
i.icon.privacy:before {
|
441
|
+
content: "\f084";
|
442
|
+
}
|
443
|
+
i.icon.settings:before {
|
444
|
+
content: "\f085";
|
445
|
+
}
|
446
|
+
i.icon.trophy:before {
|
447
|
+
content: "\f091";
|
448
|
+
}
|
449
|
+
i.icon.payment:before {
|
450
|
+
content: "\f09d";
|
451
|
+
}
|
452
|
+
i.icon.feed:before {
|
453
|
+
content: "\f09e";
|
454
|
+
}
|
455
|
+
i.icon.alarm.outline:before {
|
456
|
+
content: "\f0a2";
|
457
|
+
}
|
458
|
+
i.icon.tasks:before {
|
459
|
+
content: "\f0ae";
|
460
|
+
}
|
461
|
+
i.icon.cloud:before {
|
462
|
+
content: "\f0c2";
|
463
|
+
}
|
464
|
+
i.icon.lab:before {
|
465
|
+
content: "\f0c3";
|
466
|
+
}
|
467
|
+
i.icon.mail:before {
|
468
|
+
content: "\f0e0";
|
469
|
+
}
|
470
|
+
i.icon.idea:before {
|
471
|
+
content: "\f0eb";
|
472
|
+
}
|
473
|
+
i.icon.dashboard:before {
|
474
|
+
content: "\f0e4";
|
475
|
+
}
|
476
|
+
i.icon.sitemap:before {
|
477
|
+
content: "\f0e8";
|
478
|
+
}
|
479
|
+
i.icon.alarm:before {
|
480
|
+
content: "\f0f3";
|
481
|
+
}
|
482
|
+
i.icon.terminal:before {
|
483
|
+
content: "\f120";
|
484
|
+
}
|
485
|
+
i.icon.code:before {
|
486
|
+
content: "\f121";
|
487
|
+
}
|
488
|
+
i.icon.protect:before {
|
489
|
+
content: "\f132";
|
490
|
+
}
|
491
|
+
i.icon.calendar.outline:before {
|
492
|
+
content: "\f133";
|
493
|
+
}
|
494
|
+
i.icon.ticket:before {
|
495
|
+
content: "\f145";
|
496
|
+
}
|
497
|
+
i.icon.external.link.square:before {
|
498
|
+
content: "\f14c";
|
499
|
+
}
|
500
|
+
i.icon.map:before {
|
501
|
+
content: "\f14e";
|
502
|
+
}
|
503
|
+
i.icon.bug:before {
|
504
|
+
content: "\f188";
|
505
|
+
}
|
506
|
+
i.icon.mail.square:before {
|
507
|
+
content: "\f199";
|
508
|
+
}
|
509
|
+
i.icon.history:before {
|
510
|
+
content: "\f1da";
|
511
|
+
}
|
512
|
+
i.icon.options:before {
|
513
|
+
content: "\f1de";
|
514
|
+
}
|
515
|
+
i.icon.comment.outline:before {
|
516
|
+
content: "\f0e5";
|
517
|
+
}
|
518
|
+
i.icon.comments.outline:before {
|
519
|
+
content: "\f0e6";
|
520
|
+
}
|
521
|
+
|
522
|
+
/* User Actions */
|
523
|
+
i.icon.download:before {
|
524
|
+
content: "\f019";
|
525
|
+
}
|
526
|
+
i.icon.repeat:before {
|
527
|
+
content: "\f01e";
|
528
|
+
}
|
529
|
+
i.icon.refresh:before {
|
530
|
+
content: "\f021";
|
531
|
+
}
|
532
|
+
i.icon.lock:before {
|
533
|
+
content: "\f023";
|
534
|
+
}
|
535
|
+
i.icon.bookmark:before {
|
536
|
+
content: "\f02e";
|
537
|
+
}
|
538
|
+
i.icon.print:before {
|
539
|
+
content: "\f02f";
|
540
|
+
}
|
541
|
+
i.icon.write:before {
|
542
|
+
content: "\f040";
|
543
|
+
}
|
544
|
+
i.icon.theme:before {
|
545
|
+
content: "\f043";
|
546
|
+
}
|
547
|
+
i.icon.adjust:before {
|
548
|
+
content: "\f042";
|
549
|
+
}
|
550
|
+
i.icon.edit:before {
|
551
|
+
content: "\f044";
|
552
|
+
}
|
553
|
+
i.icon.external.share:before {
|
554
|
+
content: "\f045";
|
555
|
+
}
|
556
|
+
i.icon.ban:before {
|
557
|
+
content: "\f05e";
|
558
|
+
}
|
559
|
+
i.icon.mail.forward:before {
|
560
|
+
content: "\f064";
|
561
|
+
}
|
562
|
+
i.icon.share:before {
|
563
|
+
content: "\f064";
|
564
|
+
}
|
565
|
+
i.icon.expand:before {
|
566
|
+
content: "\f065";
|
567
|
+
}
|
568
|
+
i.icon.compress:before {
|
569
|
+
content: "\f066";
|
570
|
+
}
|
571
|
+
i.icon.unhide:before {
|
572
|
+
content: "\f06e";
|
573
|
+
}
|
574
|
+
i.icon.hide:before {
|
575
|
+
content: "\f070";
|
576
|
+
}
|
577
|
+
i.icon.random:before {
|
578
|
+
content: "\f074";
|
579
|
+
}
|
580
|
+
i.icon.retweet:before {
|
581
|
+
content: "\f079";
|
582
|
+
}
|
583
|
+
i.icon.sign.out:before {
|
584
|
+
content: "\f08b";
|
585
|
+
}
|
586
|
+
i.icon.pin:before {
|
587
|
+
content: "\f08d";
|
588
|
+
}
|
589
|
+
i.icon.sign.in:before {
|
590
|
+
content: "\f090";
|
591
|
+
}
|
592
|
+
i.icon.upload:before {
|
593
|
+
content: "\f093";
|
594
|
+
}
|
595
|
+
i.icon.call:before {
|
596
|
+
content: "\f095";
|
597
|
+
}
|
598
|
+
i.icon.call.square:before {
|
599
|
+
content: "\f098";
|
600
|
+
}
|
601
|
+
i.icon.remove.bookmark:before {
|
602
|
+
content: "\f097";
|
603
|
+
}
|
604
|
+
i.icon.unlock:before {
|
605
|
+
content: "\f09c";
|
606
|
+
}
|
607
|
+
i.icon.configure:before {
|
608
|
+
content: "\f0ad";
|
609
|
+
}
|
610
|
+
i.icon.filter:before {
|
611
|
+
content: "\f0b0";
|
612
|
+
}
|
613
|
+
i.icon.wizard:before {
|
614
|
+
content: "\f0d0";
|
615
|
+
}
|
616
|
+
i.icon.undo:before {
|
617
|
+
content: "\f0e2";
|
618
|
+
}
|
619
|
+
i.icon.exchange:before {
|
620
|
+
content: "\f0ec";
|
621
|
+
}
|
622
|
+
i.icon.cloud.download:before {
|
623
|
+
content: "\f0ed";
|
624
|
+
}
|
625
|
+
i.icon.cloud.upload:before {
|
626
|
+
content: "\f0ee";
|
627
|
+
}
|
628
|
+
i.icon.reply:before {
|
629
|
+
content: "\f112";
|
630
|
+
}
|
631
|
+
i.icon.reply.all:before {
|
632
|
+
content: "\f122";
|
633
|
+
}
|
634
|
+
i.icon.erase:before {
|
635
|
+
content: "\f12d";
|
636
|
+
}
|
637
|
+
i.icon.unlock.alternate:before {
|
638
|
+
content: "\f13e";
|
639
|
+
}
|
640
|
+
i.icon.archive:before {
|
641
|
+
content: "\f187";
|
642
|
+
}
|
643
|
+
i.icon.translate:before {
|
644
|
+
content: "\f1ab";
|
645
|
+
}
|
646
|
+
i.icon.recycle:before {
|
647
|
+
content: "\f1b8";
|
648
|
+
}
|
649
|
+
i.icon.send:before {
|
650
|
+
content: "\f1d8";
|
651
|
+
}
|
652
|
+
i.icon.send.outline:before {
|
653
|
+
content: "\f1d9";
|
654
|
+
}
|
655
|
+
i.icon.share.alternate:before {
|
656
|
+
content: "\f1e0";
|
657
|
+
}
|
658
|
+
i.icon.share.alternate.square:before {
|
659
|
+
content: "\f1e1";
|
660
|
+
}
|
661
|
+
i.icon.wait:before {
|
662
|
+
content: "\f017";
|
663
|
+
}
|
664
|
+
i.icon.write.square:before {
|
665
|
+
content: "\f14b";
|
666
|
+
}
|
667
|
+
i.icon.share.square:before {
|
668
|
+
content: "\f14d";
|
669
|
+
}
|
670
|
+
|
671
|
+
/* Messages */
|
672
|
+
i.icon.help.circle:before {
|
673
|
+
content: "\f059";
|
674
|
+
}
|
675
|
+
i.icon.info.circle:before {
|
676
|
+
content: "\f05a";
|
677
|
+
}
|
678
|
+
i.icon.warning:before {
|
679
|
+
content: "\f12a";
|
680
|
+
}
|
681
|
+
i.icon.warning.circle:before {
|
682
|
+
content: "\f06a";
|
683
|
+
}
|
684
|
+
i.icon.warning.sign:before {
|
685
|
+
content: "\f071";
|
686
|
+
}
|
687
|
+
i.icon.help:before {
|
688
|
+
content: "\f128";
|
689
|
+
}
|
690
|
+
i.icon.info:before {
|
691
|
+
content: "\f129";
|
692
|
+
}
|
693
|
+
i.icon.announcement:before {
|
694
|
+
content: "\f0a1";
|
695
|
+
}
|
696
|
+
|
697
|
+
/* Users */
|
698
|
+
i.icon.users:before {
|
699
|
+
content: "\f0c0";
|
700
|
+
}
|
701
|
+
i.icon.doctor:before {
|
702
|
+
content: "\f0f0";
|
703
|
+
}
|
704
|
+
i.icon.female:before {
|
705
|
+
content: "\f182";
|
706
|
+
}
|
707
|
+
i.icon.male:before {
|
708
|
+
content: "\f183";
|
709
|
+
}
|
710
|
+
i.icon.child:before {
|
711
|
+
content: "\f1ae";
|
712
|
+
}
|
713
|
+
i.icon.user:before {
|
714
|
+
content: "\f007";
|
715
|
+
}
|
716
|
+
i.icon.handicap:before {
|
717
|
+
content: "\f193";
|
718
|
+
}
|
719
|
+
i.icon.student:before {
|
720
|
+
content: "\f19d";
|
721
|
+
}
|
722
|
+
|
723
|
+
/* View Adjustment */
|
724
|
+
i.icon.grid.layout:before {
|
725
|
+
content: "\f00a";
|
726
|
+
}
|
727
|
+
i.icon.list.layout:before {
|
728
|
+
content: "\f00b";
|
729
|
+
}
|
730
|
+
i.icon.block.layout:before {
|
731
|
+
content: "\f009";
|
732
|
+
}
|
733
|
+
i.icon.zoom:before {
|
734
|
+
content: "\f00e";
|
735
|
+
}
|
736
|
+
i.icon.zoom.out:before {
|
737
|
+
content: "\f010";
|
738
|
+
}
|
739
|
+
i.icon.resize.vertical:before {
|
740
|
+
content: "\f07d";
|
741
|
+
}
|
742
|
+
i.icon.resize.horizontal:before {
|
743
|
+
content: "\f07e";
|
744
|
+
}
|
745
|
+
i.icon.maximize:before {
|
746
|
+
content: "\f0b2";
|
747
|
+
}
|
748
|
+
i.icon.crop:before {
|
749
|
+
content: "\f125";
|
750
|
+
}
|
751
|
+
|
752
|
+
/* Literal Objects */
|
753
|
+
i.icon.cocktail:before {
|
754
|
+
content: "\f000";
|
755
|
+
}
|
756
|
+
i.icon.road:before {
|
757
|
+
content: "\f018";
|
758
|
+
}
|
759
|
+
i.icon.flag:before {
|
760
|
+
content: "\f024";
|
761
|
+
}
|
762
|
+
i.icon.book:before {
|
763
|
+
content: "\f02d";
|
764
|
+
}
|
765
|
+
i.icon.gift:before {
|
766
|
+
content: "\f06b";
|
767
|
+
}
|
768
|
+
i.icon.leaf:before {
|
769
|
+
content: "\f06c";
|
770
|
+
}
|
771
|
+
i.icon.fire:before {
|
772
|
+
content: "\f06d";
|
773
|
+
}
|
774
|
+
i.icon.plane:before {
|
775
|
+
content: "\f072";
|
776
|
+
}
|
777
|
+
i.icon.magnet:before {
|
778
|
+
content: "\f076";
|
779
|
+
}
|
780
|
+
i.icon.legal:before {
|
781
|
+
content: "\f0e3";
|
782
|
+
}
|
783
|
+
i.icon.lemon:before {
|
784
|
+
content: "\f094";
|
785
|
+
}
|
786
|
+
i.icon.world:before {
|
787
|
+
content: "\f0ac";
|
788
|
+
}
|
789
|
+
i.icon.travel:before {
|
790
|
+
content: "\f0b1";
|
791
|
+
}
|
792
|
+
i.icon.shipping:before {
|
793
|
+
content: "\f0d1";
|
794
|
+
}
|
795
|
+
i.icon.money:before {
|
796
|
+
content: "\f0d6";
|
797
|
+
}
|
798
|
+
i.icon.lightning:before {
|
799
|
+
content: "\f0e7";
|
800
|
+
}
|
801
|
+
i.icon.rain:before {
|
802
|
+
content: "\f0e9";
|
803
|
+
}
|
804
|
+
i.icon.treatment:before {
|
805
|
+
content: "\f0f1";
|
806
|
+
}
|
807
|
+
i.icon.suitcase:before {
|
808
|
+
content: "\f0f2";
|
809
|
+
}
|
810
|
+
i.icon.bar:before {
|
811
|
+
content: "\f0fc";
|
812
|
+
}
|
813
|
+
i.icon.flag.outline:before {
|
814
|
+
content: "\f11d";
|
815
|
+
}
|
816
|
+
i.icon.flag.checkered:before {
|
817
|
+
content: "\f11e";
|
818
|
+
}
|
819
|
+
i.icon.puzzle:before {
|
820
|
+
content: "\f12e";
|
821
|
+
}
|
822
|
+
i.icon.fire.extinguisher:before {
|
823
|
+
content: "\f134";
|
824
|
+
}
|
825
|
+
i.icon.rocket:before {
|
826
|
+
content: "\f135";
|
827
|
+
}
|
828
|
+
i.icon.anchor:before {
|
829
|
+
content: "\f13d";
|
830
|
+
}
|
831
|
+
i.icon.bullseye:before {
|
832
|
+
content: "\f140";
|
833
|
+
}
|
834
|
+
i.icon.sun:before {
|
835
|
+
content: "\f185";
|
836
|
+
}
|
837
|
+
i.icon.moon:before {
|
838
|
+
content: "\f186";
|
839
|
+
}
|
840
|
+
i.icon.fax:before {
|
841
|
+
content: "\f1ac";
|
842
|
+
}
|
843
|
+
i.icon.life.ring:before {
|
844
|
+
content: "\f1cd";
|
845
|
+
}
|
846
|
+
i.icon.bomb:before {
|
847
|
+
content: "\f1e2";
|
848
|
+
}
|
849
|
+
|
850
|
+
/* Shapes */
|
851
|
+
i.icon.crosshairs:before {
|
852
|
+
content: "\f05b";
|
853
|
+
}
|
854
|
+
i.icon.asterisk:before {
|
855
|
+
content: "\f069";
|
856
|
+
}
|
857
|
+
i.icon.certificate:before {
|
858
|
+
content: "\f0a3";
|
859
|
+
}
|
860
|
+
i.icon.circle:before {
|
861
|
+
content: "\f111";
|
862
|
+
}
|
863
|
+
i.icon.quote.left:before {
|
864
|
+
content: "\f10d";
|
865
|
+
}
|
866
|
+
i.icon.quote.right:before {
|
867
|
+
content: "\f10e";
|
868
|
+
}
|
869
|
+
i.icon.ellipsis.horizontal:before {
|
870
|
+
content: "\f141";
|
871
|
+
}
|
872
|
+
i.icon.ellipsis.vertical:before {
|
873
|
+
content: "\f142";
|
874
|
+
}
|
875
|
+
i.icon.cube:before {
|
876
|
+
content: "\f1b2";
|
877
|
+
}
|
878
|
+
i.icon.cubes:before {
|
879
|
+
content: "\f1b3";
|
880
|
+
}
|
881
|
+
i.icon.circle.notched:before {
|
882
|
+
content: "\f1ce";
|
883
|
+
}
|
884
|
+
i.icon.circle.thin:before {
|
885
|
+
content: "\f1db";
|
886
|
+
}
|
887
|
+
|
888
|
+
/* Item Selection */
|
889
|
+
i.icon.checkmark:before {
|
890
|
+
content: "\f00c";
|
891
|
+
}
|
892
|
+
i.icon.remove:before {
|
893
|
+
content: "\f00d";
|
894
|
+
}
|
895
|
+
i.icon.checkmark.box:before {
|
896
|
+
content: "\f046";
|
897
|
+
}
|
898
|
+
i.icon.move:before {
|
899
|
+
content: "\f047";
|
900
|
+
}
|
901
|
+
i.icon.add.circle:before {
|
902
|
+
content: "\f055";
|
903
|
+
}
|
904
|
+
i.icon.minus.circle:before {
|
905
|
+
content: "\f056";
|
906
|
+
}
|
907
|
+
i.icon.remove.circle:before {
|
908
|
+
content: "\f057";
|
909
|
+
}
|
910
|
+
i.icon.check.circle:before {
|
911
|
+
content: "\f058";
|
912
|
+
}
|
913
|
+
i.icon.remove.circle.outline:before {
|
914
|
+
content: "\f05c";
|
915
|
+
}
|
916
|
+
i.icon.check.circle.outline:before {
|
917
|
+
content: "\f05d";
|
918
|
+
}
|
919
|
+
i.icon.plus:before {
|
920
|
+
content: "\f067";
|
921
|
+
}
|
922
|
+
i.icon.minus:before {
|
923
|
+
content: "\f068";
|
924
|
+
}
|
925
|
+
i.icon.add.square:before {
|
926
|
+
content: "\f0fe";
|
927
|
+
}
|
928
|
+
i.icon.radio:before {
|
929
|
+
content: "\f10c";
|
930
|
+
}
|
931
|
+
i.icon.selected.radio:before {
|
932
|
+
content: "\f192";
|
933
|
+
}
|
934
|
+
i.icon.minus.square:before {
|
935
|
+
content: "\f146";
|
936
|
+
}
|
937
|
+
i.icon.minus.square.outline:before {
|
938
|
+
content: "\f147";
|
939
|
+
}
|
940
|
+
i.icon.check.square:before {
|
941
|
+
content: "\f14a";
|
942
|
+
}
|
943
|
+
i.icon.plus.square.outline:before {
|
944
|
+
content: "\f196";
|
945
|
+
}
|
946
|
+
|
947
|
+
/* Media */
|
948
|
+
i.icon.film:before {
|
949
|
+
content: "\f008";
|
950
|
+
}
|
951
|
+
i.icon.sound:before {
|
952
|
+
content: "\f025";
|
953
|
+
}
|
954
|
+
i.icon.photo:before {
|
955
|
+
content: "\f030";
|
956
|
+
}
|
957
|
+
i.icon.bar.chart:before {
|
958
|
+
content: "\f080";
|
959
|
+
}
|
960
|
+
i.icon.camera.retro:before {
|
961
|
+
content: "\f083";
|
962
|
+
}
|
963
|
+
|
964
|
+
/* Pointers */
|
965
|
+
i.icon.arrow.circle.outline.down:before {
|
966
|
+
content: "\f01a";
|
967
|
+
}
|
968
|
+
i.icon.arrow.circle.outline.up:before {
|
969
|
+
content: "\f01b";
|
970
|
+
}
|
971
|
+
i.icon.chevron.left:before {
|
972
|
+
content: "\f053";
|
973
|
+
}
|
974
|
+
i.icon.chevron.right:before {
|
975
|
+
content: "\f054";
|
976
|
+
}
|
977
|
+
i.icon.arrow.left:before {
|
978
|
+
content: "\f060";
|
979
|
+
}
|
980
|
+
i.icon.arrow.right:before {
|
981
|
+
content: "\f061";
|
982
|
+
}
|
983
|
+
i.icon.arrow.up:before {
|
984
|
+
content: "\f062";
|
985
|
+
}
|
986
|
+
i.icon.arrow.down:before {
|
987
|
+
content: "\f063";
|
988
|
+
}
|
989
|
+
i.icon.chevron.up:before {
|
990
|
+
content: "\f077";
|
991
|
+
}
|
992
|
+
i.icon.chevron.down:before {
|
993
|
+
content: "\f078";
|
994
|
+
}
|
995
|
+
i.icon.pointing.right:before {
|
996
|
+
content: "\f0a4";
|
997
|
+
}
|
998
|
+
i.icon.pointing.left:before {
|
999
|
+
content: "\f0a5";
|
1000
|
+
}
|
1001
|
+
i.icon.pointing.up:before {
|
1002
|
+
content: "\f0a6";
|
1003
|
+
}
|
1004
|
+
i.icon.pointing.down:before {
|
1005
|
+
content: "\f0a7";
|
1006
|
+
}
|
1007
|
+
i.icon.arrow.circle.left:before {
|
1008
|
+
content: "\f0a8";
|
1009
|
+
}
|
1010
|
+
i.icon.arrow.circle.right:before {
|
1011
|
+
content: "\f0a9";
|
1012
|
+
}
|
1013
|
+
i.icon.arrow.circle.up:before {
|
1014
|
+
content: "\f0aa";
|
1015
|
+
}
|
1016
|
+
i.icon.arrow.circle.down:before {
|
1017
|
+
content: "\f0ab";
|
1018
|
+
}
|
1019
|
+
i.icon.caret.down:before {
|
1020
|
+
content: "\f0d7";
|
1021
|
+
}
|
1022
|
+
i.icon.caret.up:before {
|
1023
|
+
content: "\f0d8";
|
1024
|
+
}
|
1025
|
+
i.icon.caret.left:before {
|
1026
|
+
content: "\f0d9";
|
1027
|
+
}
|
1028
|
+
i.icon.caret.right:before {
|
1029
|
+
content: "\f0da";
|
1030
|
+
}
|
1031
|
+
i.icon.angle.double.left:before {
|
1032
|
+
content: "\f100";
|
1033
|
+
}
|
1034
|
+
i.icon.angle.double.right:before {
|
1035
|
+
content: "\f101";
|
1036
|
+
}
|
1037
|
+
i.icon.angle.double.up:before {
|
1038
|
+
content: "\f102";
|
1039
|
+
}
|
1040
|
+
i.icon.angle.double.down:before {
|
1041
|
+
content: "\f103";
|
1042
|
+
}
|
1043
|
+
i.icon.angle.left:before {
|
1044
|
+
content: "\f104";
|
1045
|
+
}
|
1046
|
+
i.icon.angle.right:before {
|
1047
|
+
content: "\f105";
|
1048
|
+
}
|
1049
|
+
i.icon.angle.up:before {
|
1050
|
+
content: "\f106";
|
1051
|
+
}
|
1052
|
+
i.icon.angle.down:before {
|
1053
|
+
content: "\f107";
|
1054
|
+
}
|
1055
|
+
i.icon.chevron.circle.left:before {
|
1056
|
+
content: "\f137";
|
1057
|
+
}
|
1058
|
+
i.icon.chevron.circle.right:before {
|
1059
|
+
content: "\f138";
|
1060
|
+
}
|
1061
|
+
i.icon.chevron.circle.up:before {
|
1062
|
+
content: "\f139";
|
1063
|
+
}
|
1064
|
+
i.icon.chevron.circle.down:before {
|
1065
|
+
content: "\f13a";
|
1066
|
+
}
|
1067
|
+
i.icon.toggle.down:before {
|
1068
|
+
content: "\f150";
|
1069
|
+
}
|
1070
|
+
i.icon.toggle.up:before {
|
1071
|
+
content: "\f151";
|
1072
|
+
}
|
1073
|
+
i.icon.toggle.right:before {
|
1074
|
+
content: "\f152";
|
1075
|
+
}
|
1076
|
+
i.icon.long.arrow.down:before {
|
1077
|
+
content: "\f175";
|
1078
|
+
}
|
1079
|
+
i.icon.long.arrow.up:before {
|
1080
|
+
content: "\f176";
|
1081
|
+
}
|
1082
|
+
i.icon.long.arrow.left:before {
|
1083
|
+
content: "\f177";
|
1084
|
+
}
|
1085
|
+
i.icon.long.arrow.right:before {
|
1086
|
+
content: "\f178";
|
1087
|
+
}
|
1088
|
+
i.icon.arrow.circle.outline.right:before {
|
1089
|
+
content: "\f18e";
|
1090
|
+
}
|
1091
|
+
i.icon.arrow.circle.outline.left:before {
|
1092
|
+
content: "\f190";
|
1093
|
+
}
|
1094
|
+
i.icon.toggle.left:before {
|
1095
|
+
content: "\f191";
|
1096
|
+
}
|
1097
|
+
|
1098
|
+
/* Computer */
|
1099
|
+
i.icon.power:before {
|
1100
|
+
content: "\f011";
|
1101
|
+
}
|
1102
|
+
i.icon.trash:before {
|
1103
|
+
content: "\f014";
|
1104
|
+
}
|
1105
|
+
i.icon.disk.outline:before {
|
1106
|
+
content: "\f0a0";
|
1107
|
+
}
|
1108
|
+
i.icon.desktop:before {
|
1109
|
+
content: "\f108";
|
1110
|
+
}
|
1111
|
+
i.icon.laptop:before {
|
1112
|
+
content: "\f109";
|
1113
|
+
}
|
1114
|
+
i.icon.tablet:before {
|
1115
|
+
content: "\f10a";
|
1116
|
+
}
|
1117
|
+
i.icon.mobile:before {
|
1118
|
+
content: "\f10b";
|
1119
|
+
}
|
1120
|
+
i.icon.game:before {
|
1121
|
+
content: "\f11b";
|
1122
|
+
}
|
1123
|
+
i.icon.keyboard:before {
|
1124
|
+
content: "\f11c";
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
/* File System */
|
1128
|
+
i.icon.folder:before {
|
1129
|
+
content: "\f07b";
|
1130
|
+
}
|
1131
|
+
i.icon.folder.open:before {
|
1132
|
+
content: "\f07c";
|
1133
|
+
}
|
1134
|
+
i.icon.level.up:before {
|
1135
|
+
content: "\f148";
|
1136
|
+
}
|
1137
|
+
i.icon.level.down:before {
|
1138
|
+
content: "\f149";
|
1139
|
+
}
|
1140
|
+
i.icon.file:before {
|
1141
|
+
content: "\f15b";
|
1142
|
+
}
|
1143
|
+
i.icon.file.outline:before {
|
1144
|
+
content: "\f016";
|
1145
|
+
}
|
1146
|
+
i.icon.file.text:before {
|
1147
|
+
content: "\f15c";
|
1148
|
+
}
|
1149
|
+
i.icon.file.text.outline:before {
|
1150
|
+
content: "\f0f6";
|
1151
|
+
}
|
1152
|
+
i.icon.folder.outline:before {
|
1153
|
+
content: "\f114";
|
1154
|
+
}
|
1155
|
+
i.icon.folder.open.outline:before {
|
1156
|
+
content: "\f115";
|
1157
|
+
}
|
1158
|
+
i.icon.file.pdf.outline:before {
|
1159
|
+
content: "\f1c1";
|
1160
|
+
}
|
1161
|
+
i.icon.file.word.outline:before {
|
1162
|
+
content: "\f1c2";
|
1163
|
+
}
|
1164
|
+
i.icon.file.excel.outline:before {
|
1165
|
+
content: "\f1c3";
|
1166
|
+
}
|
1167
|
+
i.icon.file.powerpoint.outline:before {
|
1168
|
+
content: "\f1c4";
|
1169
|
+
}
|
1170
|
+
i.icon.file.image.outline:before {
|
1171
|
+
content: "\f1c5";
|
1172
|
+
}
|
1173
|
+
i.icon.file.archive.outline:before {
|
1174
|
+
content: "\f1c6";
|
1175
|
+
}
|
1176
|
+
i.icon.file.audio.outline:before {
|
1177
|
+
content: "\f1c7";
|
1178
|
+
}
|
1179
|
+
i.icon.file.video.outline:before {
|
1180
|
+
content: "\f1c8";
|
1181
|
+
}
|
1182
|
+
i.icon.file.code.outline:before {
|
1183
|
+
content: "\f1c9";
|
1184
|
+
}
|
1185
|
+
|
1186
|
+
/* Technologies */
|
1187
|
+
i.icon.barcode:before {
|
1188
|
+
content: "\f02a";
|
1189
|
+
}
|
1190
|
+
i.icon.qrcode:before {
|
1191
|
+
content: "\f029";
|
1192
|
+
}
|
1193
|
+
i.icon.fork:before {
|
1194
|
+
content: "\f126";
|
1195
|
+
}
|
1196
|
+
i.icon.html5:before {
|
1197
|
+
content: "\f13b";
|
1198
|
+
}
|
1199
|
+
i.icon.css3:before {
|
1200
|
+
content: "\f13c";
|
1201
|
+
}
|
1202
|
+
i.icon.rss.square:before {
|
1203
|
+
content: "\f143";
|
1204
|
+
}
|
1205
|
+
i.icon.openid:before {
|
1206
|
+
content: "\f19b";
|
1207
|
+
}
|
1208
|
+
i.icon.database:before {
|
1209
|
+
content: "\f1c0";
|
1210
|
+
}
|
1211
|
+
|
1212
|
+
/* Rating */
|
1213
|
+
i.icon.heart:before {
|
1214
|
+
content: "\f004";
|
1215
|
+
}
|
1216
|
+
i.icon.star:before {
|
1217
|
+
content: "\f005";
|
1218
|
+
}
|
1219
|
+
i.icon.empty.star:before {
|
1220
|
+
content: "\f006";
|
1221
|
+
}
|
1222
|
+
i.icon.thumbs.outline.up:before {
|
1223
|
+
content: "\f087";
|
1224
|
+
}
|
1225
|
+
i.icon.thumbs.outline.down:before {
|
1226
|
+
content: "\f088";
|
1227
|
+
}
|
1228
|
+
i.icon.star.half:before {
|
1229
|
+
content: "\f089";
|
1230
|
+
}
|
1231
|
+
i.icon.empty.heart:before {
|
1232
|
+
content: "\f08a";
|
1233
|
+
}
|
1234
|
+
i.icon.smile:before {
|
1235
|
+
content: "\f118";
|
1236
|
+
}
|
1237
|
+
i.icon.frown:before {
|
1238
|
+
content: "\f119";
|
1239
|
+
}
|
1240
|
+
i.icon.meh:before {
|
1241
|
+
content: "\f11a";
|
1242
|
+
}
|
1243
|
+
i.icon.star.half.empty:before {
|
1244
|
+
content: "\f123";
|
1245
|
+
}
|
1246
|
+
i.icon.thumbs.up:before {
|
1247
|
+
content: "\f164";
|
1248
|
+
}
|
1249
|
+
i.icon.thumbs.down:before {
|
1250
|
+
content: "\f165";
|
1251
|
+
}
|
1252
|
+
|
1253
|
+
/* Audio */
|
1254
|
+
i.icon.music:before {
|
1255
|
+
content: "\f001";
|
1256
|
+
}
|
1257
|
+
i.icon.video.play.outline:before {
|
1258
|
+
content: "\f01d";
|
1259
|
+
}
|
1260
|
+
i.icon.volume.off:before {
|
1261
|
+
content: "\f026";
|
1262
|
+
}
|
1263
|
+
i.icon.volume.down:before {
|
1264
|
+
content: "\f027";
|
1265
|
+
}
|
1266
|
+
i.icon.volume.up:before {
|
1267
|
+
content: "\f028";
|
1268
|
+
}
|
1269
|
+
i.icon.record:before {
|
1270
|
+
content: "\f03d";
|
1271
|
+
}
|
1272
|
+
i.icon.step.backward:before {
|
1273
|
+
content: "\f048";
|
1274
|
+
}
|
1275
|
+
i.icon.fast.backward:before {
|
1276
|
+
content: "\f049";
|
1277
|
+
}
|
1278
|
+
i.icon.backward:before {
|
1279
|
+
content: "\f04a";
|
1280
|
+
}
|
1281
|
+
i.icon.play:before {
|
1282
|
+
content: "\f04b";
|
1283
|
+
}
|
1284
|
+
i.icon.pause:before {
|
1285
|
+
content: "\f04c";
|
1286
|
+
}
|
1287
|
+
i.icon.stop:before {
|
1288
|
+
content: "\f04d";
|
1289
|
+
}
|
1290
|
+
i.icon.forward:before {
|
1291
|
+
content: "\f04e";
|
1292
|
+
}
|
1293
|
+
i.icon.fast.forward:before {
|
1294
|
+
content: "\f050";
|
1295
|
+
}
|
1296
|
+
i.icon.step.forward:before {
|
1297
|
+
content: "\f051";
|
1298
|
+
}
|
1299
|
+
i.icon.eject:before {
|
1300
|
+
content: "\f052";
|
1301
|
+
}
|
1302
|
+
i.icon.unmute:before {
|
1303
|
+
content: "\f130";
|
1304
|
+
}
|
1305
|
+
i.icon.mute:before {
|
1306
|
+
content: "\f131";
|
1307
|
+
}
|
1308
|
+
i.icon.video.play:before {
|
1309
|
+
content: "\f144";
|
1310
|
+
}
|
1311
|
+
|
1312
|
+
/* Map & Locations */
|
1313
|
+
i.icon.marker:before {
|
1314
|
+
content: "\f041";
|
1315
|
+
}
|
1316
|
+
i.icon.coffee:before {
|
1317
|
+
content: "\f0f4";
|
1318
|
+
}
|
1319
|
+
i.icon.food:before {
|
1320
|
+
content: "\f0f5";
|
1321
|
+
}
|
1322
|
+
i.icon.building.outline:before {
|
1323
|
+
content: "\f0f7";
|
1324
|
+
}
|
1325
|
+
i.icon.hospital:before {
|
1326
|
+
content: "\f0f8";
|
1327
|
+
}
|
1328
|
+
i.icon.emergency:before {
|
1329
|
+
content: "\f0f9";
|
1330
|
+
}
|
1331
|
+
i.icon.first.aid:before {
|
1332
|
+
content: "\f0fa";
|
1333
|
+
}
|
1334
|
+
i.icon.military:before {
|
1335
|
+
content: "\f0fb";
|
1336
|
+
}
|
1337
|
+
i.icon.h:before {
|
1338
|
+
content: "\f0fd";
|
1339
|
+
}
|
1340
|
+
i.icon.location.arrow:before {
|
1341
|
+
content: "\f124";
|
1342
|
+
}
|
1343
|
+
i.icon.space.shuttle:before {
|
1344
|
+
content: "\f197";
|
1345
|
+
}
|
1346
|
+
i.icon.university:before {
|
1347
|
+
content: "\f19c";
|
1348
|
+
}
|
1349
|
+
i.icon.building:before {
|
1350
|
+
content: "\f1ad";
|
1351
|
+
}
|
1352
|
+
i.icon.paw:before {
|
1353
|
+
content: "\f1b0";
|
1354
|
+
}
|
1355
|
+
i.icon.spoon:before {
|
1356
|
+
content: "\f1b1";
|
1357
|
+
}
|
1358
|
+
i.icon.car:before {
|
1359
|
+
content: "\f1b9";
|
1360
|
+
}
|
1361
|
+
i.icon.taxi:before {
|
1362
|
+
content: "\f1ba";
|
1363
|
+
}
|
1364
|
+
i.icon.tree:before {
|
1365
|
+
content: "\f1bb";
|
1366
|
+
}
|
1367
|
+
|
1368
|
+
/* Tables */
|
1369
|
+
i.icon.table:before {
|
1370
|
+
content: "\f0ce";
|
1371
|
+
}
|
1372
|
+
i.icon.columns:before {
|
1373
|
+
content: "\f0db";
|
1374
|
+
}
|
1375
|
+
i.icon.sort:before {
|
1376
|
+
content: "\f0dc";
|
1377
|
+
}
|
1378
|
+
i.icon.sort.ascending:before {
|
1379
|
+
content: "\f0dd";
|
1380
|
+
}
|
1381
|
+
i.icon.sort.descending:before {
|
1382
|
+
content: "\f0de";
|
1383
|
+
}
|
1384
|
+
i.icon.sort.alphabet.ascending:before {
|
1385
|
+
content: "\f15d";
|
1386
|
+
}
|
1387
|
+
i.icon.sort.alphabet.descending:before {
|
1388
|
+
content: "\f15e";
|
1389
|
+
}
|
1390
|
+
i.icon.sort.content.ascending:before {
|
1391
|
+
content: "\f160";
|
1392
|
+
}
|
1393
|
+
i.icon.sort.content.descending:before {
|
1394
|
+
content: "\f161";
|
1395
|
+
}
|
1396
|
+
i.icon.sort.numeric.ascending:before {
|
1397
|
+
content: "\f162";
|
1398
|
+
}
|
1399
|
+
i.icon.sort.numeric.descending:before {
|
1400
|
+
content: "\f163";
|
1401
|
+
}
|
1402
|
+
|
1403
|
+
/* Text Editor */
|
1404
|
+
i.icon.font:before {
|
1405
|
+
content: "\f031";
|
1406
|
+
}
|
1407
|
+
i.icon.bold:before {
|
1408
|
+
content: "\f032";
|
1409
|
+
}
|
1410
|
+
i.icon.italic:before {
|
1411
|
+
content: "\f033";
|
1412
|
+
}
|
1413
|
+
i.icon.text.height:before {
|
1414
|
+
content: "\f034";
|
1415
|
+
}
|
1416
|
+
i.icon.text.width:before {
|
1417
|
+
content: "\f035";
|
1418
|
+
}
|
1419
|
+
i.icon.align.left:before {
|
1420
|
+
content: "\f036";
|
1421
|
+
}
|
1422
|
+
i.icon.align.center:before {
|
1423
|
+
content: "\f037";
|
1424
|
+
}
|
1425
|
+
i.icon.align.right:before {
|
1426
|
+
content: "\f038";
|
1427
|
+
}
|
1428
|
+
i.icon.align.justify:before {
|
1429
|
+
content: "\f039";
|
1430
|
+
}
|
1431
|
+
i.icon.list:before {
|
1432
|
+
content: "\f03a";
|
1433
|
+
}
|
1434
|
+
i.icon.outdent:before {
|
1435
|
+
content: "\f03b";
|
1436
|
+
}
|
1437
|
+
i.icon.indent:before {
|
1438
|
+
content: "\f03c";
|
1439
|
+
}
|
1440
|
+
i.icon.linkify:before {
|
1441
|
+
content: "\f0c1";
|
1442
|
+
}
|
1443
|
+
i.icon.cut:before {
|
1444
|
+
content: "\f0c4";
|
1445
|
+
}
|
1446
|
+
i.icon.copy:before {
|
1447
|
+
content: "\f0c5";
|
1448
|
+
}
|
1449
|
+
i.icon.attach:before {
|
1450
|
+
content: "\f0c6";
|
1451
|
+
}
|
1452
|
+
i.icon.save:before {
|
1453
|
+
content: "\f0c7";
|
1454
|
+
}
|
1455
|
+
i.icon.content:before {
|
1456
|
+
content: "\f0c9";
|
1457
|
+
}
|
1458
|
+
i.icon.unordered.list:before {
|
1459
|
+
content: "\f0ca";
|
1460
|
+
}
|
1461
|
+
i.icon.ordered.list:before {
|
1462
|
+
content: "\f0cb";
|
1463
|
+
}
|
1464
|
+
i.icon.strikethrough:before {
|
1465
|
+
content: "\f0cc";
|
1466
|
+
}
|
1467
|
+
i.icon.underline:before {
|
1468
|
+
content: "\f0cd";
|
1469
|
+
}
|
1470
|
+
i.icon.paste:before {
|
1471
|
+
content: "\f0ea";
|
1472
|
+
}
|
1473
|
+
i.icon.unlink:before {
|
1474
|
+
content: "\f127";
|
1475
|
+
}
|
1476
|
+
i.icon.superscript:before {
|
1477
|
+
content: "\f12b";
|
1478
|
+
}
|
1479
|
+
i.icon.subscript:before {
|
1480
|
+
content: "\f12c";
|
1481
|
+
}
|
1482
|
+
i.icon.header:before {
|
1483
|
+
content: "\f1dc";
|
1484
|
+
}
|
1485
|
+
i.icon.paragraph:before {
|
1486
|
+
content: "\f1dd";
|
1487
|
+
}
|
1488
|
+
|
1489
|
+
/* Currency */
|
1490
|
+
i.icon.euro:before {
|
1491
|
+
content: "\f153";
|
1492
|
+
}
|
1493
|
+
i.icon.pound:before {
|
1494
|
+
content: "\f154";
|
1495
|
+
}
|
1496
|
+
i.icon.dollar:before {
|
1497
|
+
content: "\f155";
|
1498
|
+
}
|
1499
|
+
i.icon.rupee:before {
|
1500
|
+
content: "\f156";
|
1501
|
+
}
|
1502
|
+
i.icon.yen:before {
|
1503
|
+
content: "\f157";
|
1504
|
+
}
|
1505
|
+
i.icon.ruble:before {
|
1506
|
+
content: "\f158";
|
1507
|
+
}
|
1508
|
+
i.icon.won:before {
|
1509
|
+
content: "\f159";
|
1510
|
+
}
|
1511
|
+
i.icon.lira:before {
|
1512
|
+
content: "\f195";
|
1513
|
+
}
|
1514
|
+
/* Networks and Websites*/
|
1515
|
+
i.icon.twitter.square:before {
|
1516
|
+
content: "\f081";
|
1517
|
+
}
|
1518
|
+
i.icon.facebook.square:before {
|
1519
|
+
content: "\f082";
|
1520
|
+
}
|
1521
|
+
i.icon.linkedin.square:before {
|
1522
|
+
content: "\f08c";
|
1523
|
+
}
|
1524
|
+
i.icon.github.square:before {
|
1525
|
+
content: "\f092";
|
1526
|
+
}
|
1527
|
+
i.icon.twitter:before {
|
1528
|
+
content: "\f099";
|
1529
|
+
}
|
1530
|
+
i.icon.facebook:before {
|
1531
|
+
content: "\f09a";
|
1532
|
+
}
|
1533
|
+
i.icon.github:before {
|
1534
|
+
content: "\f09b";
|
1535
|
+
}
|
1536
|
+
i.icon.pinterest:before {
|
1537
|
+
content: "\f0d2";
|
1538
|
+
}
|
1539
|
+
i.icon.pinterest.square:before {
|
1540
|
+
content: "\f0d3";
|
1541
|
+
}
|
1542
|
+
i.icon.google.plus.square:before {
|
1543
|
+
content: "\f0d4";
|
1544
|
+
}
|
1545
|
+
i.icon.google.plus:before {
|
1546
|
+
content: "\f0d5";
|
1547
|
+
}
|
1548
|
+
i.icon.linkedin:before {
|
1549
|
+
content: "\f0e1";
|
1550
|
+
}
|
1551
|
+
i.icon.github.alternate:before {
|
1552
|
+
content: "\f113";
|
1553
|
+
}
|
1554
|
+
i.icon.maxcdn:before {
|
1555
|
+
content: "\f136";
|
1556
|
+
}
|
1557
|
+
i.icon.bitcoin:before {
|
1558
|
+
content: "\f15a";
|
1559
|
+
}
|
1560
|
+
i.icon.youtube.square:before {
|
1561
|
+
content: "\f166";
|
1562
|
+
}
|
1563
|
+
i.icon.youtube:before {
|
1564
|
+
content: "\f167";
|
1565
|
+
}
|
1566
|
+
i.icon.xing:before {
|
1567
|
+
content: "\f168";
|
1568
|
+
}
|
1569
|
+
i.icon.xing.square:before {
|
1570
|
+
content: "\f169";
|
1571
|
+
}
|
1572
|
+
i.icon.youtube.play:before {
|
1573
|
+
content: "\f16a";
|
1574
|
+
}
|
1575
|
+
i.icon.dropbox:before {
|
1576
|
+
content: "\f16b";
|
1577
|
+
}
|
1578
|
+
i.icon.stack.overflow:before {
|
1579
|
+
content: "\f16c";
|
1580
|
+
}
|
1581
|
+
i.icon.instagram:before {
|
1582
|
+
content: "\f16d";
|
1583
|
+
}
|
1584
|
+
i.icon.flickr:before {
|
1585
|
+
content: "\f16e";
|
1586
|
+
}
|
1587
|
+
i.icon.adn:before {
|
1588
|
+
content: "\f170";
|
1589
|
+
}
|
1590
|
+
i.icon.bitbucket:before {
|
1591
|
+
content: "\f171";
|
1592
|
+
}
|
1593
|
+
i.icon.bitbucket.square:before {
|
1594
|
+
content: "\f172";
|
1595
|
+
}
|
1596
|
+
i.icon.tumblr:before {
|
1597
|
+
content: "\f173";
|
1598
|
+
}
|
1599
|
+
i.icon.tumblr.square:before {
|
1600
|
+
content: "\f174";
|
1601
|
+
}
|
1602
|
+
i.icon.apple:before {
|
1603
|
+
content: "\f179";
|
1604
|
+
}
|
1605
|
+
i.icon.windows:before {
|
1606
|
+
content: "\f17a";
|
1607
|
+
}
|
1608
|
+
i.icon.android:before {
|
1609
|
+
content: "\f17b";
|
1610
|
+
}
|
1611
|
+
i.icon.linux:before {
|
1612
|
+
content: "\f17c";
|
1613
|
+
}
|
1614
|
+
i.icon.dribbble:before {
|
1615
|
+
content: "\f17d";
|
1616
|
+
}
|
1617
|
+
i.icon.skype:before {
|
1618
|
+
content: "\f17e";
|
1619
|
+
}
|
1620
|
+
i.icon.foursquare:before {
|
1621
|
+
content: "\f180";
|
1622
|
+
}
|
1623
|
+
i.icon.trello:before {
|
1624
|
+
content: "\f181";
|
1625
|
+
}
|
1626
|
+
i.icon.gittip:before {
|
1627
|
+
content: "\f184";
|
1628
|
+
}
|
1629
|
+
i.icon.vk:before {
|
1630
|
+
content: "\f189";
|
1631
|
+
}
|
1632
|
+
i.icon.weibo:before {
|
1633
|
+
content: "\f18a";
|
1634
|
+
}
|
1635
|
+
i.icon.renren:before {
|
1636
|
+
content: "\f18b";
|
1637
|
+
}
|
1638
|
+
i.icon.pagelines:before {
|
1639
|
+
content: "\f18c";
|
1640
|
+
}
|
1641
|
+
i.icon.stack.exchange:before {
|
1642
|
+
content: "\f18d";
|
1643
|
+
}
|
1644
|
+
i.icon.vimeo:before {
|
1645
|
+
content: "\f194";
|
1646
|
+
}
|
1647
|
+
i.icon.slack:before {
|
1648
|
+
content: "\f198";
|
1649
|
+
}
|
1650
|
+
i.icon.wordpress:before {
|
1651
|
+
content: "\f19a";
|
1652
|
+
}
|
1653
|
+
i.icon.yahoo:before {
|
1654
|
+
content: "\f19e";
|
1655
|
+
}
|
1656
|
+
i.icon.google:before {
|
1657
|
+
content: "\f1a0";
|
1658
|
+
}
|
1659
|
+
i.icon.reddit:before {
|
1660
|
+
content: "\f1a1";
|
1661
|
+
}
|
1662
|
+
i.icon.reddit.square:before {
|
1663
|
+
content: "\f1a2";
|
1664
|
+
}
|
1665
|
+
i.icon.stumbleupon.circle:before {
|
1666
|
+
content: "\f1a3";
|
1667
|
+
}
|
1668
|
+
i.icon.stumbleupon:before {
|
1669
|
+
content: "\f1a4";
|
1670
|
+
}
|
1671
|
+
i.icon.delicious:before {
|
1672
|
+
content: "\f1a5";
|
1673
|
+
}
|
1674
|
+
i.icon.digg:before {
|
1675
|
+
content: "\f1a6";
|
1676
|
+
}
|
1677
|
+
i.icon.pied.piper:before {
|
1678
|
+
content: "\f1a7";
|
1679
|
+
}
|
1680
|
+
i.icon.pied.piper.alternate:before {
|
1681
|
+
content: "\f1a8";
|
1682
|
+
}
|
1683
|
+
i.icon.drupal:before {
|
1684
|
+
content: "\f1a9";
|
1685
|
+
}
|
1686
|
+
i.icon.joomla:before {
|
1687
|
+
content: "\f1aa";
|
1688
|
+
}
|
1689
|
+
i.icon.behance:before {
|
1690
|
+
content: "\f1b4";
|
1691
|
+
}
|
1692
|
+
i.icon.behance.square:before {
|
1693
|
+
content: "\f1b5";
|
1694
|
+
}
|
1695
|
+
i.icon.steam:before {
|
1696
|
+
content: "\f1b6";
|
1697
|
+
}
|
1698
|
+
i.icon.steam.square:before {
|
1699
|
+
content: "\f1b7";
|
1700
|
+
}
|
1701
|
+
i.icon.spotify:before {
|
1702
|
+
content: "\f1bc";
|
1703
|
+
}
|
1704
|
+
i.icon.deviantart:before {
|
1705
|
+
content: "\f1bd";
|
1706
|
+
}
|
1707
|
+
i.icon.soundcloud:before {
|
1708
|
+
content: "\f1be";
|
1709
|
+
}
|
1710
|
+
i.icon.vine:before {
|
1711
|
+
content: "\f1ca";
|
1712
|
+
}
|
1713
|
+
i.icon.codepen:before {
|
1714
|
+
content: "\f1cb";
|
1715
|
+
}
|
1716
|
+
i.icon.jsfiddle:before {
|
1717
|
+
content: "\f1cc";
|
1718
|
+
}
|
1719
|
+
i.icon.rebel:before {
|
1720
|
+
content: "\f1d0";
|
1721
|
+
}
|
1722
|
+
i.icon.empire:before {
|
1723
|
+
content: "\f1d1";
|
1724
|
+
}
|
1725
|
+
i.icon.git.square:before {
|
1726
|
+
content: "\f1d2";
|
1727
|
+
}
|
1728
|
+
i.icon.git:before {
|
1729
|
+
content: "\f1d3";
|
1730
|
+
}
|
1731
|
+
i.icon.hacker.news:before {
|
1732
|
+
content: "\f1d4";
|
1733
|
+
}
|
1734
|
+
i.icon.tencent.weibo:before {
|
1735
|
+
content: "\f1d5";
|
1736
|
+
}
|
1737
|
+
i.icon.qq:before {
|
1738
|
+
content: "\f1d6";
|
1739
|
+
}
|
1740
|
+
i.icon.wechat:before {
|
1741
|
+
content: "\f1d7";
|
1742
|
+
}
|
1743
|
+
|
1744
|
+
|
1745
|
+
/*******************************
|
1746
|
+
Aliases
|
1747
|
+
*******************************/
|
1748
|
+
|
1749
|
+
i.icon.like:before {
|
1750
|
+
content: "\f004";
|
1751
|
+
}
|
1752
|
+
i.icon.favorite:before {
|
1753
|
+
content: "\f005";
|
1754
|
+
}
|
1755
|
+
i.icon.video:before {
|
1756
|
+
content: "\f008";
|
1757
|
+
}
|
1758
|
+
i.icon.check:before {
|
1759
|
+
content: "\f00c";
|
1760
|
+
}
|
1761
|
+
i.icon.remove:before {
|
1762
|
+
content: "\f00d";
|
1763
|
+
}
|
1764
|
+
i.icon.close:before {
|
1765
|
+
content: "\f00d";
|
1766
|
+
}
|
1767
|
+
i.icon.cancel:before {
|
1768
|
+
content: "\f00d";
|
1769
|
+
}
|
1770
|
+
i.icon.delete:before {
|
1771
|
+
content: "\f00d";
|
1772
|
+
}
|
1773
|
+
i.icon.x:before {
|
1774
|
+
content: "\f00d";
|
1775
|
+
}
|
1776
|
+
i.icon.zoom.in:before {
|
1777
|
+
content: "\f00e";
|
1778
|
+
}
|
1779
|
+
i.icon.magnify:before {
|
1780
|
+
content: "\f00e";
|
1781
|
+
}
|
1782
|
+
i.icon.shutdown:before {
|
1783
|
+
content: "\f011";
|
1784
|
+
}
|
1785
|
+
i.icon.signal:before {
|
1786
|
+
content: "\f012";
|
1787
|
+
}
|
1788
|
+
i.icon.clock:before {
|
1789
|
+
content: "\f017";
|
1790
|
+
}
|
1791
|
+
i.icon.time:before {
|
1792
|
+
content: "\f017";
|
1793
|
+
}
|
1794
|
+
i.icon.play.circle.outline:before {
|
1795
|
+
content: "\f01d";
|
1796
|
+
}
|
1797
|
+
i.icon.clockwise:before {
|
1798
|
+
content: "\f01e";
|
1799
|
+
}
|
1800
|
+
i.icon.headphone:before {
|
1801
|
+
content: "\f025";
|
1802
|
+
}
|
1803
|
+
i.icon.volume.off:before {
|
1804
|
+
content: "\f026";
|
1805
|
+
}
|
1806
|
+
i.icon.camera:before {
|
1807
|
+
content: "\f030";
|
1808
|
+
}
|
1809
|
+
i.icon.video.camera:before {
|
1810
|
+
content: "\f03d";
|
1811
|
+
}
|
1812
|
+
i.icon.picture:before {
|
1813
|
+
content: "\f03e";
|
1814
|
+
}
|
1815
|
+
i.icon.pencil:before {
|
1816
|
+
content: "\f040";
|
1817
|
+
}
|
1818
|
+
i.icon.compose:before {
|
1819
|
+
content: "\f040";
|
1820
|
+
}
|
1821
|
+
i.icon.point:before {
|
1822
|
+
content: "\f041";
|
1823
|
+
}
|
1824
|
+
i.icon.tint:before {
|
1825
|
+
content: "\f043";
|
1826
|
+
}
|
1827
|
+
i.icon.signup:before {
|
1828
|
+
content: "\f044";
|
1829
|
+
}
|
1830
|
+
i.icon.plus.circle:before {
|
1831
|
+
content: "\f055";
|
1832
|
+
}
|
1833
|
+
i.icon.minus.circle:before {
|
1834
|
+
content: "\f056";
|
1835
|
+
}
|
1836
|
+
i.icon.dont:before {
|
1837
|
+
content: "\f05e";
|
1838
|
+
}
|
1839
|
+
i.icon.minimize:before {
|
1840
|
+
content: "\f066";
|
1841
|
+
}
|
1842
|
+
i.icon.add:before {
|
1843
|
+
content: "\f067";
|
1844
|
+
}
|
1845
|
+
i.icon.eye:before {
|
1846
|
+
content: "\f06e";
|
1847
|
+
}
|
1848
|
+
i.icon.attention:before {
|
1849
|
+
content: "\f06a";
|
1850
|
+
}
|
1851
|
+
i.icon.cart:before {
|
1852
|
+
content: "\f07a";
|
1853
|
+
}
|
1854
|
+
i.icon.plane:before {
|
1855
|
+
content: "\f072";
|
1856
|
+
}
|
1857
|
+
i.icon.shuffle:before {
|
1858
|
+
content: "\f074";
|
1859
|
+
}
|
1860
|
+
i.icon.talk:before {
|
1861
|
+
content: "\f075";
|
1862
|
+
}
|
1863
|
+
i.icon.chat:before {
|
1864
|
+
content: "\f075";
|
1865
|
+
}
|
1866
|
+
i.icon.shopping.cart:before {
|
1867
|
+
content: "\f07a";
|
1868
|
+
}
|
1869
|
+
i.icon.bar.graph:before {
|
1870
|
+
content: "\f080";
|
1871
|
+
}
|
1872
|
+
i.icon.key:before {
|
1873
|
+
content: "\f084";
|
1874
|
+
}
|
1875
|
+
i.icon.privacy:before {
|
1876
|
+
content: "\f084";
|
1877
|
+
}
|
1878
|
+
i.icon.cogs:before {
|
1879
|
+
content: "\f085";
|
1880
|
+
}
|
1881
|
+
i.icon.discussions:before {
|
1882
|
+
content: "\f086";
|
1883
|
+
}
|
1884
|
+
i.icon.like.outline:before {
|
1885
|
+
content: "\f087";
|
1886
|
+
}
|
1887
|
+
i.icon.dislike.outline:before {
|
1888
|
+
content: "\f088";
|
1889
|
+
}
|
1890
|
+
i.icon.heart.outline:before {
|
1891
|
+
content: "\f08a";
|
1892
|
+
}
|
1893
|
+
i.icon.log.out:before {
|
1894
|
+
content: "\f08b";
|
1895
|
+
}
|
1896
|
+
i.icon.thumb.tack:before {
|
1897
|
+
content: "\f08d";
|
1898
|
+
}
|
1899
|
+
i.icon.winner:before {
|
1900
|
+
content: "\f091";
|
1901
|
+
}
|
1902
|
+
i.icon.bookmark.outline:before {
|
1903
|
+
content: "\f097";
|
1904
|
+
}
|
1905
|
+
i.icon.phone.square:before {
|
1906
|
+
content: "\f098";
|
1907
|
+
}
|
1908
|
+
i.icon.phone.square:before {
|
1909
|
+
content: "\f098";
|
1910
|
+
}
|
1911
|
+
i.icon.credit.card:before {
|
1912
|
+
content: "\f09d";
|
1913
|
+
}
|
1914
|
+
i.icon.rss:before {
|
1915
|
+
content: "\f09e";
|
1916
|
+
}
|
1917
|
+
i.icon.hdd.outline:before {
|
1918
|
+
content: "\f0a0";
|
1919
|
+
}
|
1920
|
+
i.icon.bullhorn:before {
|
1921
|
+
content: "\f0a1";
|
1922
|
+
}
|
1923
|
+
i.icon.bell:before {
|
1924
|
+
content: "\f0f3";
|
1925
|
+
}
|
1926
|
+
i.icon.hand.outline.right:before {
|
1927
|
+
content: "\f0a4";
|
1928
|
+
}
|
1929
|
+
i.icon.hand.outline.left:before {
|
1930
|
+
content: "\f0a5";
|
1931
|
+
}
|
1932
|
+
i.icon.hand.outline.up:before {
|
1933
|
+
content: "\f0a6";
|
1934
|
+
}
|
1935
|
+
i.icon.hand.outline.down:before {
|
1936
|
+
content: "\f0a7";
|
1937
|
+
}
|
1938
|
+
i.icon.globe:before {
|
1939
|
+
content: "\f0ac";
|
1940
|
+
}
|
1941
|
+
i.icon.wrench:before {
|
1942
|
+
content: "\f0ad";
|
1943
|
+
}
|
1944
|
+
i.icon.briefcase:before {
|
1945
|
+
content: "\f0b1";
|
1946
|
+
}
|
1947
|
+
i.icon.group:before {
|
1948
|
+
content: "\f0c0";
|
1949
|
+
}
|
1950
|
+
i.icon.flask:before {
|
1951
|
+
content: "\f0c3";
|
1952
|
+
}
|
1953
|
+
i.icon.sidebar:before {
|
1954
|
+
content: "\f0c9";
|
1955
|
+
}
|
1956
|
+
i.icon.bars:before {
|
1957
|
+
content: "\f0c9";
|
1958
|
+
}
|
1959
|
+
i.icon.list.ul:before {
|
1960
|
+
content: "\f0ca";
|
1961
|
+
}
|
1962
|
+
i.icon.list.ol:before {
|
1963
|
+
content: "\f0cb";
|
1964
|
+
}
|
1965
|
+
i.icon.numbered.list:before {
|
1966
|
+
content: "\f0cb";
|
1967
|
+
}
|
1968
|
+
i.icon.magic:before {
|
1969
|
+
content: "\f0d0";
|
1970
|
+
}
|
1971
|
+
i.icon.truck:before {
|
1972
|
+
content: "\f0d1";
|
1973
|
+
}
|
1974
|
+
i.icon.currency:before {
|
1975
|
+
content: "\f0d6";
|
1976
|
+
}
|
1977
|
+
i.icon.triangle.down:before {
|
1978
|
+
content: "\f0d7";
|
1979
|
+
}
|
1980
|
+
i.icon.dropdown:before {
|
1981
|
+
content: "\f0d7";
|
1982
|
+
}
|
1983
|
+
i.icon.triangle.up:before {
|
1984
|
+
content: "\f0d8";
|
1985
|
+
}
|
1986
|
+
i.icon.triangle.left:before {
|
1987
|
+
content: "\f0d9";
|
1988
|
+
}
|
1989
|
+
i.icon.triangle.right:before {
|
1990
|
+
content: "\f0da";
|
1991
|
+
}
|
1992
|
+
i.icon.envelope:before {
|
1993
|
+
content: "\f0e0";
|
1994
|
+
}
|
1995
|
+
i.icon.conversation:before {
|
1996
|
+
content: "\f0e6";
|
1997
|
+
}
|
1998
|
+
i.icon.lightning:before {
|
1999
|
+
content: "\f0e7";
|
2000
|
+
}
|
2001
|
+
i.icon.umbrella:before {
|
2002
|
+
content: "\f0e9";
|
2003
|
+
}
|
2004
|
+
i.icon.lightbulb:before {
|
2005
|
+
content: "\f0eb";
|
2006
|
+
}
|
2007
|
+
i.icon.suitcase:before {
|
2008
|
+
content: "\f0f2";
|
2009
|
+
}
|
2010
|
+
i.icon.bell.outline:before {
|
2011
|
+
content: "\f0a2";
|
2012
|
+
}
|
2013
|
+
i.icon.ambulance:before {
|
2014
|
+
content: "\f0f9";
|
2015
|
+
}
|
2016
|
+
i.icon.medkit:before {
|
2017
|
+
content: "\f0fa";
|
2018
|
+
}
|
2019
|
+
i.icon.fighter.jet:before {
|
2020
|
+
content: "\f0fb";
|
2021
|
+
}
|
2022
|
+
i.icon.beer:before {
|
2023
|
+
content: "\f0fc";
|
2024
|
+
}
|
2025
|
+
i.icon.plus.square:before {
|
2026
|
+
content: "\f0fe";
|
2027
|
+
}
|
2028
|
+
i.icon.computer:before {
|
2029
|
+
content: "\f108";
|
2030
|
+
}
|
2031
|
+
i.icon.circle.outline:before {
|
2032
|
+
content: "\f10c";
|
2033
|
+
}
|
2034
|
+
i.icon.spinner:before {
|
2035
|
+
content: "\f110";
|
2036
|
+
}
|
2037
|
+
i.icon.gamepad:before {
|
2038
|
+
content: "\f11b";
|
2039
|
+
}
|
2040
|
+
i.icon.star.half.full:before {
|
2041
|
+
content: "\f123";
|
2042
|
+
}
|
2043
|
+
i.icon.question:before {
|
2044
|
+
content: "\f128";
|
2045
|
+
}
|
2046
|
+
i.icon.attention:before {
|
2047
|
+
content: "\f12a";
|
2048
|
+
}
|
2049
|
+
i.icon.eraser:before {
|
2050
|
+
content: "\f12d";
|
2051
|
+
}
|
2052
|
+
i.icon.microphone:before {
|
2053
|
+
content: "\f130";
|
2054
|
+
}
|
2055
|
+
i.icon.microphone.slash:before {
|
2056
|
+
content: "\f131";
|
2057
|
+
}
|
2058
|
+
i.icon.shield:before {
|
2059
|
+
content: "\f132";
|
2060
|
+
}
|
2061
|
+
i.icon.target:before {
|
2062
|
+
content: "\f140";
|
2063
|
+
}
|
2064
|
+
i.icon.play.circle:before {
|
2065
|
+
content: "\f144";
|
2066
|
+
}
|
2067
|
+
i.icon.pencil.square:before {
|
2068
|
+
content: "\f14b";
|
2069
|
+
}
|
2070
|
+
i.icon.compass:before {
|
2071
|
+
content: "\f14e";
|
2072
|
+
}
|
2073
|
+
i.icon.eur:before {
|
2074
|
+
content: "\f153";
|
2075
|
+
}
|
2076
|
+
i.icon.gbp:before {
|
2077
|
+
content: "\f154";
|
2078
|
+
}
|
2079
|
+
i.icon.usd:before {
|
2080
|
+
content: "\f155";
|
2081
|
+
}
|
2082
|
+
i.icon.inr:before {
|
2083
|
+
content: "\f156";
|
2084
|
+
}
|
2085
|
+
i.icon.cny:before,
|
2086
|
+
i.icon.rmb:before,
|
2087
|
+
i.icon.jpy:before {
|
2088
|
+
content: "\f157";
|
2089
|
+
}
|
2090
|
+
i.icon.rouble:before,
|
2091
|
+
i.icon.rub:before {
|
2092
|
+
content: "\f158";
|
2093
|
+
}
|
2094
|
+
i.icon.won:before,
|
2095
|
+
i.icon.krw:before {
|
2096
|
+
content: "\f159";
|
2097
|
+
}
|
2098
|
+
i.icon.btc:before {
|
2099
|
+
content: "\f15a";
|
2100
|
+
}
|
2101
|
+
i.icon.try:before {
|
2102
|
+
content: "\f195";
|
2103
|
+
}
|
2104
|
+
i.icon.zip:before {
|
2105
|
+
content: "\f187";
|
2106
|
+
}
|
2107
|
+
i.icon.dot.circle.outline:before {
|
2108
|
+
content: "\f192";
|
2109
|
+
}
|
2110
|
+
i.icon.sliders:before {
|
2111
|
+
content: "\f1de";
|
2112
|
+
}
|
2113
|
+
i.icon.graduation:before {
|
2114
|
+
content: "\f19d";
|
2115
|
+
}
|
2116
|
+
i.icon.\33d:before {
|
2117
|
+
content: "\f1b2";
|
2118
|
+
}
|
2119
|
+
i.icon.weixin:before {
|
2120
|
+
content: "\f1d7";
|
2121
|
+
}
|
2122
|
+
|
2123
|
+
|
2124
|
+
/*******************************
|
2125
|
+
Site Overrides
|
2126
|
+
*******************************/
|
2127
|
+
|