rails-bootstrap-engine 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -0
- data/README.md +35 -0
- data/README.rdoc +3 -0
- data/Rakefile +40 -0
- data/app/assets/font/FontAwesome.ttf +0 -0
- data/app/assets/font/fontawesome-webfont.eot +0 -0
- data/app/assets/font/fontawesome-webfont.svg +525 -0
- data/app/assets/font/fontawesome-webfont.ttf +0 -0
- data/app/assets/font/fontawesome-webfont.woff +0 -0
- data/app/assets/font/glyphicons-regular-0.eot +0 -0
- data/app/assets/font/glyphicons-regular.eot +0 -0
- data/app/assets/font/glyphicons-regular.svg +435 -0
- data/app/assets/font/glyphicons-regular.ttf +0 -0
- data/app/assets/font/glyphicons-regular.woff +0 -0
- data/app/assets/font/glyphiconshalflings-regular-0.eot +0 -0
- data/app/assets/font/glyphiconshalflings-regular.eot +0 -0
- data/app/assets/font/glyphiconshalflings-regular.svg +175 -0
- data/app/assets/font/glyphiconshalflings-regular.ttf +0 -0
- data/app/assets/font/glyphiconshalflings-regular.woff +0 -0
- data/app/assets/images/apple-touch-icon-114x114-precomposed.png +0 -0
- data/app/assets/images/apple-touch-icon-144x144-precomposed.png +0 -0
- data/app/assets/images/apple-touch-icon-57x57-precomposed.png +0 -0
- data/app/assets/images/apple-touch-icon-72x72-precomposed.png +0 -0
- data/app/assets/images/apple-touch-icon-precomposed.png +0 -0
- data/app/assets/images/devise.png +0 -0
- data/app/assets/javascripts/behaviors.js +23 -0
- data/app/assets/javascripts/bootstrap.js +2159 -0
- data/app/assets/javascripts/plugins/holder.js +342 -0
- data/app/assets/javascripts/plugins/jquery.autosize.js +181 -0
- data/app/assets/javascripts/plugins/jquery.toggle.buttons.js +289 -0
- data/app/assets/javascripts/rails-bootstrap-engine.js +17 -0
- data/app/assets/stylesheets/bootstrap-plugins/bootstrap-jumbotrons.css +95 -0
- data/app/assets/stylesheets/bootstrap-plugins/bootstrap-toggle-buttons.css +155 -0
- data/app/assets/stylesheets/bootstrap-responsive.css +1092 -0
- data/app/assets/stylesheets/bootstrap.css +6044 -0
- data/app/assets/stylesheets/devise.css +3 -0
- data/app/assets/stylesheets/font-awesome-more-ie7.css +288 -0
- data/app/assets/stylesheets/font-awesome-more.css +853 -0
- data/app/assets/stylesheets/glyphicons-pro.css +2382 -0
- data/app/assets/stylesheets/orangeweb-bootstrap-toolkit/bootstrap-toolkit-background.css +147 -0
- data/app/assets/stylesheets/orangeweb-bootstrap-toolkit/bootstrap-toolkit-color.css +28 -0
- data/app/assets/stylesheets/orangeweb-bootstrap-toolkit/bootstrap-toolkit-navigation.css +27 -0
- data/app/assets/stylesheets/orangeweb-bootstrap-toolkit/bootstrap-toolkit-overrides.css +4 -0
- data/app/assets/stylesheets/orangeweb-bootstrap-toolkit/bootstrap-toolkit-table.css +29 -0
- data/app/assets/stylesheets/orangeweb-bootstrap-toolkit/bootstrap-toolkit-typography.css +30 -0
- data/app/assets/stylesheets/rails-bootstrap-engine.css +20 -0
- data/app/helpers/bootstrap_alert_helper.rb +64 -0
- data/app/helpers/bootstrap_badge_helper.rb +145 -0
- data/app/helpers/bootstrap_breadcrumbs_helper.rb +97 -0
- data/app/helpers/bootstrap_button_helper.rb +121 -0
- data/app/helpers/bootstrap_engine_helper.rb +66 -0
- data/app/helpers/bootstrap_form_helpers.rb +55 -0
- data/app/helpers/bootstrap_grid_helper.rb +119 -0
- data/app/helpers/bootstrap_icon_helper.rb +51 -0
- data/app/helpers/bootstrap_label_helper.rb +116 -0
- data/app/helpers/bootstrap_link_helper.rb +81 -0
- data/app/helpers/bootstrap_nav_helper.rb +90 -0
- data/app/helpers/bootstrap_popover_helper.rb +52 -0
- data/app/helpers/bootstrap_progressbar_helper.rb +62 -0
- data/app/helpers/bootstrap_searchbar_helper.rb +70 -0
- data/app/helpers/bootstrap_text_helper.rb +128 -0
- data/app/views/devise/confirmations/new.html.erb +16 -0
- data/app/views/devise/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/devise/passwords/edit.html.erb +19 -0
- data/app/views/devise/passwords/new.html.erb +15 -0
- data/app/views/devise/registrations/edit.html.erb +79 -0
- data/app/views/devise/registrations/new.html.erb +7 -0
- data/app/views/devise/sessions/new.html.erb +14 -0
- data/app/views/devise/shared/_links.erb +25 -0
- data/app/views/devise/unlocks/new.html.erb +16 -0
- data/app/views/layouts/application.html.erb +96 -0
- data/app/views/layouts/devise.html.erb +180 -0
- data/config/initializers/simple_form.rb +142 -0
- data/config/initializers/simple_form_bootstrap.rb +45 -0
- data/config/initializers/will_paginate.rb +28 -0
- data/config/locales/pt-BR.yml +217 -0
- data/config/locales/simple_form.en.yml +26 -0
- data/config/locales/will_paginate.pt-br.yml +5 -0
- data/config/routes.rb +2 -0
- data/lib/generators/bootstrap_engine/devise/install/install_generator.rb +47 -0
- data/lib/generators/bootstrap_engine/devise/install/templates/devise.html.erb +180 -0
- data/lib/rails-bootstrap-engine.rb +4 -0
- data/lib/rails-bootstrap-engine/engine.rb +4 -0
- data/lib/rails-bootstrap-engine/version.rb +3 -0
- data/lib/tasks/rails-bootstrap-engine_tasks.rake +4 -0
- data/lib/templates/erb/scaffold/_form.html.erb +13 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +16 -0
- data/test/dummy/app/assets/javascripts/test.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +14 -0
- data/test/dummy/app/assets/stylesheets/test.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +7 -0
- data/test/dummy/app/controllers/test_controller.rb +4 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/test_helper.rb +2 -0
- data/test/dummy/app/models/user.rb +11 -0
- data/test/dummy/app/views/layouts/application.html.erb +90 -0
- data/test/dummy/app/views/layouts/devise.html.erb +180 -0
- data/test/dummy/app/views/test/index.html.erb +2 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +62 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/devise.rb +240 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/devise.en.yml +60 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +61 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20130128020557_devise_create_users.rb +46 -0
- data/test/dummy/db/schema.rb +34 -0
- data/test/dummy/log/development.log +42375 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/users.yml +11 -0
- data/test/dummy/test/functional/test_controller_test.rb +9 -0
- data/test/dummy/test/unit/helpers/test_helper_test.rb +4 -0
- data/test/dummy/test/unit/user_test.rb +7 -0
- data/test/dummy/tmp/cache/assets/C3E/300/sprockets%2F2e344c0677be6b7212b140861750a434 +0 -0
- data/test/dummy/tmp/cache/assets/C51/500/sprockets%2F54522a51515e196c0ea74c652393948d +0 -0
- data/test/dummy/tmp/cache/assets/C63/420/sprockets%2F5daa64d9601a1dd14726112003d08364 +0 -0
- data/test/dummy/tmp/cache/assets/C79/BC0/sprockets%2F4285c677a500a056b055c187bd551e66 +0 -0
- data/test/dummy/tmp/cache/assets/C7F/310/sprockets%2F90949831299d2c1b73a43a1442bed906 +0 -0
- data/test/dummy/tmp/cache/assets/C82/E50/sprockets%2F183827018621a62ba5ff81fd772276c5 +0 -0
- data/test/dummy/tmp/cache/assets/C89/360/sprockets%2Fbcd93c6868260f0834225e8c57034b59 +0 -0
- data/test/dummy/tmp/cache/assets/C9F/670/sprockets%2Fa5133a772163e7f1321877bca922d31a +0 -0
- data/test/dummy/tmp/cache/assets/CA4/C80/sprockets%2F1d8eb08550b4245a12704ccb9f068274 +0 -0
- data/test/dummy/tmp/cache/assets/CB1/E50/sprockets%2F28c397f922d0af81b393fbf206056462 +0 -0
- data/test/dummy/tmp/cache/assets/CC9/FB0/sprockets%2F19690891f5b6cc724835fb913fe779e0 +0 -0
- data/test/dummy/tmp/cache/assets/CD4/D10/sprockets%2F6143a55e947c5d1d36b647ba5222d31c +0 -0
- data/test/dummy/tmp/cache/assets/CD6/D30/sprockets%2F2237e207a9f1ae1e983e15a0f1b99132 +0 -0
- data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/CD9/1E0/sprockets%2F293460f7bea2aea456231b769212f36f +0 -0
- data/test/dummy/tmp/cache/assets/CDD/A30/sprockets%2Fcd69a2143c13a93e76db54ed63422908 +0 -0
- data/test/dummy/tmp/cache/assets/CDE/4F0/sprockets%2F8ee5b8c8107426b362b54e84be04063e +0 -0
- data/test/dummy/tmp/cache/assets/CDE/930/sprockets%2Fc8ab20177199ce39d3c2570d7111e59c +0 -0
- data/test/dummy/tmp/cache/assets/CDE/CF0/sprockets%2F7bf6411e56a335b96e439a238b4da462 +0 -0
- data/test/dummy/tmp/cache/assets/CE0/7A0/sprockets%2F021578f8253d2eedd55bd063684dd334 +0 -0
- data/test/dummy/tmp/cache/assets/CE3/050/sprockets%2Fce67f45bf13e27654e882270b21463ec +0 -0
- data/test/dummy/tmp/cache/assets/CEA/A80/sprockets%2F4a745d213d993e1185d55e26c68deb74 +0 -0
- data/test/dummy/tmp/cache/assets/CEF/500/sprockets%2F0d17117bfaf665390bbb203530ce01d2 +0 -0
- data/test/dummy/tmp/cache/assets/CF1/C60/sprockets%2Fb888b526e547356dbf4f16835d8a2f34 +0 -0
- data/test/dummy/tmp/cache/assets/CF7/A10/sprockets%2F2e3a5af78ce42be8252314603b6c00b1 +0 -0
- data/test/dummy/tmp/cache/assets/CF9/2A0/sprockets%2F99d62669bd0b471738e99e43ae564ef1 +0 -0
- data/test/dummy/tmp/cache/assets/D04/8E0/sprockets%2F33617ca614d80c0cfe33277e05a5f35d +0 -0
- data/test/dummy/tmp/cache/assets/D0E/2B0/sprockets%2F859557e033595cf5b9eb2e73330bba0a +0 -0
- data/test/dummy/tmp/cache/assets/D15/9D0/sprockets%2F270af34895cfd4b388c9aad55e043464 +0 -0
- data/test/dummy/tmp/cache/assets/D15/D20/sprockets%2F952bcc41195db55c99be6c93f40b7513 +0 -0
- data/test/dummy/tmp/cache/assets/D16/860/sprockets%2Fb45890d98668c132fee5cae4b15320d9 +0 -0
- data/test/dummy/tmp/cache/assets/D19/EF0/sprockets%2F895b6d0967c1205395e5b9a6bd56a4dc +0 -0
- data/test/dummy/tmp/cache/assets/D1A/C00/sprockets%2F9599a6464c5dac7fd6093f1a46fb0444 +0 -0
- data/test/dummy/tmp/cache/assets/D25/5A0/sprockets%2Fbf2f92c27945d0f2897f94e546346cda +0 -0
- data/test/dummy/tmp/cache/assets/D2B/E00/sprockets%2Febafd146d810419e351347cae0001ed8 +0 -0
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D3A/F20/sprockets%2F04a7fb58c68be319d3f3b5c7f14200d6 +0 -0
- data/test/dummy/tmp/cache/assets/D3B/440/sprockets%2F9d61f7f02a3a5dab16a07f463d95563c +0 -0
- data/test/dummy/tmp/cache/assets/D3D/C40/sprockets%2F427a390419acfd9b1dbf265e6e6f3430 +0 -0
- data/test/dummy/tmp/cache/assets/D3E/210/sprockets%2F6ad484a0d5fd94a6970ca33e2cc15297 +0 -0
- data/test/dummy/tmp/cache/assets/D3E/300/sprockets%2F66271e5e0e2a7aa2937ba5d8e4a2962f +0 -0
- data/test/dummy/tmp/cache/assets/D3F/CB0/sprockets%2Fc58312cf90fc5e15d416de5bd74e9411 +0 -0
- data/test/dummy/tmp/cache/assets/D42/9F0/sprockets%2F956410b8172fa4592bc3cbf5f71a6f5f +0 -0
- data/test/dummy/tmp/cache/assets/D43/B00/sprockets%2Ff724bee040039676a1aae696a8f06e7f +0 -0
- data/test/dummy/tmp/cache/assets/D45/930/sprockets%2F9593e26322d3ac909618faa6fc8cf50b +0 -0
- data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/D52/8C0/sprockets%2F24944cec626a1b59d98e9b46b7cd91e6 +0 -0
- data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/D61/1C0/sprockets%2Fa159272faca84b51889c6ab0ca11c3d6 +0 -0
- data/test/dummy/tmp/cache/assets/D63/EA0/sprockets%2Ffc8a31fb16444bc623a7afd34b27f065 +0 -0
- data/test/dummy/tmp/cache/assets/D65/600/sprockets%2Fdaa0e3c217673cb0ebb89d97438a1b80 +0 -0
- data/test/dummy/tmp/cache/assets/D66/B00/sprockets%2Fa9c44b4284c7b601c36ba69562accfb4 +0 -0
- data/test/dummy/tmp/cache/assets/D68/7C0/sprockets%2F1866195f0d2b5f990a3a2131acdffdb7 +0 -0
- data/test/dummy/tmp/cache/assets/D6A/940/sprockets%2Ff12f9168fe02cef00d215dc87d5e7c11 +0 -0
- data/test/dummy/tmp/cache/assets/D70/530/sprockets%2Faa6133344adde2f6796dd06c2378f9ca +0 -0
- data/test/dummy/tmp/cache/assets/D71/D40/sprockets%2Fdf25d07e57783faca718d3355e12caf5 +0 -0
- data/test/dummy/tmp/cache/assets/D86/090/sprockets%2Faad76d1c0cd8f8a86962f721f999b09f +0 -0
- data/test/dummy/tmp/cache/assets/D8A/770/sprockets%2Fad6b282a5df70217f707adde40a0a17d +0 -0
- data/test/dummy/tmp/cache/assets/D90/440/sprockets%2F7fa7e142c264fa45fe720aa47b5b0dd2 +0 -0
- data/test/dummy/tmp/cache/assets/D97/250/sprockets%2F45bb8c0384f075aecc8dc2e5670ef0a2 +0 -0
- data/test/dummy/tmp/cache/assets/D9C/C10/sprockets%2F462dea729a9984d242ab7b6ace1fc0b6 +0 -0
- data/test/dummy/tmp/cache/assets/DA6/D40/sprockets%2Fa6d2c6c99e2fa333eb87ee7560ae941b +0 -0
- data/test/dummy/tmp/cache/assets/DAA/D20/sprockets%2F1df903901857cf4ceb8bee9d1ec42d68 +0 -0
- data/test/dummy/tmp/cache/assets/DAC/770/sprockets%2F473547f2b9f6b2bc6d0fa06f79af57fd +0 -0
- data/test/dummy/tmp/cache/assets/DB8/D70/sprockets%2F2aae8f796d8b8290c88e66fffb09c14e +0 -0
- data/test/dummy/tmp/cache/assets/DBC/2C0/sprockets%2Fb7023d141154daa082e2fceeaaf99ea4 +0 -0
- data/test/dummy/tmp/cache/assets/DC6/3A0/sprockets%2F692eb3cc77b2eeba07ab6c36295a6bd1 +0 -0
- data/test/dummy/tmp/cache/assets/DC7/F30/sprockets%2F6c6f0bca21e5a0e8f4b54d3de3f3a478 +0 -0
- data/test/dummy/tmp/cache/assets/DCA/AC0/sprockets%2F409ab48cd1b8b124e8f6e0b5cb3ff35f +0 -0
- data/test/dummy/tmp/cache/assets/DCD/210/sprockets%2Fff66c21af8a114cfaa477375cfbe6e51 +0 -0
- data/test/dummy/tmp/cache/assets/DCF/360/sprockets%2F60babcedd5e76636d61b5849d3cc7c0d +0 -0
- data/test/dummy/tmp/cache/assets/DDA/5A0/sprockets%2Feffe9d8758c34ac5b08d5ab37107e6de +0 -0
- data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/DDC/A10/sprockets%2Faac7e62fb8f54520e0fd8fdace647877 +0 -0
- data/test/dummy/tmp/cache/assets/DDF/9F0/sprockets%2Fe4c64d625c9988fc2ecc7fb0c6196bdc +0 -0
- data/test/dummy/tmp/cache/assets/DFB/510/sprockets%2Fbaa9a5abc4aeafa76fa6076c476b5099 +0 -0
- data/test/dummy/tmp/cache/assets/DFE/1E0/sprockets%2Fafc6a7ac607cdccf69b2f41c81462c9d +0 -0
- data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/E20/550/sprockets%2Fe1b1ce6c37d22bb088bb09c6eddfa51d +0 -0
- data/test/dummy/tmp/cache/assets/E7B/7F0/sprockets%2Fb5adae1ffa3fd56d153fea3a52aaff23 +0 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/rails-bootstrap-engine_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +423 -0
|
@@ -0,0 +1,288 @@
|
|
|
1
|
+
[class^="icon-"],
|
|
2
|
+
[class*=" icon-"] {
|
|
3
|
+
font-family: FontAwesome;
|
|
4
|
+
font-style: normal;
|
|
5
|
+
font-weight: normal;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.btn.dropdown-toggle [class^="icon-"], .btn.dropdown-toggle [class*=" icon-"] {
|
|
9
|
+
/* keeps button heights with and without icons the same */
|
|
10
|
+
line-height: 1.4em;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.icon-large {
|
|
14
|
+
font-size: 1.3333em;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.icon-glass { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
18
|
+
.icon-music { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
19
|
+
.icon-search { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
20
|
+
.icon-envelope { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
21
|
+
.icon-heart { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
22
|
+
.icon-star { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
23
|
+
.icon-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
24
|
+
.icon-user { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
25
|
+
.icon-film { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
26
|
+
.icon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
27
|
+
.icon-th { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
28
|
+
.icon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
29
|
+
.icon-ok { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
30
|
+
.icon-remove { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
31
|
+
.icon-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
32
|
+
|
|
33
|
+
.icon-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
34
|
+
.icon-off { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
35
|
+
.icon-signal { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
36
|
+
.icon-cog { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
37
|
+
.icon-trash { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
38
|
+
.icon-home { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
39
|
+
.icon-file { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
40
|
+
.icon-time { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
41
|
+
.icon-road { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
42
|
+
.icon-download-alt { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
43
|
+
.icon-download { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
44
|
+
.icon-upload { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
45
|
+
.icon-inbox { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
46
|
+
.icon-play-circle { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
47
|
+
.icon-repeat { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
48
|
+
|
|
49
|
+
.icon-refresh { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
50
|
+
.icon-list-alt { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
51
|
+
.icon-lock { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
52
|
+
.icon-flag { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
53
|
+
.icon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
54
|
+
.icon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
55
|
+
.icon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
56
|
+
.icon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
57
|
+
.icon-qrcode { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
58
|
+
.icon-barcode { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
59
|
+
.icon-tag { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
60
|
+
.icon-tags { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
61
|
+
.icon-book { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
62
|
+
.icon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
63
|
+
.icon-print { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
64
|
+
|
|
65
|
+
.icon-camera { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
66
|
+
.icon-font { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
67
|
+
.icon-bold { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
68
|
+
.icon-italic { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
69
|
+
.icon-text-height { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
70
|
+
.icon-text-width { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
71
|
+
.icon-align-left { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
72
|
+
.icon-align-center { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
73
|
+
.icon-align-right { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
74
|
+
.icon-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
75
|
+
.icon-list { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
76
|
+
.icon-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
77
|
+
.icon-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
78
|
+
.icon-facetime-video { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
79
|
+
.icon-picture { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
80
|
+
|
|
81
|
+
.icon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
82
|
+
.icon-map-marker { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
83
|
+
.icon-adjust { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
84
|
+
.icon-tint { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
85
|
+
.icon-edit { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
86
|
+
.icon-share { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
87
|
+
.icon-check { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
88
|
+
.icon-move { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
89
|
+
.icon-step-backward { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
90
|
+
.icon-fast-backward { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
91
|
+
.icon-backward { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
92
|
+
.icon-play { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
93
|
+
.icon-pause { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
94
|
+
.icon-stop { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
95
|
+
.icon-forward { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
96
|
+
|
|
97
|
+
.icon-fast-forward { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
98
|
+
.icon-step-forward { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
99
|
+
.icon-eject { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
100
|
+
.icon-chevron-left { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
101
|
+
.icon-chevron-right { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
102
|
+
.icon-plus-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
103
|
+
.icon-minus-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
104
|
+
.icon-remove-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
105
|
+
.icon-ok-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
106
|
+
.icon-question-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
107
|
+
.icon-info-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
108
|
+
.icon-screenshot { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
109
|
+
.icon-remove-circle { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
110
|
+
.icon-ok-circle { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
111
|
+
.icon-ban-circle { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
112
|
+
|
|
113
|
+
.icon-arrow-left { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
114
|
+
.icon-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
115
|
+
.icon-arrow-up { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
116
|
+
.icon-arrow-down { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
117
|
+
.icon-share-alt { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
118
|
+
.icon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
119
|
+
.icon-resize-small { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
120
|
+
.icon-plus { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
121
|
+
.icon-minus { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
122
|
+
.icon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
123
|
+
.icon-exclamation-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
124
|
+
.icon-gift { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
125
|
+
.icon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
126
|
+
.icon-fire { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
127
|
+
.icon-eye-open { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
128
|
+
|
|
129
|
+
.icon-eye-close { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
130
|
+
.icon-warning-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
131
|
+
.icon-plane { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
132
|
+
.icon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
133
|
+
.icon-random { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
134
|
+
.icon-comment { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
135
|
+
.icon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
136
|
+
.icon-chevron-up { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
137
|
+
.icon-chevron-down { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
138
|
+
.icon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
139
|
+
.icon-shopping-cart { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
140
|
+
.icon-folder-close { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
141
|
+
.icon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
142
|
+
.icon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
143
|
+
.icon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
144
|
+
|
|
145
|
+
.icon-bar-chart { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
146
|
+
.icon-twitter-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
147
|
+
.icon-facebook-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
148
|
+
.icon-camera-retro { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
149
|
+
.icon-key { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
150
|
+
.icon-cogs { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
151
|
+
.icon-comments { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
152
|
+
.icon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
153
|
+
.icon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
154
|
+
.icon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
155
|
+
.icon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
156
|
+
.icon-signout { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
157
|
+
.icon-linkedin-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
158
|
+
.icon-pushpin { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
159
|
+
.icon-external-link { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
160
|
+
|
|
161
|
+
.icon-signin { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
162
|
+
.icon-trophy { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
163
|
+
.icon-github-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
164
|
+
.icon-upload-alt { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
165
|
+
.icon-lemon { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
166
|
+
.icon-phone { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
167
|
+
.icon-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
168
|
+
.icon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
169
|
+
.icon-phone-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
170
|
+
.icon-twitter { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
171
|
+
.icon-facebook { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
172
|
+
.icon-github { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
173
|
+
.icon-unlock { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
174
|
+
.icon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
175
|
+
.icon-rss { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
176
|
+
|
|
177
|
+
.icon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
178
|
+
.icon-bullhorn { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
179
|
+
.icon-bell { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
180
|
+
.icon-certificate { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
181
|
+
.icon-hand-right { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
182
|
+
.icon-hand-left { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
183
|
+
.icon-hand-up { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
184
|
+
.icon-hand-down { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
185
|
+
.icon-circle-arrow-left { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
186
|
+
.icon-circle-arrow-right { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
187
|
+
.icon-circle-arrow-up { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
188
|
+
.icon-circle-arrow-down { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
189
|
+
.icon-globe { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
190
|
+
.icon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
191
|
+
.icon-tasks { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
192
|
+
|
|
193
|
+
.icon-filter { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
194
|
+
.icon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
195
|
+
.icon-fullscreen { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
196
|
+
|
|
197
|
+
.icon-group { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
198
|
+
.icon-link { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
199
|
+
.icon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
200
|
+
.icon-beaker { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
201
|
+
.icon-cut { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
202
|
+
.icon-copy { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
203
|
+
.icon-paper-clip { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
204
|
+
.icon-save { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
205
|
+
.icon-sign-blank { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
206
|
+
.icon-reorder { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
207
|
+
.icon-list-ul { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
208
|
+
.icon-list-ol { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
209
|
+
.icon-strikethrough { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
210
|
+
.icon-underline { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
211
|
+
.icon-table { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
212
|
+
|
|
213
|
+
.icon-magic { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
214
|
+
.icon-truck { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
215
|
+
.icon-pinterest { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
216
|
+
.icon-pinterest-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
217
|
+
.icon-google-plus-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
218
|
+
.icon-google-plus { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
219
|
+
.icon-money { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
220
|
+
.icon-caret-down { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
221
|
+
.icon-caret-up { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
222
|
+
.icon-caret-left { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
223
|
+
.icon-caret-right { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
224
|
+
.icon-columns { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
225
|
+
.icon-sort { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
226
|
+
.icon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
227
|
+
.icon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
228
|
+
|
|
229
|
+
.icon-envelope-alt { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
230
|
+
.icon-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
231
|
+
.icon-undo { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
232
|
+
.icon-legal { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
233
|
+
.icon-dashboard { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
234
|
+
.icon-comment-alt { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
235
|
+
.icon-comments-alt { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
236
|
+
.icon-bolt { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
237
|
+
.icon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
238
|
+
.icon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
239
|
+
.icon-paste { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
240
|
+
|
|
241
|
+
.icon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
242
|
+
|
|
243
|
+
.icon-apple-logo { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
244
|
+
.icon-windows-8 { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
245
|
+
.icon-js-fiddle { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
246
|
+
.icon-skype { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
247
|
+
.icon-youtube-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
248
|
+
.icon-youtube { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
249
|
+
.icon-vimeo-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
250
|
+
.icon-vimeo { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
251
|
+
.icon-lastfm-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
252
|
+
.icon-lastfm { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
253
|
+
.icon-rss-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
254
|
+
.icon-reddit { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
255
|
+
.icon-delicious-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
256
|
+
.icon-wordpress-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
257
|
+
.icon-wordpress { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
258
|
+
.icon-git-fork { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
259
|
+
|
|
260
|
+
.icon-blogger-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
261
|
+
.icon-blogger { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
262
|
+
.icon-tumblr-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
263
|
+
.icon-tumblr { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
264
|
+
.icon-flickr-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
265
|
+
.icon-flickr { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
266
|
+
.icon-picasa-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
267
|
+
.icon-picasa { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
268
|
+
.icon-amazon-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
269
|
+
.icon-amazon { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
270
|
+
.icon-yelp-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
271
|
+
.icon-yelp { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
272
|
+
.icon-soundcloud { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
273
|
+
.icon-spotify { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
274
|
+
|
|
275
|
+
.icon-yahoo-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
276
|
+
.icon-yahoo { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
277
|
+
.icon-evernote-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
278
|
+
.icon-evernote { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
279
|
+
.icon-google-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
280
|
+
.icon-google { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
281
|
+
.icon-hacker-news { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
282
|
+
.icon-map { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
283
|
+
.icon-bus-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
284
|
+
.icon-bike-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
285
|
+
.icon-car-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
286
|
+
.icon-taxi-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
287
|
+
.icon-truck-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
288
|
+
.icon-handicap-sign { *zoom: expression( this.runtimeStyle['zoom'] = "1", this.innerHTML = ' '); }
|
|
@@ -0,0 +1,853 @@
|
|
|
1
|
+
/* Font Awesome
|
|
2
|
+
the iconic font designed for use with Twitter Bootstrap
|
|
3
|
+
-------------------------------------------------------
|
|
4
|
+
The full suite of pictographic icons, examples, and documentation
|
|
5
|
+
can be found at: http://fortawesome.github.com/Font-Awesome/
|
|
6
|
+
|
|
7
|
+
License
|
|
8
|
+
-------------------------------------------------------
|
|
9
|
+
The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
|
|
10
|
+
http://creativecommons.org/licenses/by/3.0/ A mention of
|
|
11
|
+
'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
|
|
12
|
+
source code is considered acceptable attribution (most common on the web).
|
|
13
|
+
If human readable source code is not available to the end user, a mention in
|
|
14
|
+
an 'About' or 'Credits' screen is considered acceptable (most common in desktop
|
|
15
|
+
or mobile software).
|
|
16
|
+
|
|
17
|
+
Contact
|
|
18
|
+
-------------------------------------------------------
|
|
19
|
+
Email: dave@davegandy.com
|
|
20
|
+
Twitter: http://twitter.com/fortaweso_me
|
|
21
|
+
Work: Lead Product Designer @ http://kyruus.com
|
|
22
|
+
|
|
23
|
+
*/
|
|
24
|
+
@font-face {
|
|
25
|
+
font-family: 'FontAwesome';
|
|
26
|
+
src: url('../assets/fontawesome-webfont.eot');
|
|
27
|
+
src: url('../assets/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('../assets/fontawesome-webfont.woff') format('woff'), url('../assets/fontawesome-webfont.ttf') format('truetype'), url('../assets/fontawesome-webfont.svg#FontAwesome') format('svg');
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
font-style: normal;
|
|
30
|
+
}
|
|
31
|
+
/* Font Awesome styles
|
|
32
|
+
------------------------------------------------------- */
|
|
33
|
+
[class^="icon-"]:before,
|
|
34
|
+
[class*=" icon-"]:before {
|
|
35
|
+
font-family: FontAwesome;
|
|
36
|
+
font-weight: normal;
|
|
37
|
+
font-style: normal;
|
|
38
|
+
display: inline-block;
|
|
39
|
+
text-decoration: inherit;
|
|
40
|
+
}
|
|
41
|
+
a [class^="icon-"],
|
|
42
|
+
a [class*=" icon-"] {
|
|
43
|
+
display: inline-block;
|
|
44
|
+
text-decoration: inherit;
|
|
45
|
+
}
|
|
46
|
+
/* makes the font 33% larger relative to the icon container */
|
|
47
|
+
.icon-large:before {
|
|
48
|
+
vertical-align: middle;
|
|
49
|
+
font-size: 1.3333333333333333em;
|
|
50
|
+
}
|
|
51
|
+
.btn [class^="icon-"],
|
|
52
|
+
.nav-tabs [class^="icon-"],
|
|
53
|
+
.btn [class*=" icon-"],
|
|
54
|
+
.nav-tabs [class*=" icon-"] {
|
|
55
|
+
/* keeps button heights with and without icons the same */
|
|
56
|
+
|
|
57
|
+
line-height: .9em;
|
|
58
|
+
}
|
|
59
|
+
li [class^="icon-"],
|
|
60
|
+
li [class*=" icon-"] {
|
|
61
|
+
display: inline-block;
|
|
62
|
+
width: 1.25em;
|
|
63
|
+
text-align: center;
|
|
64
|
+
}
|
|
65
|
+
li .icon-large:before,
|
|
66
|
+
li .icon-large:before {
|
|
67
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
|
68
|
+
|
|
69
|
+
width: 1.875em;
|
|
70
|
+
}
|
|
71
|
+
ul.icons {
|
|
72
|
+
list-style-type: none;
|
|
73
|
+
margin-left: 2em;
|
|
74
|
+
text-indent: -0.8em;
|
|
75
|
+
}
|
|
76
|
+
ul.icons li [class^="icon-"],
|
|
77
|
+
ul.icons li [class*=" icon-"] {
|
|
78
|
+
width: .8em;
|
|
79
|
+
}
|
|
80
|
+
ul.icons li .icon-large:before,
|
|
81
|
+
ul.icons li .icon-large:before {
|
|
82
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
|
83
|
+
|
|
84
|
+
vertical-align: initial;
|
|
85
|
+
}
|
|
86
|
+
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
|
|
87
|
+
readers do not read off random characters that represent icons */
|
|
88
|
+
.icon-glass:before {
|
|
89
|
+
content: "\f000";
|
|
90
|
+
}
|
|
91
|
+
.icon-music:before {
|
|
92
|
+
content: "\f001";
|
|
93
|
+
}
|
|
94
|
+
.icon-search:before {
|
|
95
|
+
content: "\f002";
|
|
96
|
+
}
|
|
97
|
+
.icon-envelope:before {
|
|
98
|
+
content: "\f003";
|
|
99
|
+
}
|
|
100
|
+
.icon-heart:before {
|
|
101
|
+
content: "\f004";
|
|
102
|
+
}
|
|
103
|
+
.icon-star:before {
|
|
104
|
+
content: "\f005";
|
|
105
|
+
}
|
|
106
|
+
.icon-star-empty:before {
|
|
107
|
+
content: "\f006";
|
|
108
|
+
}
|
|
109
|
+
.icon-user:before {
|
|
110
|
+
content: "\f007";
|
|
111
|
+
}
|
|
112
|
+
.icon-film:before {
|
|
113
|
+
content: "\f008";
|
|
114
|
+
}
|
|
115
|
+
.icon-th-large:before {
|
|
116
|
+
content: "\f009";
|
|
117
|
+
}
|
|
118
|
+
.icon-th:before {
|
|
119
|
+
content: "\f00a";
|
|
120
|
+
}
|
|
121
|
+
.icon-th-list:before {
|
|
122
|
+
content: "\f00b";
|
|
123
|
+
}
|
|
124
|
+
.icon-ok:before {
|
|
125
|
+
content: "\f00c";
|
|
126
|
+
}
|
|
127
|
+
.icon-remove:before {
|
|
128
|
+
content: "\f00d";
|
|
129
|
+
}
|
|
130
|
+
.icon-zoom-in:before {
|
|
131
|
+
content: "\f00e";
|
|
132
|
+
}
|
|
133
|
+
.icon-zoom-out:before {
|
|
134
|
+
content: "\f010";
|
|
135
|
+
}
|
|
136
|
+
.icon-off:before {
|
|
137
|
+
content: "\f011";
|
|
138
|
+
}
|
|
139
|
+
.icon-signal:before {
|
|
140
|
+
content: "\f012";
|
|
141
|
+
}
|
|
142
|
+
.icon-cog:before {
|
|
143
|
+
content: "\f013";
|
|
144
|
+
}
|
|
145
|
+
.icon-trash:before {
|
|
146
|
+
content: "\f014";
|
|
147
|
+
}
|
|
148
|
+
.icon-home:before {
|
|
149
|
+
content: "\f015";
|
|
150
|
+
}
|
|
151
|
+
.icon-file:before {
|
|
152
|
+
content: "\f016";
|
|
153
|
+
}
|
|
154
|
+
.icon-time:before {
|
|
155
|
+
content: "\f017";
|
|
156
|
+
}
|
|
157
|
+
.icon-road:before {
|
|
158
|
+
content: "\f018";
|
|
159
|
+
}
|
|
160
|
+
.icon-download-alt:before {
|
|
161
|
+
content: "\f019";
|
|
162
|
+
}
|
|
163
|
+
.icon-download:before {
|
|
164
|
+
content: "\f01a";
|
|
165
|
+
}
|
|
166
|
+
.icon-upload:before {
|
|
167
|
+
content: "\f01b";
|
|
168
|
+
}
|
|
169
|
+
.icon-inbox:before {
|
|
170
|
+
content: "\f01c";
|
|
171
|
+
}
|
|
172
|
+
.icon-play-circle:before {
|
|
173
|
+
content: "\f01d";
|
|
174
|
+
}
|
|
175
|
+
.icon-repeat:before {
|
|
176
|
+
content: "\f01e";
|
|
177
|
+
}
|
|
178
|
+
/* \f020 is not a valid unicode character. all shifted one down */
|
|
179
|
+
.icon-refresh:before {
|
|
180
|
+
content: "\f021";
|
|
181
|
+
}
|
|
182
|
+
.icon-list-alt:before {
|
|
183
|
+
content: "\f022";
|
|
184
|
+
}
|
|
185
|
+
.icon-lock:before {
|
|
186
|
+
content: "\f023";
|
|
187
|
+
}
|
|
188
|
+
.icon-flag:before {
|
|
189
|
+
content: "\f024";
|
|
190
|
+
}
|
|
191
|
+
.icon-headphones:before {
|
|
192
|
+
content: "\f025";
|
|
193
|
+
}
|
|
194
|
+
.icon-volume-off:before {
|
|
195
|
+
content: "\f026";
|
|
196
|
+
}
|
|
197
|
+
.icon-volume-down:before {
|
|
198
|
+
content: "\f027";
|
|
199
|
+
}
|
|
200
|
+
.icon-volume-up:before {
|
|
201
|
+
content: "\f028";
|
|
202
|
+
}
|
|
203
|
+
.icon-qrcode:before {
|
|
204
|
+
content: "\f029";
|
|
205
|
+
}
|
|
206
|
+
.icon-barcode:before {
|
|
207
|
+
content: "\f02a";
|
|
208
|
+
}
|
|
209
|
+
.icon-tag:before {
|
|
210
|
+
content: "\f02b";
|
|
211
|
+
}
|
|
212
|
+
.icon-tags:before {
|
|
213
|
+
content: "\f02c";
|
|
214
|
+
}
|
|
215
|
+
.icon-book:before {
|
|
216
|
+
content: "\f02d";
|
|
217
|
+
}
|
|
218
|
+
.icon-bookmark:before {
|
|
219
|
+
content: "\f02e";
|
|
220
|
+
}
|
|
221
|
+
.icon-print:before {
|
|
222
|
+
content: "\f02f";
|
|
223
|
+
}
|
|
224
|
+
.icon-camera:before {
|
|
225
|
+
content: "\f030";
|
|
226
|
+
}
|
|
227
|
+
.icon-font:before {
|
|
228
|
+
content: "\f031";
|
|
229
|
+
}
|
|
230
|
+
.icon-bold:before {
|
|
231
|
+
content: "\f032";
|
|
232
|
+
}
|
|
233
|
+
.icon-italic:before {
|
|
234
|
+
content: "\f033";
|
|
235
|
+
}
|
|
236
|
+
.icon-text-height:before {
|
|
237
|
+
content: "\f034";
|
|
238
|
+
}
|
|
239
|
+
.icon-text-width:before {
|
|
240
|
+
content: "\f035";
|
|
241
|
+
}
|
|
242
|
+
.icon-align-left:before {
|
|
243
|
+
content: "\f036";
|
|
244
|
+
}
|
|
245
|
+
.icon-align-center:before {
|
|
246
|
+
content: "\f037";
|
|
247
|
+
}
|
|
248
|
+
.icon-align-right:before {
|
|
249
|
+
content: "\f038";
|
|
250
|
+
}
|
|
251
|
+
.icon-align-justify:before {
|
|
252
|
+
content: "\f039";
|
|
253
|
+
}
|
|
254
|
+
.icon-list:before {
|
|
255
|
+
content: "\f03a";
|
|
256
|
+
}
|
|
257
|
+
.icon-indent-left:before {
|
|
258
|
+
content: "\f03b";
|
|
259
|
+
}
|
|
260
|
+
.icon-indent-right:before {
|
|
261
|
+
content: "\f03c";
|
|
262
|
+
}
|
|
263
|
+
.icon-facetime-video:before {
|
|
264
|
+
content: "\f03d";
|
|
265
|
+
}
|
|
266
|
+
.icon-picture:before {
|
|
267
|
+
content: "\f03e";
|
|
268
|
+
}
|
|
269
|
+
.icon-pencil:before {
|
|
270
|
+
content: "\f040";
|
|
271
|
+
}
|
|
272
|
+
.icon-map-marker:before {
|
|
273
|
+
content: "\f041";
|
|
274
|
+
}
|
|
275
|
+
.icon-adjust:before {
|
|
276
|
+
content: "\f042";
|
|
277
|
+
}
|
|
278
|
+
.icon-tint:before {
|
|
279
|
+
content: "\f043";
|
|
280
|
+
}
|
|
281
|
+
.icon-edit:before {
|
|
282
|
+
content: "\f044";
|
|
283
|
+
}
|
|
284
|
+
.icon-share:before {
|
|
285
|
+
content: "\f045";
|
|
286
|
+
}
|
|
287
|
+
.icon-check:before {
|
|
288
|
+
content: "\f046";
|
|
289
|
+
}
|
|
290
|
+
.icon-move:before {
|
|
291
|
+
content: "\f047";
|
|
292
|
+
}
|
|
293
|
+
.icon-step-backward:before {
|
|
294
|
+
content: "\f048";
|
|
295
|
+
}
|
|
296
|
+
.icon-fast-backward:before {
|
|
297
|
+
content: "\f049";
|
|
298
|
+
}
|
|
299
|
+
.icon-backward:before {
|
|
300
|
+
content: "\f04a";
|
|
301
|
+
}
|
|
302
|
+
.icon-play:before {
|
|
303
|
+
content: "\f04b";
|
|
304
|
+
}
|
|
305
|
+
.icon-pause:before {
|
|
306
|
+
content: "\f04c";
|
|
307
|
+
}
|
|
308
|
+
.icon-stop:before {
|
|
309
|
+
content: "\f04d";
|
|
310
|
+
}
|
|
311
|
+
.icon-forward:before {
|
|
312
|
+
content: "\f04e";
|
|
313
|
+
}
|
|
314
|
+
.icon-fast-forward:before {
|
|
315
|
+
content: "\f050";
|
|
316
|
+
}
|
|
317
|
+
.icon-step-forward:before {
|
|
318
|
+
content: "\f051";
|
|
319
|
+
}
|
|
320
|
+
.icon-eject:before {
|
|
321
|
+
content: "\f052";
|
|
322
|
+
}
|
|
323
|
+
.icon-chevron-left:before {
|
|
324
|
+
content: "\f053";
|
|
325
|
+
}
|
|
326
|
+
.icon-chevron-right:before {
|
|
327
|
+
content: "\f054";
|
|
328
|
+
}
|
|
329
|
+
.icon-plus-sign:before {
|
|
330
|
+
content: "\f055";
|
|
331
|
+
}
|
|
332
|
+
.icon-minus-sign:before {
|
|
333
|
+
content: "\f056";
|
|
334
|
+
}
|
|
335
|
+
.icon-remove-sign:before {
|
|
336
|
+
content: "\f057";
|
|
337
|
+
}
|
|
338
|
+
.icon-ok-sign:before {
|
|
339
|
+
content: "\f058";
|
|
340
|
+
}
|
|
341
|
+
.icon-question-sign:before {
|
|
342
|
+
content: "\f059";
|
|
343
|
+
}
|
|
344
|
+
.icon-info-sign:before {
|
|
345
|
+
content: "\f05a";
|
|
346
|
+
}
|
|
347
|
+
.icon-screenshot:before {
|
|
348
|
+
content: "\f05b";
|
|
349
|
+
}
|
|
350
|
+
.icon-remove-circle:before {
|
|
351
|
+
content: "\f05c";
|
|
352
|
+
}
|
|
353
|
+
.icon-ok-circle:before {
|
|
354
|
+
content: "\f05d";
|
|
355
|
+
}
|
|
356
|
+
.icon-ban-circle:before {
|
|
357
|
+
content: "\f05e";
|
|
358
|
+
}
|
|
359
|
+
.icon-arrow-left:before {
|
|
360
|
+
content: "\f060";
|
|
361
|
+
}
|
|
362
|
+
.icon-arrow-right:before {
|
|
363
|
+
content: "\f061";
|
|
364
|
+
}
|
|
365
|
+
.icon-arrow-up:before {
|
|
366
|
+
content: "\f062";
|
|
367
|
+
}
|
|
368
|
+
.icon-arrow-down:before {
|
|
369
|
+
content: "\f063";
|
|
370
|
+
}
|
|
371
|
+
.icon-share-alt:before {
|
|
372
|
+
content: "\f064";
|
|
373
|
+
}
|
|
374
|
+
.icon-resize-full:before {
|
|
375
|
+
content: "\f065";
|
|
376
|
+
}
|
|
377
|
+
.icon-resize-small:before {
|
|
378
|
+
content: "\f066";
|
|
379
|
+
}
|
|
380
|
+
.icon-plus:before {
|
|
381
|
+
content: "\f067";
|
|
382
|
+
}
|
|
383
|
+
.icon-minus:before {
|
|
384
|
+
content: "\f068";
|
|
385
|
+
}
|
|
386
|
+
.icon-asterisk:before {
|
|
387
|
+
content: "\f069";
|
|
388
|
+
}
|
|
389
|
+
.icon-exclamation-sign:before {
|
|
390
|
+
content: "\f06a";
|
|
391
|
+
}
|
|
392
|
+
.icon-gift:before {
|
|
393
|
+
content: "\f06b";
|
|
394
|
+
}
|
|
395
|
+
.icon-leaf:before {
|
|
396
|
+
content: "\f06c";
|
|
397
|
+
}
|
|
398
|
+
.icon-fire:before {
|
|
399
|
+
content: "\f06d";
|
|
400
|
+
}
|
|
401
|
+
.icon-eye-open:before {
|
|
402
|
+
content: "\f06e";
|
|
403
|
+
}
|
|
404
|
+
.icon-eye-close:before {
|
|
405
|
+
content: "\f070";
|
|
406
|
+
}
|
|
407
|
+
.icon-warning-sign:before {
|
|
408
|
+
content: "\f071";
|
|
409
|
+
}
|
|
410
|
+
.icon-plane:before {
|
|
411
|
+
content: "\f072";
|
|
412
|
+
}
|
|
413
|
+
.icon-calendar:before {
|
|
414
|
+
content: "\f073";
|
|
415
|
+
}
|
|
416
|
+
.icon-random:before {
|
|
417
|
+
content: "\f074";
|
|
418
|
+
}
|
|
419
|
+
.icon-comment:before {
|
|
420
|
+
content: "\f075";
|
|
421
|
+
}
|
|
422
|
+
.icon-magnet:before {
|
|
423
|
+
content: "\f076";
|
|
424
|
+
}
|
|
425
|
+
.icon-chevron-up:before {
|
|
426
|
+
content: "\f077";
|
|
427
|
+
}
|
|
428
|
+
.icon-chevron-down:before {
|
|
429
|
+
content: "\f078";
|
|
430
|
+
}
|
|
431
|
+
.icon-retweet:before {
|
|
432
|
+
content: "\f079";
|
|
433
|
+
}
|
|
434
|
+
.icon-shopping-cart:before {
|
|
435
|
+
content: "\f07a";
|
|
436
|
+
}
|
|
437
|
+
.icon-folder-close:before {
|
|
438
|
+
content: "\f07b";
|
|
439
|
+
}
|
|
440
|
+
.icon-folder-open:before {
|
|
441
|
+
content: "\f07c";
|
|
442
|
+
}
|
|
443
|
+
.icon-resize-vertical:before {
|
|
444
|
+
content: "\f07d";
|
|
445
|
+
}
|
|
446
|
+
.icon-resize-horizontal:before {
|
|
447
|
+
content: "\f07e";
|
|
448
|
+
}
|
|
449
|
+
.icon-bar-chart:before {
|
|
450
|
+
content: "\f080";
|
|
451
|
+
}
|
|
452
|
+
.icon-twitter-sign:before {
|
|
453
|
+
content: "\f081";
|
|
454
|
+
}
|
|
455
|
+
.icon-facebook-sign:before {
|
|
456
|
+
content: "\f082";
|
|
457
|
+
}
|
|
458
|
+
.icon-camera-retro:before {
|
|
459
|
+
content: "\f083";
|
|
460
|
+
}
|
|
461
|
+
.icon-key:before {
|
|
462
|
+
content: "\f084";
|
|
463
|
+
}
|
|
464
|
+
.icon-cogs:before {
|
|
465
|
+
content: "\f085";
|
|
466
|
+
}
|
|
467
|
+
.icon-comments:before {
|
|
468
|
+
content: "\f086";
|
|
469
|
+
}
|
|
470
|
+
.icon-thumbs-up:before {
|
|
471
|
+
content: "\f087";
|
|
472
|
+
}
|
|
473
|
+
.icon-thumbs-down:before {
|
|
474
|
+
content: "\f088";
|
|
475
|
+
}
|
|
476
|
+
.icon-star-half:before {
|
|
477
|
+
content: "\f089";
|
|
478
|
+
}
|
|
479
|
+
.icon-heart-empty:before {
|
|
480
|
+
content: "\f08a";
|
|
481
|
+
}
|
|
482
|
+
.icon-signout:before {
|
|
483
|
+
content: "\f08b";
|
|
484
|
+
}
|
|
485
|
+
.icon-linkedin-sign:before {
|
|
486
|
+
content: "\f08c";
|
|
487
|
+
}
|
|
488
|
+
.icon-pushpin:before {
|
|
489
|
+
content: "\f08d";
|
|
490
|
+
}
|
|
491
|
+
.icon-external-link:before {
|
|
492
|
+
content: "\f08e";
|
|
493
|
+
}
|
|
494
|
+
.icon-signin:before {
|
|
495
|
+
content: "\f090";
|
|
496
|
+
}
|
|
497
|
+
.icon-trophy:before {
|
|
498
|
+
content: "\f091";
|
|
499
|
+
}
|
|
500
|
+
.icon-github-sign:before {
|
|
501
|
+
content: "\f092";
|
|
502
|
+
}
|
|
503
|
+
.icon-upload-alt:before {
|
|
504
|
+
content: "\f093";
|
|
505
|
+
}
|
|
506
|
+
.icon-lemon:before {
|
|
507
|
+
content: "\f094";
|
|
508
|
+
}
|
|
509
|
+
.icon-phone:before {
|
|
510
|
+
content: "\f095";
|
|
511
|
+
}
|
|
512
|
+
.icon-check-empty:before {
|
|
513
|
+
content: "\f096";
|
|
514
|
+
}
|
|
515
|
+
.icon-bookmark-empty:before {
|
|
516
|
+
content: "\f097";
|
|
517
|
+
}
|
|
518
|
+
.icon-phone-sign:before {
|
|
519
|
+
content: "\f098";
|
|
520
|
+
}
|
|
521
|
+
.icon-twitter:before {
|
|
522
|
+
content: "\f099";
|
|
523
|
+
}
|
|
524
|
+
.icon-facebook:before {
|
|
525
|
+
content: "\f09a";
|
|
526
|
+
}
|
|
527
|
+
.icon-github:before {
|
|
528
|
+
content: "\f09b";
|
|
529
|
+
}
|
|
530
|
+
.icon-unlock:before {
|
|
531
|
+
content: "\f09c";
|
|
532
|
+
}
|
|
533
|
+
.icon-credit-card:before {
|
|
534
|
+
content: "\f09d";
|
|
535
|
+
}
|
|
536
|
+
.icon-rss:before {
|
|
537
|
+
content: "\f09e";
|
|
538
|
+
}
|
|
539
|
+
.icon-hdd:before {
|
|
540
|
+
content: "\f0a0";
|
|
541
|
+
}
|
|
542
|
+
.icon-bullhorn:before {
|
|
543
|
+
content: "\f0a1";
|
|
544
|
+
}
|
|
545
|
+
.icon-bell:before {
|
|
546
|
+
content: "\f0a2";
|
|
547
|
+
}
|
|
548
|
+
.icon-certificate:before {
|
|
549
|
+
content: "\f0a3";
|
|
550
|
+
}
|
|
551
|
+
.icon-hand-right:before {
|
|
552
|
+
content: "\f0a4";
|
|
553
|
+
}
|
|
554
|
+
.icon-hand-left:before {
|
|
555
|
+
content: "\f0a5";
|
|
556
|
+
}
|
|
557
|
+
.icon-hand-up:before {
|
|
558
|
+
content: "\f0a6";
|
|
559
|
+
}
|
|
560
|
+
.icon-hand-down:before {
|
|
561
|
+
content: "\f0a7";
|
|
562
|
+
}
|
|
563
|
+
.icon-circle-arrow-left:before {
|
|
564
|
+
content: "\f0a8";
|
|
565
|
+
}
|
|
566
|
+
.icon-circle-arrow-right:before {
|
|
567
|
+
content: "\f0a9";
|
|
568
|
+
}
|
|
569
|
+
.icon-circle-arrow-up:before {
|
|
570
|
+
content: "\f0aa";
|
|
571
|
+
}
|
|
572
|
+
.icon-circle-arrow-down:before {
|
|
573
|
+
content: "\f0ab";
|
|
574
|
+
}
|
|
575
|
+
.icon-globe:before {
|
|
576
|
+
content: "\f0ac";
|
|
577
|
+
}
|
|
578
|
+
.icon-wrench:before {
|
|
579
|
+
content: "\f0ad";
|
|
580
|
+
}
|
|
581
|
+
.icon-tasks:before {
|
|
582
|
+
content: "\f0ae";
|
|
583
|
+
}
|
|
584
|
+
.icon-filter:before {
|
|
585
|
+
content: "\f0b0";
|
|
586
|
+
}
|
|
587
|
+
.icon-briefcase:before {
|
|
588
|
+
content: "\f0b1";
|
|
589
|
+
}
|
|
590
|
+
.icon-fullscreen:before {
|
|
591
|
+
content: "\f0b2";
|
|
592
|
+
}
|
|
593
|
+
.icon-group:before {
|
|
594
|
+
content: "\f0c0";
|
|
595
|
+
}
|
|
596
|
+
.icon-link:before {
|
|
597
|
+
content: "\f0c1";
|
|
598
|
+
}
|
|
599
|
+
.icon-cloud:before {
|
|
600
|
+
content: "\f0c2";
|
|
601
|
+
}
|
|
602
|
+
.icon-beaker:before {
|
|
603
|
+
content: "\f0c3";
|
|
604
|
+
}
|
|
605
|
+
.icon-cut:before {
|
|
606
|
+
content: "\f0c4";
|
|
607
|
+
}
|
|
608
|
+
.icon-copy:before {
|
|
609
|
+
content: "\f0c5";
|
|
610
|
+
}
|
|
611
|
+
.icon-paper-clip:before {
|
|
612
|
+
content: "\f0c6";
|
|
613
|
+
}
|
|
614
|
+
.icon-save:before {
|
|
615
|
+
content: "\f0c7";
|
|
616
|
+
}
|
|
617
|
+
.icon-sign-blank:before {
|
|
618
|
+
content: "\f0c8";
|
|
619
|
+
}
|
|
620
|
+
.icon-reorder:before {
|
|
621
|
+
content: "\f0c9";
|
|
622
|
+
}
|
|
623
|
+
.icon-list-ul:before {
|
|
624
|
+
content: "\f0ca";
|
|
625
|
+
}
|
|
626
|
+
.icon-list-ol:before {
|
|
627
|
+
content: "\f0cb";
|
|
628
|
+
}
|
|
629
|
+
.icon-strikethrough:before {
|
|
630
|
+
content: "\f0cc";
|
|
631
|
+
}
|
|
632
|
+
.icon-underline:before {
|
|
633
|
+
content: "\f0cd";
|
|
634
|
+
}
|
|
635
|
+
.icon-table:before {
|
|
636
|
+
content: "\f0ce";
|
|
637
|
+
}
|
|
638
|
+
.icon-table:before {
|
|
639
|
+
content: "\f0ce";
|
|
640
|
+
}
|
|
641
|
+
.icon-magic:before {
|
|
642
|
+
content: "\f0d0";
|
|
643
|
+
}
|
|
644
|
+
.icon-truck:before {
|
|
645
|
+
content: "\f0d1";
|
|
646
|
+
}
|
|
647
|
+
.icon-pinterest:before {
|
|
648
|
+
content: "\f0d2";
|
|
649
|
+
}
|
|
650
|
+
.icon-pinterest-sign:before {
|
|
651
|
+
content: "\f0d3";
|
|
652
|
+
}
|
|
653
|
+
.icon-google-plus-sign:before {
|
|
654
|
+
content: "\f0d4";
|
|
655
|
+
}
|
|
656
|
+
.icon-google-plus:before {
|
|
657
|
+
content: "\f0d5";
|
|
658
|
+
}
|
|
659
|
+
.icon-money:before {
|
|
660
|
+
content: "\f0d6";
|
|
661
|
+
}
|
|
662
|
+
.icon-caret-down:before {
|
|
663
|
+
content: "\f0d7";
|
|
664
|
+
}
|
|
665
|
+
.icon-caret-up:before {
|
|
666
|
+
content: "\f0d8";
|
|
667
|
+
}
|
|
668
|
+
.icon-caret-left:before {
|
|
669
|
+
content: "\f0d9";
|
|
670
|
+
}
|
|
671
|
+
.icon-caret-right:before {
|
|
672
|
+
content: "\f0da";
|
|
673
|
+
}
|
|
674
|
+
.icon-columns:before {
|
|
675
|
+
content: "\f0db";
|
|
676
|
+
}
|
|
677
|
+
.icon-sort:before {
|
|
678
|
+
content: "\f0dc";
|
|
679
|
+
}
|
|
680
|
+
.icon-sort-down:before {
|
|
681
|
+
content: "\f0dd";
|
|
682
|
+
}
|
|
683
|
+
.icon-sort-up:before {
|
|
684
|
+
content: "\f0de";
|
|
685
|
+
}
|
|
686
|
+
.icon-envelope-alt:before {
|
|
687
|
+
content: "\f0e0";
|
|
688
|
+
}
|
|
689
|
+
.icon-linkedin:before {
|
|
690
|
+
content: "\f0e1";
|
|
691
|
+
}
|
|
692
|
+
.icon-undo:before {
|
|
693
|
+
content: "\f0e2";
|
|
694
|
+
}
|
|
695
|
+
.icon-legal:before {
|
|
696
|
+
content: "\f0e3";
|
|
697
|
+
}
|
|
698
|
+
.icon-dashboard:before {
|
|
699
|
+
content: "\f0e4";
|
|
700
|
+
}
|
|
701
|
+
.icon-comment-alt:before {
|
|
702
|
+
content: "\f0e5";
|
|
703
|
+
}
|
|
704
|
+
.icon-comments-alt:before {
|
|
705
|
+
content: "\f0e6";
|
|
706
|
+
}
|
|
707
|
+
.icon-bolt:before {
|
|
708
|
+
content: "\f0e7";
|
|
709
|
+
}
|
|
710
|
+
.icon-sitemap:before {
|
|
711
|
+
content: "\f0e8";
|
|
712
|
+
}
|
|
713
|
+
.icon-umbrella:before {
|
|
714
|
+
content: "\f0e9";
|
|
715
|
+
}
|
|
716
|
+
.icon-paste:before {
|
|
717
|
+
content: "\f0ea";
|
|
718
|
+
}
|
|
719
|
+
.icon-user-md:before {
|
|
720
|
+
content: "\f200";
|
|
721
|
+
}
|
|
722
|
+
.icon-apple-logo:before {
|
|
723
|
+
content: "\f500";
|
|
724
|
+
}
|
|
725
|
+
.icon-windows-8:before {
|
|
726
|
+
content: "\f501";
|
|
727
|
+
}
|
|
728
|
+
.icon-js-fiddle:before {
|
|
729
|
+
content: "\f502";
|
|
730
|
+
}
|
|
731
|
+
.icon-skype:before {
|
|
732
|
+
content: "\f503";
|
|
733
|
+
}
|
|
734
|
+
.icon-youtube-sign:before {
|
|
735
|
+
content: "\f504";
|
|
736
|
+
}
|
|
737
|
+
.icon-youtube:before {
|
|
738
|
+
content: "\f505";
|
|
739
|
+
}
|
|
740
|
+
.icon-vimeo-sign:before {
|
|
741
|
+
content: "\f506";
|
|
742
|
+
}
|
|
743
|
+
.icon-vimeo:before {
|
|
744
|
+
content: "\f507";
|
|
745
|
+
}
|
|
746
|
+
.icon-lastfm-sign:before {
|
|
747
|
+
content: "\f508";
|
|
748
|
+
}
|
|
749
|
+
.icon-lastfm:before {
|
|
750
|
+
content: "\f509";
|
|
751
|
+
}
|
|
752
|
+
.icon-rss-sign:before {
|
|
753
|
+
content: "\f50a";
|
|
754
|
+
}
|
|
755
|
+
.icon-reddit:before {
|
|
756
|
+
content: "\f50b";
|
|
757
|
+
}
|
|
758
|
+
.icon-delicious-sign:before {
|
|
759
|
+
content: "\f50c";
|
|
760
|
+
}
|
|
761
|
+
.icon-wordpress-sign:before {
|
|
762
|
+
content: "\f50d";
|
|
763
|
+
}
|
|
764
|
+
.icon-wordpress:before {
|
|
765
|
+
content: "\f50e";
|
|
766
|
+
}
|
|
767
|
+
.icon-git-fork:before {
|
|
768
|
+
content: "\f50f";
|
|
769
|
+
}
|
|
770
|
+
.icon-blogger-sign:before {
|
|
771
|
+
content: "\f510";
|
|
772
|
+
}
|
|
773
|
+
.icon-blogger:before {
|
|
774
|
+
content: "\f511";
|
|
775
|
+
}
|
|
776
|
+
.icon-tumblr-sign:before {
|
|
777
|
+
content: "\f512";
|
|
778
|
+
}
|
|
779
|
+
.icon-tumblr:before {
|
|
780
|
+
content: "\f513";
|
|
781
|
+
}
|
|
782
|
+
.icon-flickr-sign:before {
|
|
783
|
+
content: "\f514";
|
|
784
|
+
}
|
|
785
|
+
.icon-flickr:before {
|
|
786
|
+
content: "\f515";
|
|
787
|
+
}
|
|
788
|
+
.icon-picasa-sign:before {
|
|
789
|
+
content: "\f516";
|
|
790
|
+
}
|
|
791
|
+
.icon-picasa:before {
|
|
792
|
+
content: "\f517";
|
|
793
|
+
}
|
|
794
|
+
.icon-amazon-sign:before {
|
|
795
|
+
content: "\f518";
|
|
796
|
+
}
|
|
797
|
+
.icon-amazon:before {
|
|
798
|
+
content: "\f519";
|
|
799
|
+
}
|
|
800
|
+
.icon-yelp-sign:before {
|
|
801
|
+
content: "\f51a";
|
|
802
|
+
}
|
|
803
|
+
.icon-yelp:before {
|
|
804
|
+
content: "\f51b";
|
|
805
|
+
}
|
|
806
|
+
.icon-soundcloud:before {
|
|
807
|
+
content: "\f51c";
|
|
808
|
+
}
|
|
809
|
+
.icon-spotify:before {
|
|
810
|
+
content: "\f51d";
|
|
811
|
+
}
|
|
812
|
+
.icon-yahoo-sign:before {
|
|
813
|
+
content: "\f520";
|
|
814
|
+
}
|
|
815
|
+
.icon-yahoo:before {
|
|
816
|
+
content: "\f521";
|
|
817
|
+
}
|
|
818
|
+
.icon-evernote-sign:before {
|
|
819
|
+
content: "\f522";
|
|
820
|
+
}
|
|
821
|
+
.icon-evernote:before {
|
|
822
|
+
content: "\f523";
|
|
823
|
+
}
|
|
824
|
+
.icon-google-sign:before {
|
|
825
|
+
content: "\f524";
|
|
826
|
+
}
|
|
827
|
+
.icon-google:before {
|
|
828
|
+
content: "\f525";
|
|
829
|
+
}
|
|
830
|
+
.icon-hacker-news:before {
|
|
831
|
+
content: "\f526";
|
|
832
|
+
}
|
|
833
|
+
.icon-map:before {
|
|
834
|
+
content: "\f529";
|
|
835
|
+
}
|
|
836
|
+
.icon-bus-sign:before {
|
|
837
|
+
content: "\f52a";
|
|
838
|
+
}
|
|
839
|
+
.icon-bike-sign:before {
|
|
840
|
+
content: "\f52b";
|
|
841
|
+
}
|
|
842
|
+
.icon-car-sign:before {
|
|
843
|
+
content: "\f52c";
|
|
844
|
+
}
|
|
845
|
+
.icon-taxi-sign:before {
|
|
846
|
+
content: "\f52d";
|
|
847
|
+
}
|
|
848
|
+
.icon-truck-sign:before {
|
|
849
|
+
content: "\f52e";
|
|
850
|
+
}
|
|
851
|
+
.icon-handicap-sign:before {
|
|
852
|
+
content: "\f52f";
|
|
853
|
+
}
|