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,2382 @@
|
|
|
1
|
+
html,
|
|
2
|
+
html .halflings {
|
|
3
|
+
-webkit-font-smoothing: antialiased !important;
|
|
4
|
+
}
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: 'Glyphicons';
|
|
7
|
+
src: url('../assets/glyphicons-regular.eot');
|
|
8
|
+
src: url('../assets/glyphicons-regular-0.eot#iefix') format('embedded-opentype'), url('../assets/glyphicons-regular.woff') format('woff'), url('../assets/glyphicons-regular.ttf') format('truetype'), url('../assets/glyphicons-regular.svg#glyphicons-halflingsregular') format('svg');
|
|
9
|
+
font-weight: normal;
|
|
10
|
+
font-style: normal;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
[class^="glyphicons-"]:before,
|
|
16
|
+
[class*=" glyphicons-"]:before {
|
|
17
|
+
font-family: 'Glyphicons';
|
|
18
|
+
font: 'Glyphicons';
|
|
19
|
+
font-weight: normal;
|
|
20
|
+
font-style: normal;
|
|
21
|
+
display: inline-block;
|
|
22
|
+
text-decoration: inherit;
|
|
23
|
+
font-size: 0.85em;
|
|
24
|
+
}
|
|
25
|
+
a [class^="glyphicons-"],
|
|
26
|
+
a [class*=" glyphicons-"] {
|
|
27
|
+
display: inline-block;
|
|
28
|
+
text-decoration: inherit;
|
|
29
|
+
}
|
|
30
|
+
/* makes the font 33% larger relative to the icon container */
|
|
31
|
+
.icon-large:before {
|
|
32
|
+
vertical-align: middle;
|
|
33
|
+
font-size: 1.3333333333333333em;
|
|
34
|
+
}
|
|
35
|
+
.btn [class^="glyphicons-"],
|
|
36
|
+
.nav-tabs [class^="glyphicons-"],
|
|
37
|
+
.btn [class*=" glyphicons-"],
|
|
38
|
+
.nav-tabs [class*=" glyphicons-"] {
|
|
39
|
+
/* keeps button heights with and without icons the same */
|
|
40
|
+
line-height: .85em;
|
|
41
|
+
}
|
|
42
|
+
li [class^="glyphicons-"],
|
|
43
|
+
li [class*=" glyphicons-"] {
|
|
44
|
+
display: inline-block;
|
|
45
|
+
width: 1.25em;
|
|
46
|
+
text-align: center;
|
|
47
|
+
}
|
|
48
|
+
li .icon-large:before,
|
|
49
|
+
li .icon-large:before {
|
|
50
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
|
51
|
+
|
|
52
|
+
width: 1.875em;
|
|
53
|
+
}
|
|
54
|
+
ul.icons {
|
|
55
|
+
list-style-type: none;
|
|
56
|
+
margin-left: 2em;
|
|
57
|
+
text-indent: -0.8em;
|
|
58
|
+
}
|
|
59
|
+
ul.icons li [class^="glyphicons-"],
|
|
60
|
+
ul.icons li [class*=" glyphicons-"] {
|
|
61
|
+
width: 1.875em;
|
|
62
|
+
}
|
|
63
|
+
ul.icons li .icon-large:before,
|
|
64
|
+
ul.icons li .icon-large:before {
|
|
65
|
+
/* 1.5 increased font size for icon-large * 1.25 width */
|
|
66
|
+
|
|
67
|
+
vertical-align: initial;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
/*
|
|
72
|
+
.glyphicons {
|
|
73
|
+
display: inline-block;
|
|
74
|
+
position: relative;
|
|
75
|
+
padding: 5px 0 5px 35px;
|
|
76
|
+
color: #1d1d1b;
|
|
77
|
+
text-decoration: none;
|
|
78
|
+
*display: inline;
|
|
79
|
+
*zoom: 1;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.glyphicons:before {
|
|
83
|
+
position: absolute;
|
|
84
|
+
left: 0;
|
|
85
|
+
top: 0;
|
|
86
|
+
font: 24px/1em 'Glyphicons';
|
|
87
|
+
font-style: normal;
|
|
88
|
+
color: #1d1d1b;
|
|
89
|
+
}
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
.glyphicons-white:before {
|
|
95
|
+
color: #fff;
|
|
96
|
+
}
|
|
97
|
+
.glyphicons-glass:before {
|
|
98
|
+
content: "\e001";
|
|
99
|
+
}
|
|
100
|
+
.glyphicons-leaf:before {
|
|
101
|
+
content: "\e002";
|
|
102
|
+
}
|
|
103
|
+
.glyphicons-dog:before {
|
|
104
|
+
content: "\e003";
|
|
105
|
+
}
|
|
106
|
+
.glyphicons-user:before {
|
|
107
|
+
content: "\e004";
|
|
108
|
+
}
|
|
109
|
+
.glyphicons-girl:before {
|
|
110
|
+
content: "\e005";
|
|
111
|
+
}
|
|
112
|
+
.glyphicons-car:before {
|
|
113
|
+
content: "\e006";
|
|
114
|
+
}
|
|
115
|
+
.glyphicons-user-add:before {
|
|
116
|
+
content: "\e007";
|
|
117
|
+
}
|
|
118
|
+
.glyphicons-user-remove:before {
|
|
119
|
+
content: "\e008";
|
|
120
|
+
}
|
|
121
|
+
.glyphicons-film:before {
|
|
122
|
+
content: "\e009";
|
|
123
|
+
}
|
|
124
|
+
.glyphicons-magic:before {
|
|
125
|
+
content: "\e010";
|
|
126
|
+
}
|
|
127
|
+
.glyphicons-envelope:before {
|
|
128
|
+
content: "\2709";
|
|
129
|
+
}
|
|
130
|
+
.glyphicons-camera:before {
|
|
131
|
+
content: "\e012";
|
|
132
|
+
}
|
|
133
|
+
.glyphicons-heart:before {
|
|
134
|
+
content: "\e013";
|
|
135
|
+
}
|
|
136
|
+
.glyphicons-beach-umbrella:before {
|
|
137
|
+
content: "\e014";
|
|
138
|
+
}
|
|
139
|
+
.glyphicons-train:before {
|
|
140
|
+
content: "\e015";
|
|
141
|
+
}
|
|
142
|
+
.glyphicons-print:before {
|
|
143
|
+
content: "\e016";
|
|
144
|
+
}
|
|
145
|
+
.glyphicons-bin:before {
|
|
146
|
+
content: "\e017";
|
|
147
|
+
}
|
|
148
|
+
.glyphicons-music:before {
|
|
149
|
+
content: "\e018";
|
|
150
|
+
}
|
|
151
|
+
.glyphicons-note:before {
|
|
152
|
+
content: "\e019";
|
|
153
|
+
}
|
|
154
|
+
.glyphicons-heart-empty:before {
|
|
155
|
+
content: "\e020";
|
|
156
|
+
}
|
|
157
|
+
.glyphicons-home:before {
|
|
158
|
+
content: "\e021";
|
|
159
|
+
}
|
|
160
|
+
.glyphicons-snowflake:before {
|
|
161
|
+
content: "\2744";
|
|
162
|
+
}
|
|
163
|
+
.glyphicons-fire:before {
|
|
164
|
+
content: "\e023";
|
|
165
|
+
}
|
|
166
|
+
.glyphicons-magnet:before {
|
|
167
|
+
content: "\e024";
|
|
168
|
+
}
|
|
169
|
+
.glyphicons-parents:before {
|
|
170
|
+
content: "\e025";
|
|
171
|
+
}
|
|
172
|
+
.glyphicons-binoculars:before {
|
|
173
|
+
content: "\e026";
|
|
174
|
+
}
|
|
175
|
+
.glyphicons-road:before {
|
|
176
|
+
content: "\e027";
|
|
177
|
+
}
|
|
178
|
+
.glyphicons-search:before {
|
|
179
|
+
content: "\e028";
|
|
180
|
+
}
|
|
181
|
+
.glyphicons-cars:before {
|
|
182
|
+
content: "\e029";
|
|
183
|
+
}
|
|
184
|
+
.glyphicons-notes-2:before {
|
|
185
|
+
content: "\e030";
|
|
186
|
+
}
|
|
187
|
+
.glyphicons-pencil:before {
|
|
188
|
+
content: "\270F";
|
|
189
|
+
}
|
|
190
|
+
.glyphicons-bus:before {
|
|
191
|
+
content: "\e032";
|
|
192
|
+
}
|
|
193
|
+
.glyphicons-wifi-alt:before {
|
|
194
|
+
content: "\e033";
|
|
195
|
+
}
|
|
196
|
+
.glyphicons-luggage:before {
|
|
197
|
+
content: "\e034";
|
|
198
|
+
}
|
|
199
|
+
.glyphicons-old-man:before {
|
|
200
|
+
content: "\e035";
|
|
201
|
+
}
|
|
202
|
+
.glyphicons-woman:before {
|
|
203
|
+
content: "\e036";
|
|
204
|
+
}
|
|
205
|
+
.glyphicons-file:before {
|
|
206
|
+
content: "\e037";
|
|
207
|
+
}
|
|
208
|
+
.glyphicons-coins:before {
|
|
209
|
+
content: "\e038";
|
|
210
|
+
}
|
|
211
|
+
.glyphicons-airplane:before {
|
|
212
|
+
content: "\2708";
|
|
213
|
+
}
|
|
214
|
+
.glyphicons-notes:before {
|
|
215
|
+
content: "\e040";
|
|
216
|
+
}
|
|
217
|
+
.glyphicons-stats:before {
|
|
218
|
+
content: "\e041";
|
|
219
|
+
}
|
|
220
|
+
.glyphicons-charts:before {
|
|
221
|
+
content: "\e042";
|
|
222
|
+
}
|
|
223
|
+
.glyphicons-pie-chart:before {
|
|
224
|
+
content: "\e043";
|
|
225
|
+
}
|
|
226
|
+
.glyphicons-group:before {
|
|
227
|
+
content: "\e044";
|
|
228
|
+
}
|
|
229
|
+
.glyphicons-keys:before {
|
|
230
|
+
content: "\e045";
|
|
231
|
+
}
|
|
232
|
+
.glyphicons-calendar:before {
|
|
233
|
+
content: "\e046";
|
|
234
|
+
}
|
|
235
|
+
.glyphicons-router:before {
|
|
236
|
+
content: "\e047";
|
|
237
|
+
}
|
|
238
|
+
.glyphicons-camera-small:before {
|
|
239
|
+
content: "\e048";
|
|
240
|
+
}
|
|
241
|
+
.glyphicons-dislikes:before {
|
|
242
|
+
content: "\e049";
|
|
243
|
+
}
|
|
244
|
+
.glyphicons-star:before {
|
|
245
|
+
content: "\e050";
|
|
246
|
+
}
|
|
247
|
+
.glyphicons-link:before {
|
|
248
|
+
content: "\e051";
|
|
249
|
+
}
|
|
250
|
+
.glyphicons-eye-open:before {
|
|
251
|
+
content: "\e052";
|
|
252
|
+
}
|
|
253
|
+
.glyphicons-eye-close:before {
|
|
254
|
+
content: "\e053";
|
|
255
|
+
}
|
|
256
|
+
.glyphicons-alarm:before {
|
|
257
|
+
content: "\e054";
|
|
258
|
+
}
|
|
259
|
+
.glyphicons-clock:before {
|
|
260
|
+
content: "\e055";
|
|
261
|
+
}
|
|
262
|
+
.glyphicons-stopwatch:before {
|
|
263
|
+
content: "\e056";
|
|
264
|
+
}
|
|
265
|
+
.glyphicons-projector:before {
|
|
266
|
+
content: "\e057";
|
|
267
|
+
}
|
|
268
|
+
.glyphicons-history:before {
|
|
269
|
+
content: "\e058";
|
|
270
|
+
}
|
|
271
|
+
.glyphicons-truck:before {
|
|
272
|
+
content: "\e059";
|
|
273
|
+
}
|
|
274
|
+
.glyphicons-cargo:before {
|
|
275
|
+
content: "\e060";
|
|
276
|
+
}
|
|
277
|
+
.glyphicons-compass:before {
|
|
278
|
+
content: "\e061";
|
|
279
|
+
}
|
|
280
|
+
.glyphicons-keynote:before {
|
|
281
|
+
content: "\e062";
|
|
282
|
+
}
|
|
283
|
+
.glyphicons-paperclip:before {
|
|
284
|
+
content: "\e063";
|
|
285
|
+
}
|
|
286
|
+
.glyphicons-power:before {
|
|
287
|
+
content: "\e064";
|
|
288
|
+
}
|
|
289
|
+
.glyphicons-lightbulb:before {
|
|
290
|
+
content: "\e065";
|
|
291
|
+
}
|
|
292
|
+
.glyphicons-tag:before {
|
|
293
|
+
content: "\e066";
|
|
294
|
+
}
|
|
295
|
+
.glyphicons-tags:before {
|
|
296
|
+
content: "\e067";
|
|
297
|
+
}
|
|
298
|
+
.glyphicons-cleaning:before {
|
|
299
|
+
content: "\e068";
|
|
300
|
+
}
|
|
301
|
+
.glyphicons-ruller:before {
|
|
302
|
+
content: "\e069";
|
|
303
|
+
}
|
|
304
|
+
.glyphicons-gift:before {
|
|
305
|
+
content: "\e070";
|
|
306
|
+
}
|
|
307
|
+
.glyphicons-umbrella:before {
|
|
308
|
+
content: "\2602";
|
|
309
|
+
}
|
|
310
|
+
.glyphicons-book:before {
|
|
311
|
+
content: "\e072";
|
|
312
|
+
}
|
|
313
|
+
.glyphicons-bookmark:before {
|
|
314
|
+
content: "\e073";
|
|
315
|
+
}
|
|
316
|
+
.glyphicons-wifi:before {
|
|
317
|
+
content: "\e074";
|
|
318
|
+
}
|
|
319
|
+
.glyphicons-cup:before {
|
|
320
|
+
content: "\e075";
|
|
321
|
+
}
|
|
322
|
+
.glyphicons-stroller:before {
|
|
323
|
+
content: "\e076";
|
|
324
|
+
}
|
|
325
|
+
.glyphicons-headphones:before {
|
|
326
|
+
content: "\e077";
|
|
327
|
+
}
|
|
328
|
+
.glyphicons-headset:before {
|
|
329
|
+
content: "\e078";
|
|
330
|
+
}
|
|
331
|
+
.glyphicons-warning-sign:before {
|
|
332
|
+
content: "\e079";
|
|
333
|
+
}
|
|
334
|
+
.glyphicons-signal:before {
|
|
335
|
+
content: "\e080";
|
|
336
|
+
}
|
|
337
|
+
.glyphicons-retweet:before {
|
|
338
|
+
content: "\e081";
|
|
339
|
+
}
|
|
340
|
+
.glyphicons-refresh:before {
|
|
341
|
+
content: "\e082";
|
|
342
|
+
}
|
|
343
|
+
.glyphicons-roundabout:before {
|
|
344
|
+
content: "\e083";
|
|
345
|
+
}
|
|
346
|
+
.glyphicons-random:before {
|
|
347
|
+
content: "\e084";
|
|
348
|
+
}
|
|
349
|
+
.glyphicons-heat:before {
|
|
350
|
+
content: "\e085";
|
|
351
|
+
}
|
|
352
|
+
.glyphicons-repeat:before {
|
|
353
|
+
content: "\e086";
|
|
354
|
+
}
|
|
355
|
+
.glyphicons-display:before {
|
|
356
|
+
content: "\e087";
|
|
357
|
+
}
|
|
358
|
+
.glyphicons-log-book:before {
|
|
359
|
+
content: "\e088";
|
|
360
|
+
}
|
|
361
|
+
.glyphicons-adress-book:before {
|
|
362
|
+
content: "\e089";
|
|
363
|
+
}
|
|
364
|
+
.glyphicons-building:before {
|
|
365
|
+
content: "\e090";
|
|
366
|
+
}
|
|
367
|
+
.glyphicons-eyedropper:before {
|
|
368
|
+
content: "\e091";
|
|
369
|
+
}
|
|
370
|
+
.glyphicons-adjust:before {
|
|
371
|
+
content: "\e092";
|
|
372
|
+
}
|
|
373
|
+
.glyphicons-tint:before {
|
|
374
|
+
content: "\e093";
|
|
375
|
+
}
|
|
376
|
+
.glyphicons-crop:before {
|
|
377
|
+
content: "\e094";
|
|
378
|
+
}
|
|
379
|
+
.glyphicons-vector-path-square:before {
|
|
380
|
+
content: "\e095";
|
|
381
|
+
}
|
|
382
|
+
.glyphicons-vector-path-circle:before {
|
|
383
|
+
content: "\e096";
|
|
384
|
+
}
|
|
385
|
+
.glyphicons-vector-path-polygon:before {
|
|
386
|
+
content: "\e097";
|
|
387
|
+
}
|
|
388
|
+
.glyphicons-vector-path-line:before {
|
|
389
|
+
content: "\e098";
|
|
390
|
+
}
|
|
391
|
+
.glyphicons-vector-path-curve:before {
|
|
392
|
+
content: "\e099";
|
|
393
|
+
}
|
|
394
|
+
.glyphicons-vector-path-all:before {
|
|
395
|
+
content: "\e100";
|
|
396
|
+
}
|
|
397
|
+
.glyphicons-font:before {
|
|
398
|
+
content: "\e101";
|
|
399
|
+
}
|
|
400
|
+
.glyphicons-italic:before {
|
|
401
|
+
content: "\e102";
|
|
402
|
+
}
|
|
403
|
+
.glyphicons-bold:before {
|
|
404
|
+
content: "\e103";
|
|
405
|
+
}
|
|
406
|
+
.glyphicons-text-underline:before {
|
|
407
|
+
content: "\e104";
|
|
408
|
+
}
|
|
409
|
+
.glyphicons-text-strike:before {
|
|
410
|
+
content: "\e105";
|
|
411
|
+
}
|
|
412
|
+
.glyphicons-text-height:before {
|
|
413
|
+
content: "\e106";
|
|
414
|
+
}
|
|
415
|
+
.glyphicons-text-width:before {
|
|
416
|
+
content: "\e107";
|
|
417
|
+
}
|
|
418
|
+
.glyphicons-text-resize:before {
|
|
419
|
+
content: "\e108";
|
|
420
|
+
}
|
|
421
|
+
.glyphicons-left-indent:before {
|
|
422
|
+
content: "\e109";
|
|
423
|
+
}
|
|
424
|
+
.glyphicons-right-indent:before {
|
|
425
|
+
content: "\e110";
|
|
426
|
+
}
|
|
427
|
+
.glyphicons-align-left:before {
|
|
428
|
+
content: "\e111";
|
|
429
|
+
}
|
|
430
|
+
.glyphicons-align-center:before {
|
|
431
|
+
content: "\e112";
|
|
432
|
+
}
|
|
433
|
+
.glyphicons-align-right:before {
|
|
434
|
+
content: "\e113";
|
|
435
|
+
}
|
|
436
|
+
.glyphicons-justify:before {
|
|
437
|
+
content: "\e114";
|
|
438
|
+
}
|
|
439
|
+
.glyphicons-list:before {
|
|
440
|
+
content: "\e115";
|
|
441
|
+
}
|
|
442
|
+
.glyphicons-text-smaller:before {
|
|
443
|
+
content: "\e116";
|
|
444
|
+
}
|
|
445
|
+
.glyphicons-text-bigger:before {
|
|
446
|
+
content: "\e117";
|
|
447
|
+
}
|
|
448
|
+
.glyphicons-embed:before {
|
|
449
|
+
content: "\e118";
|
|
450
|
+
}
|
|
451
|
+
.glyphicons-embed-close:before {
|
|
452
|
+
content: "\e119";
|
|
453
|
+
}
|
|
454
|
+
.glyphicons-table:before {
|
|
455
|
+
content: "\e120";
|
|
456
|
+
}
|
|
457
|
+
.glyphicons-message-full:before {
|
|
458
|
+
content: "\e121";
|
|
459
|
+
}
|
|
460
|
+
.glyphicons-message-empty:before {
|
|
461
|
+
content: "\e122";
|
|
462
|
+
}
|
|
463
|
+
.glyphicons-message-in:before {
|
|
464
|
+
content: "\e123";
|
|
465
|
+
}
|
|
466
|
+
.glyphicons-message-out:before {
|
|
467
|
+
content: "\e124";
|
|
468
|
+
}
|
|
469
|
+
.glyphicons-message-plus:before {
|
|
470
|
+
content: "\e125";
|
|
471
|
+
}
|
|
472
|
+
.glyphicons-message-minus:before {
|
|
473
|
+
content: "\e126";
|
|
474
|
+
}
|
|
475
|
+
.glyphicons-message-ban:before {
|
|
476
|
+
content: "\e127";
|
|
477
|
+
}
|
|
478
|
+
.glyphicons-message-flag:before {
|
|
479
|
+
content: "\e128";
|
|
480
|
+
}
|
|
481
|
+
.glyphicons-message-lock:before {
|
|
482
|
+
content: "\e129";
|
|
483
|
+
}
|
|
484
|
+
.glyphicons-message-new:before {
|
|
485
|
+
content: "\e130";
|
|
486
|
+
}
|
|
487
|
+
.glyphicons-inbox:before {
|
|
488
|
+
content: "\e131";
|
|
489
|
+
}
|
|
490
|
+
.glyphicons-inbox-plus:before {
|
|
491
|
+
content: "\e132";
|
|
492
|
+
}
|
|
493
|
+
.glyphicons-inbox-minus:before {
|
|
494
|
+
content: "\e133";
|
|
495
|
+
}
|
|
496
|
+
.glyphicons-inbox-lock:before {
|
|
497
|
+
content: "\e134";
|
|
498
|
+
}
|
|
499
|
+
.glyphicons-inbox-in:before {
|
|
500
|
+
content: "\e135";
|
|
501
|
+
}
|
|
502
|
+
.glyphicons-inbox-out:before {
|
|
503
|
+
content: "\e136";
|
|
504
|
+
}
|
|
505
|
+
.glyphicons-cogwheel:before {
|
|
506
|
+
content: "\e137";
|
|
507
|
+
}
|
|
508
|
+
.glyphicons-cogwheels:before {
|
|
509
|
+
content: "\e138";
|
|
510
|
+
}
|
|
511
|
+
.glyphicons-picture:before {
|
|
512
|
+
content: "\e139";
|
|
513
|
+
}
|
|
514
|
+
.glyphicons-adjust-alt:before {
|
|
515
|
+
content: "\e140";
|
|
516
|
+
}
|
|
517
|
+
.glyphicons-database-lock:before {
|
|
518
|
+
content: "\e141";
|
|
519
|
+
}
|
|
520
|
+
.glyphicons-database-plus:before {
|
|
521
|
+
content: "\e142";
|
|
522
|
+
}
|
|
523
|
+
.glyphicons-database-minus:before {
|
|
524
|
+
content: "\e143";
|
|
525
|
+
}
|
|
526
|
+
.glyphicons-database-ban:before {
|
|
527
|
+
content: "\e144";
|
|
528
|
+
}
|
|
529
|
+
.glyphicons-folder-open:before {
|
|
530
|
+
content: "\e145";
|
|
531
|
+
}
|
|
532
|
+
.glyphicons-folder-plus:before {
|
|
533
|
+
content: "\e146";
|
|
534
|
+
}
|
|
535
|
+
.glyphicons-folder-minus:before {
|
|
536
|
+
content: "\e147";
|
|
537
|
+
}
|
|
538
|
+
.glyphicons-folder-lock:before {
|
|
539
|
+
content: "\e148";
|
|
540
|
+
}
|
|
541
|
+
.glyphicons-folder-flag:before {
|
|
542
|
+
content: "\e149";
|
|
543
|
+
}
|
|
544
|
+
.glyphicons-folder-new:before {
|
|
545
|
+
content: "\e150";
|
|
546
|
+
}
|
|
547
|
+
.glyphicons-edit:before {
|
|
548
|
+
content: "\e151";
|
|
549
|
+
}
|
|
550
|
+
.glyphicons-new-window:before {
|
|
551
|
+
content: "\e152";
|
|
552
|
+
}
|
|
553
|
+
.glyphicons-check:before {
|
|
554
|
+
content: "\e153";
|
|
555
|
+
}
|
|
556
|
+
.glyphicons-unchecked:before {
|
|
557
|
+
content: "\e154";
|
|
558
|
+
}
|
|
559
|
+
.glyphicons-more-windows:before {
|
|
560
|
+
content: "\e155";
|
|
561
|
+
}
|
|
562
|
+
.glyphicons-show-big-thumbnails:before {
|
|
563
|
+
content: "\e156";
|
|
564
|
+
}
|
|
565
|
+
.glyphicons-show-thumbnails:before {
|
|
566
|
+
content: "\e157";
|
|
567
|
+
}
|
|
568
|
+
.glyphicons-show-thumbnails-with-lines:before {
|
|
569
|
+
content: "\e158";
|
|
570
|
+
}
|
|
571
|
+
.glyphicons-show-lines:before {
|
|
572
|
+
content: "\e159";
|
|
573
|
+
}
|
|
574
|
+
.glyphicons-playlist:before {
|
|
575
|
+
content: "\e160";
|
|
576
|
+
}
|
|
577
|
+
.glyphicons-imac:before {
|
|
578
|
+
content: "\e161";
|
|
579
|
+
}
|
|
580
|
+
.glyphicons-macbook:before {
|
|
581
|
+
content: "\e162";
|
|
582
|
+
}
|
|
583
|
+
.glyphicons-ipad:before {
|
|
584
|
+
content: "\e163";
|
|
585
|
+
}
|
|
586
|
+
.glyphicons-iphone:before {
|
|
587
|
+
content: "\e164";
|
|
588
|
+
}
|
|
589
|
+
.glyphicons-iphone-transfer:before {
|
|
590
|
+
content: "\e165";
|
|
591
|
+
}
|
|
592
|
+
.glyphicons-iphone-exchange:before {
|
|
593
|
+
content: "\e166";
|
|
594
|
+
}
|
|
595
|
+
.glyphicons-ipod:before {
|
|
596
|
+
content: "\e167";
|
|
597
|
+
}
|
|
598
|
+
.glyphicons-ipod-shuffle:before {
|
|
599
|
+
content: "\e168";
|
|
600
|
+
}
|
|
601
|
+
.glyphicons-ear-plugs:before {
|
|
602
|
+
content: "\e169";
|
|
603
|
+
}
|
|
604
|
+
.glyphicons-phone:before {
|
|
605
|
+
content: "\e170";
|
|
606
|
+
}
|
|
607
|
+
.glyphicons-step-backward:before {
|
|
608
|
+
content: "\e171";
|
|
609
|
+
}
|
|
610
|
+
.glyphicons-fast-backward:before {
|
|
611
|
+
content: "\e172";
|
|
612
|
+
}
|
|
613
|
+
.glyphicons-rewind:before {
|
|
614
|
+
content: "\e173";
|
|
615
|
+
}
|
|
616
|
+
.glyphicons-play:before {
|
|
617
|
+
content: "\e174";
|
|
618
|
+
}
|
|
619
|
+
.glyphicons-pause:before {
|
|
620
|
+
content: "\e175";
|
|
621
|
+
}
|
|
622
|
+
.glyphicons-stop:before {
|
|
623
|
+
content: "\e176";
|
|
624
|
+
}
|
|
625
|
+
.glyphicons-forward:before {
|
|
626
|
+
content: "\e177";
|
|
627
|
+
}
|
|
628
|
+
.glyphicons-fast-forward:before {
|
|
629
|
+
content: "\e178";
|
|
630
|
+
}
|
|
631
|
+
.glyphicons-step-forward:before {
|
|
632
|
+
content: "\e179";
|
|
633
|
+
}
|
|
634
|
+
.glyphicons-eject:before {
|
|
635
|
+
content: "\e180";
|
|
636
|
+
}
|
|
637
|
+
.glyphicons-facetime-video:before {
|
|
638
|
+
content: "\e181";
|
|
639
|
+
}
|
|
640
|
+
.glyphicons-download-alt:before {
|
|
641
|
+
content: "\e182";
|
|
642
|
+
}
|
|
643
|
+
.glyphicons-mute:before {
|
|
644
|
+
content: "\e183";
|
|
645
|
+
}
|
|
646
|
+
.glyphicons-volume-down:before {
|
|
647
|
+
content: "\e184";
|
|
648
|
+
}
|
|
649
|
+
.glyphicons-volume-up:before {
|
|
650
|
+
content: "\e185";
|
|
651
|
+
}
|
|
652
|
+
.glyphicons-screenshot:before {
|
|
653
|
+
content: "\e186";
|
|
654
|
+
}
|
|
655
|
+
.glyphicons-move:before {
|
|
656
|
+
content: "\e187";
|
|
657
|
+
}
|
|
658
|
+
.glyphicons-more:before {
|
|
659
|
+
content: "\e188";
|
|
660
|
+
}
|
|
661
|
+
.glyphicons-brightness-reduce:before {
|
|
662
|
+
content: "\e189";
|
|
663
|
+
}
|
|
664
|
+
.glyphicons-brightness-increase:before {
|
|
665
|
+
content: "\e190";
|
|
666
|
+
}
|
|
667
|
+
.glyphicons-circle-plus:before {
|
|
668
|
+
content: "\e191";
|
|
669
|
+
}
|
|
670
|
+
.glyphicons-circle-minus:before {
|
|
671
|
+
content: "\e192";
|
|
672
|
+
}
|
|
673
|
+
.glyphicons-circle-remove:before {
|
|
674
|
+
content: "\e193";
|
|
675
|
+
}
|
|
676
|
+
.glyphicons-circle-ok:before {
|
|
677
|
+
content: "\e194";
|
|
678
|
+
}
|
|
679
|
+
.glyphicons-circle-question-mark:before {
|
|
680
|
+
content: "\e195";
|
|
681
|
+
}
|
|
682
|
+
.glyphicons-circle-info:before {
|
|
683
|
+
content: "\e196";
|
|
684
|
+
}
|
|
685
|
+
.glyphicons-circle-exclamation-mark:before {
|
|
686
|
+
content: "\e197";
|
|
687
|
+
}
|
|
688
|
+
.glyphicons-remove:before {
|
|
689
|
+
content: "\e198";
|
|
690
|
+
}
|
|
691
|
+
.glyphicons-ok:before {
|
|
692
|
+
content: "\e199";
|
|
693
|
+
}
|
|
694
|
+
.glyphicons-ban:before {
|
|
695
|
+
content: "\e200";
|
|
696
|
+
}
|
|
697
|
+
.glyphicons-download:before {
|
|
698
|
+
content: "\e201";
|
|
699
|
+
}
|
|
700
|
+
.glyphicons-upload:before {
|
|
701
|
+
content: "\e202";
|
|
702
|
+
}
|
|
703
|
+
.glyphicons-shopping-cart:before {
|
|
704
|
+
content: "\e203";
|
|
705
|
+
}
|
|
706
|
+
.glyphicons-lock:before {
|
|
707
|
+
content: "\e204";
|
|
708
|
+
}
|
|
709
|
+
.glyphicons-unlock:before {
|
|
710
|
+
content: "\e205";
|
|
711
|
+
}
|
|
712
|
+
.glyphicons-electricity:before {
|
|
713
|
+
content: "\e206";
|
|
714
|
+
}
|
|
715
|
+
.glyphicons-ok-2:before {
|
|
716
|
+
content: "\e207";
|
|
717
|
+
}
|
|
718
|
+
.glyphicons-remove-2:before {
|
|
719
|
+
content: "\e208";
|
|
720
|
+
}
|
|
721
|
+
.glyphicons-cart-out:before {
|
|
722
|
+
content: "\e209";
|
|
723
|
+
}
|
|
724
|
+
.glyphicons-cart-in:before {
|
|
725
|
+
content: "\e210";
|
|
726
|
+
}
|
|
727
|
+
.glyphicons-left-arrow:before {
|
|
728
|
+
content: "\e211";
|
|
729
|
+
}
|
|
730
|
+
.glyphicons-right-arrow:before {
|
|
731
|
+
content: "\e212";
|
|
732
|
+
}
|
|
733
|
+
.glyphicons-down-arrow:before {
|
|
734
|
+
content: "\e213";
|
|
735
|
+
}
|
|
736
|
+
.glyphicons-up-arrow:before {
|
|
737
|
+
content: "\e214";
|
|
738
|
+
}
|
|
739
|
+
.glyphicons-resize-small:before {
|
|
740
|
+
content: "\e215";
|
|
741
|
+
}
|
|
742
|
+
.glyphicons-resize-full:before {
|
|
743
|
+
content: "\e216";
|
|
744
|
+
}
|
|
745
|
+
.glyphicons-circle-arrow-left:before {
|
|
746
|
+
content: "\e217";
|
|
747
|
+
}
|
|
748
|
+
.glyphicons-circle-arrow-right:before {
|
|
749
|
+
content: "\e218";
|
|
750
|
+
}
|
|
751
|
+
.glyphicons-circle-arrow-top:before {
|
|
752
|
+
content: "\e219";
|
|
753
|
+
}
|
|
754
|
+
.glyphicons-circle-arrow-down:before {
|
|
755
|
+
content: "\e220";
|
|
756
|
+
}
|
|
757
|
+
.glyphicons-play-button:before {
|
|
758
|
+
content: "\e221";
|
|
759
|
+
}
|
|
760
|
+
.glyphicons-unshare:before {
|
|
761
|
+
content: "\e222";
|
|
762
|
+
}
|
|
763
|
+
.glyphicons-share:before {
|
|
764
|
+
content: "\e223";
|
|
765
|
+
}
|
|
766
|
+
.glyphicons-chevron-right:before {
|
|
767
|
+
content: "\e224";
|
|
768
|
+
}
|
|
769
|
+
.glyphicons-chevron-left:before {
|
|
770
|
+
content: "\e225";
|
|
771
|
+
}
|
|
772
|
+
.glyphicons-bluetooth:before {
|
|
773
|
+
content: "\e226";
|
|
774
|
+
}
|
|
775
|
+
.glyphicons-euro:before {
|
|
776
|
+
content: "\20AC";
|
|
777
|
+
}
|
|
778
|
+
.glyphicons-usd:before {
|
|
779
|
+
content: "\e228";
|
|
780
|
+
}
|
|
781
|
+
.glyphicons-gbp:before {
|
|
782
|
+
content: "\e229";
|
|
783
|
+
}
|
|
784
|
+
.glyphicons-retweet-2:before {
|
|
785
|
+
content: "\e230";
|
|
786
|
+
}
|
|
787
|
+
.glyphicons-moon:before {
|
|
788
|
+
content: "\e231";
|
|
789
|
+
}
|
|
790
|
+
.glyphicons-sun:before {
|
|
791
|
+
content: "\2609";
|
|
792
|
+
}
|
|
793
|
+
.glyphicons-cloud:before {
|
|
794
|
+
content: "\2601";
|
|
795
|
+
}
|
|
796
|
+
.glyphicons-direction:before {
|
|
797
|
+
content: "\e234";
|
|
798
|
+
}
|
|
799
|
+
.glyphicons-brush:before {
|
|
800
|
+
content: "\e235";
|
|
801
|
+
}
|
|
802
|
+
.glyphicons-pen:before {
|
|
803
|
+
content: "\e236";
|
|
804
|
+
}
|
|
805
|
+
.glyphicons-zoom-in:before {
|
|
806
|
+
content: "\e237";
|
|
807
|
+
}
|
|
808
|
+
.glyphicons-zoom-out:before {
|
|
809
|
+
content: "\e238";
|
|
810
|
+
}
|
|
811
|
+
.glyphicons-pin:before {
|
|
812
|
+
content: "\e239";
|
|
813
|
+
}
|
|
814
|
+
.glyphicons-albums:before {
|
|
815
|
+
content: "\e240";
|
|
816
|
+
}
|
|
817
|
+
.glyphicons-rotation-lock:before {
|
|
818
|
+
content: "\e241";
|
|
819
|
+
}
|
|
820
|
+
.glyphicons-flash:before {
|
|
821
|
+
content: "\e242";
|
|
822
|
+
}
|
|
823
|
+
.glyphicons-google-maps:before {
|
|
824
|
+
content: "\e243";
|
|
825
|
+
}
|
|
826
|
+
.glyphicons-anchor:before {
|
|
827
|
+
content: "\2693";
|
|
828
|
+
}
|
|
829
|
+
.glyphicons-conversation:before {
|
|
830
|
+
content: "\e245";
|
|
831
|
+
}
|
|
832
|
+
.glyphicons-chat:before {
|
|
833
|
+
content: "\e246";
|
|
834
|
+
}
|
|
835
|
+
.glyphicons-male:before {
|
|
836
|
+
content: "\e247";
|
|
837
|
+
}
|
|
838
|
+
.glyphicons-female:before {
|
|
839
|
+
content: "\e248";
|
|
840
|
+
}
|
|
841
|
+
.glyphicons-asterisk:before {
|
|
842
|
+
content: "\002A";
|
|
843
|
+
}
|
|
844
|
+
.glyphicons-divide:before {
|
|
845
|
+
content: "\00F7";
|
|
846
|
+
}
|
|
847
|
+
.glyphicons-snorkel-diving:before {
|
|
848
|
+
content: "\e251";
|
|
849
|
+
}
|
|
850
|
+
.glyphicons-scuba-diving:before {
|
|
851
|
+
content: "\e252";
|
|
852
|
+
}
|
|
853
|
+
.glyphicons-oxygen-bottle:before {
|
|
854
|
+
content: "\e253";
|
|
855
|
+
}
|
|
856
|
+
.glyphicons-fins:before {
|
|
857
|
+
content: "\e254";
|
|
858
|
+
}
|
|
859
|
+
.glyphicons-fishes:before {
|
|
860
|
+
content: "\e255";
|
|
861
|
+
}
|
|
862
|
+
.glyphicons-boat:before {
|
|
863
|
+
content: "\e256";
|
|
864
|
+
}
|
|
865
|
+
.glyphicons-delete:before {
|
|
866
|
+
content: "\e257";
|
|
867
|
+
}
|
|
868
|
+
.glyphicons-sheriffs-star:before {
|
|
869
|
+
content: "\e258";
|
|
870
|
+
}
|
|
871
|
+
.glyphicons-qrcode:before {
|
|
872
|
+
content: "\e259";
|
|
873
|
+
}
|
|
874
|
+
.glyphicons-barcode:before {
|
|
875
|
+
content: "\e260";
|
|
876
|
+
}
|
|
877
|
+
.glyphicons-pool:before {
|
|
878
|
+
content: "\e261";
|
|
879
|
+
}
|
|
880
|
+
.glyphicons-buoy:before {
|
|
881
|
+
content: "\e262";
|
|
882
|
+
}
|
|
883
|
+
.glyphicons-spade:before {
|
|
884
|
+
content: "\e263";
|
|
885
|
+
}
|
|
886
|
+
.glyphicons-bank:before {
|
|
887
|
+
content: "\e264";
|
|
888
|
+
}
|
|
889
|
+
.glyphicons-vcard:before {
|
|
890
|
+
content: "\e265";
|
|
891
|
+
}
|
|
892
|
+
.glyphicons-electrical-plug:before {
|
|
893
|
+
content: "\e266";
|
|
894
|
+
}
|
|
895
|
+
.glyphicons-flag:before {
|
|
896
|
+
content: "\e267";
|
|
897
|
+
}
|
|
898
|
+
.glyphicons-credit-card:before {
|
|
899
|
+
content: "\e268";
|
|
900
|
+
}
|
|
901
|
+
.glyphicons-keyboard-wireless:before {
|
|
902
|
+
content: "\e269";
|
|
903
|
+
}
|
|
904
|
+
.glyphicons-keyboard-wired:before {
|
|
905
|
+
content: "\e270";
|
|
906
|
+
}
|
|
907
|
+
.glyphicons-shield:before {
|
|
908
|
+
content: "\e271";
|
|
909
|
+
}
|
|
910
|
+
.glyphicons-ring:before {
|
|
911
|
+
content: "\02DA";
|
|
912
|
+
}
|
|
913
|
+
.glyphicons-cake:before {
|
|
914
|
+
content: "\e273";
|
|
915
|
+
}
|
|
916
|
+
.glyphicons-drink:before {
|
|
917
|
+
content: "\e274";
|
|
918
|
+
}
|
|
919
|
+
.glyphicons-beer:before {
|
|
920
|
+
content: "\e275";
|
|
921
|
+
}
|
|
922
|
+
.glyphicons-fast-food:before {
|
|
923
|
+
content: "\e276";
|
|
924
|
+
}
|
|
925
|
+
.glyphicons-cutlery:before {
|
|
926
|
+
content: "\e277";
|
|
927
|
+
}
|
|
928
|
+
.glyphicons-pizza:before {
|
|
929
|
+
content: "\e278";
|
|
930
|
+
}
|
|
931
|
+
.glyphicons-birthday-cake:before {
|
|
932
|
+
content: "\e279";
|
|
933
|
+
}
|
|
934
|
+
.glyphicons-tablet:before {
|
|
935
|
+
content: "\e280";
|
|
936
|
+
}
|
|
937
|
+
.glyphicons-settings:before {
|
|
938
|
+
content: "\e281";
|
|
939
|
+
}
|
|
940
|
+
.glyphicons-bullets:before {
|
|
941
|
+
content: "\e282";
|
|
942
|
+
}
|
|
943
|
+
.glyphicons-cardio:before {
|
|
944
|
+
content: "\e283";
|
|
945
|
+
}
|
|
946
|
+
.glyphicons-t-shirt:before {
|
|
947
|
+
content: "\e284";
|
|
948
|
+
}
|
|
949
|
+
.glyphicons-pants:before {
|
|
950
|
+
content: "\e285";
|
|
951
|
+
}
|
|
952
|
+
.glyphicons-sweater:before {
|
|
953
|
+
content: "\e286";
|
|
954
|
+
}
|
|
955
|
+
.glyphicons-fabric:before {
|
|
956
|
+
content: "\e287";
|
|
957
|
+
}
|
|
958
|
+
.glyphicons-leather:before {
|
|
959
|
+
content: "\e288";
|
|
960
|
+
}
|
|
961
|
+
.glyphicons-scissors:before {
|
|
962
|
+
content: "\e289";
|
|
963
|
+
}
|
|
964
|
+
.glyphicons-bomb:before {
|
|
965
|
+
content: "\e290";
|
|
966
|
+
}
|
|
967
|
+
.glyphicons-skull:before {
|
|
968
|
+
content: "\e291";
|
|
969
|
+
}
|
|
970
|
+
.glyphicons-celebration:before {
|
|
971
|
+
content: "\e292";
|
|
972
|
+
}
|
|
973
|
+
.glyphicons-tea-kettle:before {
|
|
974
|
+
content: "\e293";
|
|
975
|
+
}
|
|
976
|
+
.glyphicons-french-press:before {
|
|
977
|
+
content: "\e294";
|
|
978
|
+
}
|
|
979
|
+
.glyphicons-coffe-cup:before {
|
|
980
|
+
content: "\e295";
|
|
981
|
+
}
|
|
982
|
+
.glyphicons-pot:before {
|
|
983
|
+
content: "\e296";
|
|
984
|
+
}
|
|
985
|
+
.glyphicons-grater:before {
|
|
986
|
+
content: "\e297";
|
|
987
|
+
}
|
|
988
|
+
.glyphicons-kettle:before {
|
|
989
|
+
content: "\e298";
|
|
990
|
+
}
|
|
991
|
+
.glyphicons-hospital:before {
|
|
992
|
+
content: "\e299";
|
|
993
|
+
}
|
|
994
|
+
.glyphicons-hospital-h:before {
|
|
995
|
+
content: "\e300";
|
|
996
|
+
}
|
|
997
|
+
.glyphicons-microphone:before {
|
|
998
|
+
content: "\e301";
|
|
999
|
+
}
|
|
1000
|
+
.glyphicons-webcam:before {
|
|
1001
|
+
content: "\e302";
|
|
1002
|
+
}
|
|
1003
|
+
.glyphicons-temple-christianity-church:before {
|
|
1004
|
+
content: "\e303";
|
|
1005
|
+
}
|
|
1006
|
+
.glyphicons-temple-islam:before {
|
|
1007
|
+
content: "\e304";
|
|
1008
|
+
}
|
|
1009
|
+
.glyphicons-temple-hindu:before {
|
|
1010
|
+
content: "\e305";
|
|
1011
|
+
}
|
|
1012
|
+
.glyphicons-temple-buddhist:before {
|
|
1013
|
+
content: "\e306";
|
|
1014
|
+
}
|
|
1015
|
+
.glyphicons-bicycle:before {
|
|
1016
|
+
content: "\e307";
|
|
1017
|
+
}
|
|
1018
|
+
.glyphicons-life-preserver:before {
|
|
1019
|
+
content: "\e308";
|
|
1020
|
+
}
|
|
1021
|
+
.glyphicons-share-alt:before {
|
|
1022
|
+
content: "\e309";
|
|
1023
|
+
}
|
|
1024
|
+
.glyphicons-comments:before {
|
|
1025
|
+
content: "\e310";
|
|
1026
|
+
}
|
|
1027
|
+
.glyphicons-flower:before {
|
|
1028
|
+
content: "\2698";
|
|
1029
|
+
}
|
|
1030
|
+
.glyphicons-baseball:before {
|
|
1031
|
+
content: "\e312";
|
|
1032
|
+
}
|
|
1033
|
+
.glyphicons-rugby:before {
|
|
1034
|
+
content: "\e313";
|
|
1035
|
+
}
|
|
1036
|
+
.glyphicons-ax:before {
|
|
1037
|
+
content: "\e314";
|
|
1038
|
+
}
|
|
1039
|
+
.glyphicons-table-tennis:before {
|
|
1040
|
+
content: "\e315";
|
|
1041
|
+
}
|
|
1042
|
+
.glyphicons-bowling:before {
|
|
1043
|
+
content: "\e316";
|
|
1044
|
+
}
|
|
1045
|
+
.glyphicons-tree-conifer:before {
|
|
1046
|
+
content: "\e317";
|
|
1047
|
+
}
|
|
1048
|
+
.glyphicons-tree-deciduous:before {
|
|
1049
|
+
content: "\e318";
|
|
1050
|
+
}
|
|
1051
|
+
.glyphicons-more-items:before {
|
|
1052
|
+
content: "\e319";
|
|
1053
|
+
}
|
|
1054
|
+
.glyphicons-sort:before {
|
|
1055
|
+
content: "\e320";
|
|
1056
|
+
}
|
|
1057
|
+
.glyphicons-filter:before {
|
|
1058
|
+
content: "\e321";
|
|
1059
|
+
}
|
|
1060
|
+
.glyphicons-gamepad:before {
|
|
1061
|
+
content: "\e322";
|
|
1062
|
+
}
|
|
1063
|
+
.glyphicons-playing-dices:before {
|
|
1064
|
+
content: "\e323";
|
|
1065
|
+
}
|
|
1066
|
+
.glyphicons-calculator:before {
|
|
1067
|
+
content: "\e324";
|
|
1068
|
+
}
|
|
1069
|
+
.glyphicons-tie:before {
|
|
1070
|
+
content: "\e325";
|
|
1071
|
+
}
|
|
1072
|
+
.glyphicons-wallet:before {
|
|
1073
|
+
content: "\e326";
|
|
1074
|
+
}
|
|
1075
|
+
.glyphicons-piano:before {
|
|
1076
|
+
content: "\e327";
|
|
1077
|
+
}
|
|
1078
|
+
.glyphicons-sampler:before {
|
|
1079
|
+
content: "\e328";
|
|
1080
|
+
}
|
|
1081
|
+
.glyphicons-podium:before {
|
|
1082
|
+
content: "\e329";
|
|
1083
|
+
}
|
|
1084
|
+
.glyphicons-soccer-ball:before {
|
|
1085
|
+
content: "\e330";
|
|
1086
|
+
}
|
|
1087
|
+
.glyphicons-blog:before {
|
|
1088
|
+
content: "\e331";
|
|
1089
|
+
}
|
|
1090
|
+
.glyphicons-dashboard:before {
|
|
1091
|
+
content: "\e332";
|
|
1092
|
+
}
|
|
1093
|
+
.glyphicons-certificate:before {
|
|
1094
|
+
content: "\e333";
|
|
1095
|
+
}
|
|
1096
|
+
.glyphicons-bell:before {
|
|
1097
|
+
content: "\e334";
|
|
1098
|
+
}
|
|
1099
|
+
.glyphicons-candle:before {
|
|
1100
|
+
content: "\e335";
|
|
1101
|
+
}
|
|
1102
|
+
.glyphicons-pushpin:before {
|
|
1103
|
+
content: "\e336";
|
|
1104
|
+
}
|
|
1105
|
+
.glyphicons-iphone-shake:before {
|
|
1106
|
+
content: "\e337";
|
|
1107
|
+
}
|
|
1108
|
+
.glyphicons-pin-flag:before {
|
|
1109
|
+
content: "\e338";
|
|
1110
|
+
}
|
|
1111
|
+
.glyphicons-turtle:before {
|
|
1112
|
+
content: "\e339";
|
|
1113
|
+
}
|
|
1114
|
+
.glyphicons-rabbit:before {
|
|
1115
|
+
content: "\e340";
|
|
1116
|
+
}
|
|
1117
|
+
.glyphicons-globe:before {
|
|
1118
|
+
content: "\e341";
|
|
1119
|
+
}
|
|
1120
|
+
.glyphicons-briefcase:before {
|
|
1121
|
+
content: "\e342";
|
|
1122
|
+
}
|
|
1123
|
+
.glyphicons-hdd:before {
|
|
1124
|
+
content: "\e343";
|
|
1125
|
+
}
|
|
1126
|
+
.glyphicons-thumbs-up:before {
|
|
1127
|
+
content: "\e344";
|
|
1128
|
+
}
|
|
1129
|
+
.glyphicons-thumbs-down:before {
|
|
1130
|
+
content: "\e345";
|
|
1131
|
+
}
|
|
1132
|
+
.glyphicons-hand-right:before {
|
|
1133
|
+
content: "\e346";
|
|
1134
|
+
}
|
|
1135
|
+
.glyphicons-hand-left:before {
|
|
1136
|
+
content: "\e347";
|
|
1137
|
+
}
|
|
1138
|
+
.glyphicons-hand-up:before {
|
|
1139
|
+
content: "\e348";
|
|
1140
|
+
}
|
|
1141
|
+
.glyphicons-hand-down:before {
|
|
1142
|
+
content: "\e349";
|
|
1143
|
+
}
|
|
1144
|
+
.glyphicons-fullscreen:before {
|
|
1145
|
+
content: "\e350";
|
|
1146
|
+
}
|
|
1147
|
+
.glyphicons-shopping-bag:before {
|
|
1148
|
+
content: "\e351";
|
|
1149
|
+
}
|
|
1150
|
+
.glyphicons-book-open:before {
|
|
1151
|
+
content: "\e352";
|
|
1152
|
+
}
|
|
1153
|
+
.glyphicons-nameplate:before {
|
|
1154
|
+
content: "\e353";
|
|
1155
|
+
}
|
|
1156
|
+
.glyphicons-nameplate-alt:before {
|
|
1157
|
+
content: "\e354";
|
|
1158
|
+
}
|
|
1159
|
+
.glyphicons-vases:before {
|
|
1160
|
+
content: "\e355";
|
|
1161
|
+
}
|
|
1162
|
+
.glyphicons-bullhorn:before {
|
|
1163
|
+
content: "\e356";
|
|
1164
|
+
}
|
|
1165
|
+
.glyphicons-dumbbell:before {
|
|
1166
|
+
content: "\e357";
|
|
1167
|
+
}
|
|
1168
|
+
.glyphicons-suitcase:before {
|
|
1169
|
+
content: "\e358";
|
|
1170
|
+
}
|
|
1171
|
+
.glyphicons-file-import:before {
|
|
1172
|
+
content: "\e359";
|
|
1173
|
+
}
|
|
1174
|
+
.glyphicons-file-export:before {
|
|
1175
|
+
content: "\e360";
|
|
1176
|
+
}
|
|
1177
|
+
.glyphicons-bug:before {
|
|
1178
|
+
content: "\e361";
|
|
1179
|
+
}
|
|
1180
|
+
.glyphicons-crown:before {
|
|
1181
|
+
content: "\e362";
|
|
1182
|
+
}
|
|
1183
|
+
.glyphicons-smoking:before {
|
|
1184
|
+
content: "\e363";
|
|
1185
|
+
}
|
|
1186
|
+
.glyphicons-cloud-upload:before {
|
|
1187
|
+
content: "\e364";
|
|
1188
|
+
}
|
|
1189
|
+
.glyphicons-cloud-download:before {
|
|
1190
|
+
content: "\e365";
|
|
1191
|
+
}
|
|
1192
|
+
.glyphicons-restart:before {
|
|
1193
|
+
content: "\e366";
|
|
1194
|
+
}
|
|
1195
|
+
.glyphicons-security-camera:before {
|
|
1196
|
+
content: "\e367";
|
|
1197
|
+
}
|
|
1198
|
+
.glyphicons-expand:before {
|
|
1199
|
+
content: "\e368";
|
|
1200
|
+
}
|
|
1201
|
+
.glyphicons-collapse:before {
|
|
1202
|
+
content: "\e369";
|
|
1203
|
+
}
|
|
1204
|
+
.glyphicons-collapse-top:before {
|
|
1205
|
+
content: "\e370";
|
|
1206
|
+
}
|
|
1207
|
+
.glyphicons-globe-af:before {
|
|
1208
|
+
content: "\e371";
|
|
1209
|
+
}
|
|
1210
|
+
.glyphicons-global:before {
|
|
1211
|
+
content: "\e372";
|
|
1212
|
+
}
|
|
1213
|
+
.glyphicons-spray:before {
|
|
1214
|
+
content: "\e373";
|
|
1215
|
+
}
|
|
1216
|
+
.glyphicons-nails:before {
|
|
1217
|
+
content: "\e374";
|
|
1218
|
+
}
|
|
1219
|
+
.glyphicons-claw-hammer:before {
|
|
1220
|
+
content: "\e375";
|
|
1221
|
+
}
|
|
1222
|
+
.glyphicons-classic-hammer:before {
|
|
1223
|
+
content: "\e376";
|
|
1224
|
+
}
|
|
1225
|
+
.glyphicons-hand-saw:before {
|
|
1226
|
+
content: "\e377";
|
|
1227
|
+
}
|
|
1228
|
+
.glyphicons-riflescope:before {
|
|
1229
|
+
content: "\e378";
|
|
1230
|
+
}
|
|
1231
|
+
.glyphicons-electrical-socket-eu:before {
|
|
1232
|
+
content: "\e379";
|
|
1233
|
+
}
|
|
1234
|
+
.glyphicons-electrical-socket-us:before {
|
|
1235
|
+
content: "\e380";
|
|
1236
|
+
}
|
|
1237
|
+
.glyphicons-pinterest:before {
|
|
1238
|
+
content: "\e381";
|
|
1239
|
+
}
|
|
1240
|
+
.glyphicons-dropbox:before {
|
|
1241
|
+
content: "\e382";
|
|
1242
|
+
}
|
|
1243
|
+
.glyphicons-google-plus:before {
|
|
1244
|
+
content: "\e383";
|
|
1245
|
+
}
|
|
1246
|
+
.glyphicons-jolicloud:before {
|
|
1247
|
+
content: "\e384";
|
|
1248
|
+
}
|
|
1249
|
+
.glyphicons-yahoo:before {
|
|
1250
|
+
content: "\e385";
|
|
1251
|
+
}
|
|
1252
|
+
.glyphicons-blogger:before {
|
|
1253
|
+
content: "\e386";
|
|
1254
|
+
}
|
|
1255
|
+
.glyphicons-picasa:before {
|
|
1256
|
+
content: "\e387";
|
|
1257
|
+
}
|
|
1258
|
+
.glyphicons-amazon:before {
|
|
1259
|
+
content: "\e388";
|
|
1260
|
+
}
|
|
1261
|
+
.glyphicons-tumblr:before {
|
|
1262
|
+
content: "\e389";
|
|
1263
|
+
}
|
|
1264
|
+
.glyphicons-wordpress:before {
|
|
1265
|
+
content: "\e390";
|
|
1266
|
+
}
|
|
1267
|
+
.glyphicons-instapaper:before {
|
|
1268
|
+
content: "\e391";
|
|
1269
|
+
}
|
|
1270
|
+
.glyphicons-evernote:before {
|
|
1271
|
+
content: "\e392";
|
|
1272
|
+
}
|
|
1273
|
+
.glyphicons-xing:before {
|
|
1274
|
+
content: "\e393";
|
|
1275
|
+
}
|
|
1276
|
+
.glyphicons-zootool:before {
|
|
1277
|
+
content: "\e394";
|
|
1278
|
+
}
|
|
1279
|
+
.glyphicons-dribbble:before {
|
|
1280
|
+
content: "\e395";
|
|
1281
|
+
}
|
|
1282
|
+
.glyphicons-deviantart:before {
|
|
1283
|
+
content: "\e396";
|
|
1284
|
+
}
|
|
1285
|
+
.glyphicons-read-it-later:before {
|
|
1286
|
+
content: "\e397";
|
|
1287
|
+
}
|
|
1288
|
+
.glyphicons-linked-in:before {
|
|
1289
|
+
content: "\e398";
|
|
1290
|
+
}
|
|
1291
|
+
.glyphicons-forrst:before {
|
|
1292
|
+
content: "\e399";
|
|
1293
|
+
}
|
|
1294
|
+
.glyphicons-pinboard:before {
|
|
1295
|
+
content: "\e400";
|
|
1296
|
+
}
|
|
1297
|
+
.glyphicons-behance:before {
|
|
1298
|
+
content: "\e401";
|
|
1299
|
+
}
|
|
1300
|
+
.glyphicons-github:before {
|
|
1301
|
+
content: "\e402";
|
|
1302
|
+
}
|
|
1303
|
+
.glyphicons-youtube:before {
|
|
1304
|
+
content: "\e403";
|
|
1305
|
+
}
|
|
1306
|
+
.glyphicons-skitch:before {
|
|
1307
|
+
content: "\e404";
|
|
1308
|
+
}
|
|
1309
|
+
.glyphicons-foursquare:before {
|
|
1310
|
+
content: "\e405";
|
|
1311
|
+
}
|
|
1312
|
+
.glyphicons-quora:before {
|
|
1313
|
+
content: "\e406";
|
|
1314
|
+
}
|
|
1315
|
+
.glyphicons-badoo:before {
|
|
1316
|
+
content: "\e407";
|
|
1317
|
+
}
|
|
1318
|
+
.glyphicons-spotify:before {
|
|
1319
|
+
content: "\e408";
|
|
1320
|
+
}
|
|
1321
|
+
.glyphicons-stumbleupon:before {
|
|
1322
|
+
content: "\e409";
|
|
1323
|
+
}
|
|
1324
|
+
.glyphicons-readability:before {
|
|
1325
|
+
content: "\e410";
|
|
1326
|
+
}
|
|
1327
|
+
.glyphicons-facebook:before {
|
|
1328
|
+
content: "\e411";
|
|
1329
|
+
}
|
|
1330
|
+
.glyphicons-twitter:before {
|
|
1331
|
+
content: "\e412";
|
|
1332
|
+
}
|
|
1333
|
+
.glyphicons-instagram:before {
|
|
1334
|
+
content: "\e413";
|
|
1335
|
+
}
|
|
1336
|
+
.glyphicons-posterous-spaces:before {
|
|
1337
|
+
content: "\e414";
|
|
1338
|
+
}
|
|
1339
|
+
.glyphicons-vimeo:before {
|
|
1340
|
+
content: "\e415";
|
|
1341
|
+
}
|
|
1342
|
+
.glyphicons-flickr:before {
|
|
1343
|
+
content: "\e416";
|
|
1344
|
+
}
|
|
1345
|
+
.glyphicons-last-fm:before {
|
|
1346
|
+
content: "\e417";
|
|
1347
|
+
}
|
|
1348
|
+
.glyphicons-rss:before {
|
|
1349
|
+
content: "\e418";
|
|
1350
|
+
}
|
|
1351
|
+
.glyphicons-skype:before {
|
|
1352
|
+
content: "\e419";
|
|
1353
|
+
}
|
|
1354
|
+
.glyphicons-e-mail:before {
|
|
1355
|
+
content: "\e420";
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
/* Localized */
|
|
1359
|
+
|
|
1360
|
+
/*!
|
|
1361
|
+
*
|
|
1362
|
+
* Project: GLYPHICONS HALFLINGS
|
|
1363
|
+
* Author: Jan Kovarik - www.glyphicons-com
|
|
1364
|
+
* Twitter: @jankovarik
|
|
1365
|
+
*
|
|
1366
|
+
*/
|
|
1367
|
+
html,
|
|
1368
|
+
html .halflings {
|
|
1369
|
+
-webkit-font-smoothing: antialiased !important;
|
|
1370
|
+
}
|
|
1371
|
+
@font-face {
|
|
1372
|
+
font-family: 'Glyphicons Halflings';
|
|
1373
|
+
src: url('../font/glyphiconshalflings-regular.eot');
|
|
1374
|
+
src: url('../font/glyphiconshalflings-regular-0.eot#iefix') format('embedded-opentype'), url('../font/glyphiconshalflings-regular.woff') format('woff'), url('../font/glyphiconshalflings-regular.ttf') format('truetype'), url('../font/glyphiconshalflings-regular.svg#glyphicons-halflingsregular') format('svg');
|
|
1375
|
+
font-weight: normal;
|
|
1376
|
+
font-style: normal;
|
|
1377
|
+
}
|
|
1378
|
+
.halflings {
|
|
1379
|
+
display: inline-block;
|
|
1380
|
+
position: relative;
|
|
1381
|
+
padding: 0 0 0 25px;
|
|
1382
|
+
color: #1d1d1b;
|
|
1383
|
+
text-decoration: none;
|
|
1384
|
+
*display: inline;
|
|
1385
|
+
*zoom: 1;
|
|
1386
|
+
}
|
|
1387
|
+
.halflings:before {
|
|
1388
|
+
position: absolute;
|
|
1389
|
+
left: 0;
|
|
1390
|
+
top: 0;
|
|
1391
|
+
font: 12px/1em 'Glyphicons Halflings';
|
|
1392
|
+
font-style: normal;
|
|
1393
|
+
color: #1d1d1b;
|
|
1394
|
+
}
|
|
1395
|
+
.halflings-white:before {
|
|
1396
|
+
color: #fff;
|
|
1397
|
+
}
|
|
1398
|
+
.halflings-glass:before {
|
|
1399
|
+
content: "\e001";
|
|
1400
|
+
}
|
|
1401
|
+
.halflings-music:before {
|
|
1402
|
+
content: "\e002";
|
|
1403
|
+
}
|
|
1404
|
+
.halflings-search:before {
|
|
1405
|
+
content: "\e003";
|
|
1406
|
+
}
|
|
1407
|
+
.halflings-envelope:before {
|
|
1408
|
+
content: "\2709";
|
|
1409
|
+
}
|
|
1410
|
+
.halflings-heart:before {
|
|
1411
|
+
content: "\e005";
|
|
1412
|
+
}
|
|
1413
|
+
.halflings-star:before {
|
|
1414
|
+
content: "\e006";
|
|
1415
|
+
}
|
|
1416
|
+
.halflings-star-empty:before {
|
|
1417
|
+
content: "\e007";
|
|
1418
|
+
}
|
|
1419
|
+
.halflings-user:before {
|
|
1420
|
+
content: "\e008";
|
|
1421
|
+
}
|
|
1422
|
+
.halflings-film:before {
|
|
1423
|
+
content: "\e009";
|
|
1424
|
+
}
|
|
1425
|
+
.halflings-th-large:before {
|
|
1426
|
+
content: "\e010";
|
|
1427
|
+
}
|
|
1428
|
+
.halflings-th:before {
|
|
1429
|
+
content: "\e011";
|
|
1430
|
+
}
|
|
1431
|
+
.halflings-th-list:before {
|
|
1432
|
+
content: "\e012";
|
|
1433
|
+
}
|
|
1434
|
+
.halflings-ok:before {
|
|
1435
|
+
content: "\e013";
|
|
1436
|
+
}
|
|
1437
|
+
.halflings-remove:before {
|
|
1438
|
+
content: "\e014";
|
|
1439
|
+
}
|
|
1440
|
+
.halflings-zoom-in:before {
|
|
1441
|
+
content: "\e015";
|
|
1442
|
+
}
|
|
1443
|
+
.halflings-zoom-out:before {
|
|
1444
|
+
content: "\e016";
|
|
1445
|
+
}
|
|
1446
|
+
.halflings-off:before {
|
|
1447
|
+
content: "\e017";
|
|
1448
|
+
}
|
|
1449
|
+
.halflings-signal:before {
|
|
1450
|
+
content: "\e018";
|
|
1451
|
+
}
|
|
1452
|
+
.halflings-cog:before {
|
|
1453
|
+
content: "\e019";
|
|
1454
|
+
}
|
|
1455
|
+
.halflings-trash:before {
|
|
1456
|
+
content: "\e020";
|
|
1457
|
+
}
|
|
1458
|
+
.halflings-home:before {
|
|
1459
|
+
content: "\e021";
|
|
1460
|
+
}
|
|
1461
|
+
.halflings-file:before {
|
|
1462
|
+
content: "\e022";
|
|
1463
|
+
}
|
|
1464
|
+
.halflings-time:before {
|
|
1465
|
+
content: "\e023";
|
|
1466
|
+
}
|
|
1467
|
+
.halflings-road:before {
|
|
1468
|
+
content: "\e024";
|
|
1469
|
+
}
|
|
1470
|
+
.halflings-download-alt:before {
|
|
1471
|
+
content: "\e025";
|
|
1472
|
+
}
|
|
1473
|
+
.halflings-download:before {
|
|
1474
|
+
content: "\e026";
|
|
1475
|
+
}
|
|
1476
|
+
.halflings-upload:before {
|
|
1477
|
+
content: "\e027";
|
|
1478
|
+
}
|
|
1479
|
+
.halflings-inbox:before {
|
|
1480
|
+
content: "\e028";
|
|
1481
|
+
}
|
|
1482
|
+
.halflings-play-circle:before {
|
|
1483
|
+
content: "\e029";
|
|
1484
|
+
}
|
|
1485
|
+
.halflings-repeat:before {
|
|
1486
|
+
content: "\e030";
|
|
1487
|
+
}
|
|
1488
|
+
.halflings-refresh:before {
|
|
1489
|
+
content: "\e031";
|
|
1490
|
+
}
|
|
1491
|
+
.halflings-list-alt:before {
|
|
1492
|
+
content: "\e032";
|
|
1493
|
+
}
|
|
1494
|
+
.halflings-lock:before {
|
|
1495
|
+
content: "\e033";
|
|
1496
|
+
}
|
|
1497
|
+
.halflings-flag:before {
|
|
1498
|
+
content: "\e034";
|
|
1499
|
+
}
|
|
1500
|
+
.halflings-headphones:before {
|
|
1501
|
+
content: "\e035";
|
|
1502
|
+
}
|
|
1503
|
+
.halflings-volume-off:before {
|
|
1504
|
+
content: "\e036";
|
|
1505
|
+
}
|
|
1506
|
+
.halflings-volume-down:before {
|
|
1507
|
+
content: "\e037";
|
|
1508
|
+
}
|
|
1509
|
+
.halflings-volume-up:before {
|
|
1510
|
+
content: "\e038";
|
|
1511
|
+
}
|
|
1512
|
+
.halflings-qrcode:before {
|
|
1513
|
+
content: "\e039";
|
|
1514
|
+
}
|
|
1515
|
+
.halflings-barcode:before {
|
|
1516
|
+
content: "\e040";
|
|
1517
|
+
}
|
|
1518
|
+
.halflings-tag:before {
|
|
1519
|
+
content: "\e041";
|
|
1520
|
+
}
|
|
1521
|
+
.halflings-tags:before {
|
|
1522
|
+
content: "\e042";
|
|
1523
|
+
}
|
|
1524
|
+
.halflings-book:before {
|
|
1525
|
+
content: "\e043";
|
|
1526
|
+
}
|
|
1527
|
+
.halflings-bookmark:before {
|
|
1528
|
+
content: "\e044";
|
|
1529
|
+
}
|
|
1530
|
+
.halflings-print:before {
|
|
1531
|
+
content: "\e045";
|
|
1532
|
+
}
|
|
1533
|
+
.halflings-camera:before {
|
|
1534
|
+
content: "\e046";
|
|
1535
|
+
}
|
|
1536
|
+
.halflings-font:before {
|
|
1537
|
+
content: "\e047";
|
|
1538
|
+
}
|
|
1539
|
+
.halflings-bold:before {
|
|
1540
|
+
content: "\e048";
|
|
1541
|
+
}
|
|
1542
|
+
.halflings-italic:before {
|
|
1543
|
+
content: "\e049";
|
|
1544
|
+
}
|
|
1545
|
+
.halflings-text-height:before {
|
|
1546
|
+
content: "\e050";
|
|
1547
|
+
}
|
|
1548
|
+
.halflings-text-width:before {
|
|
1549
|
+
content: "\e051";
|
|
1550
|
+
}
|
|
1551
|
+
.halflings-align-left:before {
|
|
1552
|
+
content: "\e052";
|
|
1553
|
+
}
|
|
1554
|
+
.halflings-align-center:before {
|
|
1555
|
+
content: "\e053";
|
|
1556
|
+
}
|
|
1557
|
+
.halflings-align-right:before {
|
|
1558
|
+
content: "\e054";
|
|
1559
|
+
}
|
|
1560
|
+
.halflings-align-justify:before {
|
|
1561
|
+
content: "\e055";
|
|
1562
|
+
}
|
|
1563
|
+
.halflings-list:before {
|
|
1564
|
+
content: "\e056";
|
|
1565
|
+
}
|
|
1566
|
+
.halflings-indent-left:before {
|
|
1567
|
+
content: "\e057";
|
|
1568
|
+
}
|
|
1569
|
+
.halflings-indent-right:before {
|
|
1570
|
+
content: "\e058";
|
|
1571
|
+
}
|
|
1572
|
+
.halflings-facetime-video:before {
|
|
1573
|
+
content: "\e059";
|
|
1574
|
+
}
|
|
1575
|
+
.halflings-picture:before {
|
|
1576
|
+
content: "\e060";
|
|
1577
|
+
}
|
|
1578
|
+
.halflings-pencil:before {
|
|
1579
|
+
content: "\270f";
|
|
1580
|
+
}
|
|
1581
|
+
.halflings-map-marker:before {
|
|
1582
|
+
content: "\e062";
|
|
1583
|
+
}
|
|
1584
|
+
.halflings-adjust:before {
|
|
1585
|
+
content: "\e063";
|
|
1586
|
+
}
|
|
1587
|
+
.halflings-tint:before {
|
|
1588
|
+
content: "\e064";
|
|
1589
|
+
}
|
|
1590
|
+
.halflings-edit:before {
|
|
1591
|
+
content: "\e065";
|
|
1592
|
+
}
|
|
1593
|
+
.halflings-share:before {
|
|
1594
|
+
content: "\e066";
|
|
1595
|
+
}
|
|
1596
|
+
.halflings-check:before {
|
|
1597
|
+
content: "\e067";
|
|
1598
|
+
}
|
|
1599
|
+
.halflings-move:before {
|
|
1600
|
+
content: "\e068";
|
|
1601
|
+
}
|
|
1602
|
+
.halflings-step-backward:before {
|
|
1603
|
+
content: "\e069";
|
|
1604
|
+
}
|
|
1605
|
+
.halflings-fast-backward:before {
|
|
1606
|
+
content: "\e070";
|
|
1607
|
+
}
|
|
1608
|
+
.halflings-backward:before {
|
|
1609
|
+
content: "\e071";
|
|
1610
|
+
}
|
|
1611
|
+
.halflings-play:before {
|
|
1612
|
+
content: "\e072";
|
|
1613
|
+
}
|
|
1614
|
+
.halflings-pause:before {
|
|
1615
|
+
content: "\e073";
|
|
1616
|
+
}
|
|
1617
|
+
.halflings-stop:before {
|
|
1618
|
+
content: "\e074";
|
|
1619
|
+
}
|
|
1620
|
+
.halflings-forward:before {
|
|
1621
|
+
content: "\e075";
|
|
1622
|
+
}
|
|
1623
|
+
.halflings-fast-forward:before {
|
|
1624
|
+
content: "\e076";
|
|
1625
|
+
}
|
|
1626
|
+
.halflings-step-forward:before {
|
|
1627
|
+
content: "\e077";
|
|
1628
|
+
}
|
|
1629
|
+
.halflings-eject:before {
|
|
1630
|
+
content: "\e078";
|
|
1631
|
+
}
|
|
1632
|
+
.halflings-chevron-left:before {
|
|
1633
|
+
content: "\e079";
|
|
1634
|
+
}
|
|
1635
|
+
.halflings-chevron-right:before {
|
|
1636
|
+
content: "\e080";
|
|
1637
|
+
}
|
|
1638
|
+
.halflings-plus-sign:before {
|
|
1639
|
+
content: "\e081";
|
|
1640
|
+
}
|
|
1641
|
+
.halflings-minus-sign:before {
|
|
1642
|
+
content: "\e082";
|
|
1643
|
+
}
|
|
1644
|
+
.halflings-remove-sign:before {
|
|
1645
|
+
content: "\e083";
|
|
1646
|
+
}
|
|
1647
|
+
.halflings-ok-sign:before {
|
|
1648
|
+
content: "\e084";
|
|
1649
|
+
}
|
|
1650
|
+
.halflings-question-sign:before {
|
|
1651
|
+
content: "\e085";
|
|
1652
|
+
}
|
|
1653
|
+
.halflings-info-sign:before {
|
|
1654
|
+
content: "\e086";
|
|
1655
|
+
}
|
|
1656
|
+
.halflings-screenshot:before {
|
|
1657
|
+
content: "\e087";
|
|
1658
|
+
}
|
|
1659
|
+
.halflings-remove-circle:before {
|
|
1660
|
+
content: "\e088";
|
|
1661
|
+
}
|
|
1662
|
+
.halflings-ok-circle:before {
|
|
1663
|
+
content: "\e089";
|
|
1664
|
+
}
|
|
1665
|
+
.halflings-ban-circle:before {
|
|
1666
|
+
content: "\e090";
|
|
1667
|
+
}
|
|
1668
|
+
.halflings-arrow-left:before {
|
|
1669
|
+
content: "\e091";
|
|
1670
|
+
}
|
|
1671
|
+
.halflings-arrow-right:before {
|
|
1672
|
+
content: "\e092";
|
|
1673
|
+
}
|
|
1674
|
+
.halflings-arrow-up:before {
|
|
1675
|
+
content: "\e093";
|
|
1676
|
+
}
|
|
1677
|
+
.halflings-arrow-down:before {
|
|
1678
|
+
content: "\e094";
|
|
1679
|
+
}
|
|
1680
|
+
.halflings-share-alt:before {
|
|
1681
|
+
content: "\e095";
|
|
1682
|
+
}
|
|
1683
|
+
.halflings-resize-full:before {
|
|
1684
|
+
content: "\e096";
|
|
1685
|
+
}
|
|
1686
|
+
.halflings-resize-small:before {
|
|
1687
|
+
content: "\e097";
|
|
1688
|
+
}
|
|
1689
|
+
.halflings-plus:before {
|
|
1690
|
+
content: "\002b";
|
|
1691
|
+
}
|
|
1692
|
+
.halflings-minus:before {
|
|
1693
|
+
content: "\2212";
|
|
1694
|
+
}
|
|
1695
|
+
.halflings-asterisk:before {
|
|
1696
|
+
content: "\002a";
|
|
1697
|
+
}
|
|
1698
|
+
.halflings-exclamation-sign:before {
|
|
1699
|
+
content: "\e101";
|
|
1700
|
+
}
|
|
1701
|
+
.halflings-gift:before {
|
|
1702
|
+
content: "\e102";
|
|
1703
|
+
}
|
|
1704
|
+
.halflings-leaf:before {
|
|
1705
|
+
content: "\e103";
|
|
1706
|
+
}
|
|
1707
|
+
.halflings-fire:before {
|
|
1708
|
+
content: "\e104";
|
|
1709
|
+
}
|
|
1710
|
+
.halflings-eye-open:before {
|
|
1711
|
+
content: "\e105";
|
|
1712
|
+
}
|
|
1713
|
+
.halflings-eye-close:before {
|
|
1714
|
+
content: "\e106";
|
|
1715
|
+
}
|
|
1716
|
+
.halflings-warning-sign:before {
|
|
1717
|
+
content: "\e107";
|
|
1718
|
+
}
|
|
1719
|
+
.halflings-plane:before {
|
|
1720
|
+
content: "\e108";
|
|
1721
|
+
}
|
|
1722
|
+
.halflings-calendar:before {
|
|
1723
|
+
content: "\e109";
|
|
1724
|
+
}
|
|
1725
|
+
.halflings-random:before {
|
|
1726
|
+
content: "\e110";
|
|
1727
|
+
}
|
|
1728
|
+
.halflings-comments:before {
|
|
1729
|
+
content: "\e111";
|
|
1730
|
+
}
|
|
1731
|
+
.halflings-magnet:before {
|
|
1732
|
+
content: "\e113";
|
|
1733
|
+
}
|
|
1734
|
+
.halflings-chevron-up:before {
|
|
1735
|
+
content: "\e113";
|
|
1736
|
+
}
|
|
1737
|
+
.halflings-chevron-down:before {
|
|
1738
|
+
content: "\e114";
|
|
1739
|
+
}
|
|
1740
|
+
.halflings-retweet:before {
|
|
1741
|
+
content: "\e115";
|
|
1742
|
+
}
|
|
1743
|
+
.halflings-shopping-cart:before {
|
|
1744
|
+
content: "\e116";
|
|
1745
|
+
}
|
|
1746
|
+
.halflings-folder-close:before {
|
|
1747
|
+
content: "\e117";
|
|
1748
|
+
}
|
|
1749
|
+
.halflings-folder-open:before {
|
|
1750
|
+
content: "\e118";
|
|
1751
|
+
}
|
|
1752
|
+
.halflings-resize-vertical:before {
|
|
1753
|
+
content: "\e119";
|
|
1754
|
+
}
|
|
1755
|
+
.halflings-resize-horizontal:before {
|
|
1756
|
+
content: "\e120";
|
|
1757
|
+
}
|
|
1758
|
+
.halflings-hdd:before {
|
|
1759
|
+
content: "\e121";
|
|
1760
|
+
}
|
|
1761
|
+
.halflings-bullhorn:before {
|
|
1762
|
+
content: "\e122";
|
|
1763
|
+
}
|
|
1764
|
+
.halflings-bell:before {
|
|
1765
|
+
content: "\e123";
|
|
1766
|
+
}
|
|
1767
|
+
.halflings-certificate:before {
|
|
1768
|
+
content: "\e124";
|
|
1769
|
+
}
|
|
1770
|
+
.halflings-thumbs-up:before {
|
|
1771
|
+
content: "\e125";
|
|
1772
|
+
}
|
|
1773
|
+
.halflings-thumbs-down:before {
|
|
1774
|
+
content: "\e126";
|
|
1775
|
+
}
|
|
1776
|
+
.halflings-hand-right:before {
|
|
1777
|
+
content: "\e127";
|
|
1778
|
+
}
|
|
1779
|
+
.halflings-hand-left:before {
|
|
1780
|
+
content: "\e128";
|
|
1781
|
+
}
|
|
1782
|
+
.halflings-hand-top:before {
|
|
1783
|
+
content: "\e129";
|
|
1784
|
+
}
|
|
1785
|
+
.halflings-hand-down:before {
|
|
1786
|
+
content: "\e130";
|
|
1787
|
+
}
|
|
1788
|
+
.halflings-circle-arrow-right:before {
|
|
1789
|
+
content: "\e131";
|
|
1790
|
+
}
|
|
1791
|
+
.halflings-circle-arrow-left:before {
|
|
1792
|
+
content: "\e132";
|
|
1793
|
+
}
|
|
1794
|
+
.halflings-circle-arrow-top:before {
|
|
1795
|
+
content: "\e133";
|
|
1796
|
+
}
|
|
1797
|
+
.halflings-circle-arrow-down:before {
|
|
1798
|
+
content: "\e134";
|
|
1799
|
+
}
|
|
1800
|
+
.halflings-globe:before {
|
|
1801
|
+
content: "\e135";
|
|
1802
|
+
}
|
|
1803
|
+
.halflings-wrench:before {
|
|
1804
|
+
content: "\e136";
|
|
1805
|
+
}
|
|
1806
|
+
.halflings-tasks:before {
|
|
1807
|
+
content: "\e137";
|
|
1808
|
+
}
|
|
1809
|
+
.halflings-filter:before {
|
|
1810
|
+
content: "\e138";
|
|
1811
|
+
}
|
|
1812
|
+
.halflings-briefcase:before {
|
|
1813
|
+
content: "\e139";
|
|
1814
|
+
}
|
|
1815
|
+
.halflings-fullscreen:before {
|
|
1816
|
+
content: "\e140";
|
|
1817
|
+
}
|
|
1818
|
+
.halflings-dashboard:before {
|
|
1819
|
+
content: "\e141";
|
|
1820
|
+
}
|
|
1821
|
+
.halflings-paperclip:before {
|
|
1822
|
+
content: "\e142";
|
|
1823
|
+
}
|
|
1824
|
+
.halflings-heart-empty:before {
|
|
1825
|
+
content: "\e143";
|
|
1826
|
+
}
|
|
1827
|
+
.halflings-link:before {
|
|
1828
|
+
content: "\e144";
|
|
1829
|
+
}
|
|
1830
|
+
.halflings-phone:before {
|
|
1831
|
+
content: "\e145";
|
|
1832
|
+
}
|
|
1833
|
+
.halflings-pushpin:before {
|
|
1834
|
+
content: "\e146";
|
|
1835
|
+
}
|
|
1836
|
+
.halflings-euro:before {
|
|
1837
|
+
content: "\20ac";
|
|
1838
|
+
}
|
|
1839
|
+
.halflings-usd:before {
|
|
1840
|
+
content: "\e148";
|
|
1841
|
+
}
|
|
1842
|
+
.halflings-gbp:before {
|
|
1843
|
+
content: "\e149";
|
|
1844
|
+
}
|
|
1845
|
+
.halflings-sort:before {
|
|
1846
|
+
content: "\e150";
|
|
1847
|
+
}
|
|
1848
|
+
.halflings-sort-by-alphabet:before {
|
|
1849
|
+
content: "\e151";
|
|
1850
|
+
}
|
|
1851
|
+
.halflings-sort-by-alphabet-alt:before {
|
|
1852
|
+
content: "\e152";
|
|
1853
|
+
}
|
|
1854
|
+
.halflings-sort-by-order:before {
|
|
1855
|
+
content: "\e153";
|
|
1856
|
+
}
|
|
1857
|
+
.halflings-sort-by-order-alt:before {
|
|
1858
|
+
content: "\e154";
|
|
1859
|
+
}
|
|
1860
|
+
.halflings-sort-by-attributes:before {
|
|
1861
|
+
content: "\e155";
|
|
1862
|
+
}
|
|
1863
|
+
.halflings-sort-by-attributes-alt:before {
|
|
1864
|
+
content: "\e156";
|
|
1865
|
+
}
|
|
1866
|
+
.halflings-unchecked:before {
|
|
1867
|
+
content: "\e157";
|
|
1868
|
+
}
|
|
1869
|
+
.halflings-expand:before {
|
|
1870
|
+
content: "\e158";
|
|
1871
|
+
}
|
|
1872
|
+
.halflings-collapse:before {
|
|
1873
|
+
content: "\e159";
|
|
1874
|
+
}
|
|
1875
|
+
.halflings-collapse-top:before {
|
|
1876
|
+
content: "\e160";
|
|
1877
|
+
}
|
|
1878
|
+
.halflings-icon {
|
|
1879
|
+
display: inline-block;
|
|
1880
|
+
width: 14px;
|
|
1881
|
+
height: 14px;
|
|
1882
|
+
line-height: 14px;
|
|
1883
|
+
vertical-align: text-top;
|
|
1884
|
+
background-image: url(../img/glyphicons-halflings-svg);
|
|
1885
|
+
background-position: 0 0;
|
|
1886
|
+
background-repeat: no-repeat;
|
|
1887
|
+
vertical-align: top;
|
|
1888
|
+
*display: inline;
|
|
1889
|
+
*zoom: 1;
|
|
1890
|
+
*margin-right: .3em;
|
|
1891
|
+
}
|
|
1892
|
+
.no-inlinesvg .halflings-icon {
|
|
1893
|
+
background-image: url(../img/glyphicons-halflings-png);
|
|
1894
|
+
}
|
|
1895
|
+
.halflings-icon.white {
|
|
1896
|
+
background-image: url(../img/glyphicons-halflings-white.svg);
|
|
1897
|
+
}
|
|
1898
|
+
.no-inlinesvg .halflings-icon.white {
|
|
1899
|
+
background-image: url(../img/glyphicons-halflings-white.png);
|
|
1900
|
+
}
|
|
1901
|
+
.halflings-icon.glass {
|
|
1902
|
+
background-position: 0 0;
|
|
1903
|
+
}
|
|
1904
|
+
.halflings-icon.music {
|
|
1905
|
+
background-position: -24px 0;
|
|
1906
|
+
}
|
|
1907
|
+
.halflings-icon.search {
|
|
1908
|
+
background-position: -48px 0;
|
|
1909
|
+
}
|
|
1910
|
+
.halflings-icon.envelope {
|
|
1911
|
+
background-position: -72px 0;
|
|
1912
|
+
}
|
|
1913
|
+
.halflings-icon.heart {
|
|
1914
|
+
background-position: -96px 0;
|
|
1915
|
+
}
|
|
1916
|
+
.halflings-icon.star {
|
|
1917
|
+
background-position: -120px 0;
|
|
1918
|
+
}
|
|
1919
|
+
.halflings-icon.star-empty {
|
|
1920
|
+
background-position: -144px 0;
|
|
1921
|
+
}
|
|
1922
|
+
.halflings-icon.user {
|
|
1923
|
+
background-position: -168px 0;
|
|
1924
|
+
}
|
|
1925
|
+
.halflings-icon.film {
|
|
1926
|
+
background-position: -192px 0;
|
|
1927
|
+
}
|
|
1928
|
+
.halflings-icon.th-large {
|
|
1929
|
+
background-position: -216px 0;
|
|
1930
|
+
}
|
|
1931
|
+
.halflings-icon.th {
|
|
1932
|
+
background-position: -240px 0;
|
|
1933
|
+
}
|
|
1934
|
+
.halflings-icon.th-list {
|
|
1935
|
+
background-position: -264px 0;
|
|
1936
|
+
}
|
|
1937
|
+
.halflings-icon.ok {
|
|
1938
|
+
background-position: -288px 0;
|
|
1939
|
+
}
|
|
1940
|
+
.halflings-icon.remove {
|
|
1941
|
+
background-position: -312px 0;
|
|
1942
|
+
}
|
|
1943
|
+
.halflings-icon.zoom-in {
|
|
1944
|
+
background-position: -336px 0;
|
|
1945
|
+
}
|
|
1946
|
+
.halflings-icon.zoom-out {
|
|
1947
|
+
background-position: -360px 0;
|
|
1948
|
+
}
|
|
1949
|
+
.halflings-icon.off {
|
|
1950
|
+
background-position: -384px 0;
|
|
1951
|
+
}
|
|
1952
|
+
.halflings-icon.signal {
|
|
1953
|
+
background-position: -408px 0;
|
|
1954
|
+
}
|
|
1955
|
+
.halflings-icon.cog {
|
|
1956
|
+
background-position: -432px 0;
|
|
1957
|
+
}
|
|
1958
|
+
.halflings-icon.trash {
|
|
1959
|
+
background-position: -456px 0;
|
|
1960
|
+
}
|
|
1961
|
+
.halflings-icon.home {
|
|
1962
|
+
background-position: 0 -24px;
|
|
1963
|
+
}
|
|
1964
|
+
.halflings-icon.file {
|
|
1965
|
+
background-position: -24px -24px;
|
|
1966
|
+
}
|
|
1967
|
+
.halflings-icon.time {
|
|
1968
|
+
background-position: -48px -24px;
|
|
1969
|
+
}
|
|
1970
|
+
.halflings-icon.road {
|
|
1971
|
+
background-position: -72px -24px;
|
|
1972
|
+
}
|
|
1973
|
+
.halflings-icon.download-alt {
|
|
1974
|
+
background-position: -96px -24px;
|
|
1975
|
+
}
|
|
1976
|
+
.halflings-icon.download {
|
|
1977
|
+
background-position: -120px -24px;
|
|
1978
|
+
}
|
|
1979
|
+
.halflings-icon.upload {
|
|
1980
|
+
background-position: -144px -24px;
|
|
1981
|
+
}
|
|
1982
|
+
.halflings-icon.inbox {
|
|
1983
|
+
background-position: -168px -24px;
|
|
1984
|
+
}
|
|
1985
|
+
.halflings-icon.play-circle {
|
|
1986
|
+
background-position: -192px -24px;
|
|
1987
|
+
}
|
|
1988
|
+
.halflings-icon.repeat {
|
|
1989
|
+
background-position: -216px -24px;
|
|
1990
|
+
}
|
|
1991
|
+
.halflings-icon.refresh {
|
|
1992
|
+
background-position: -240px -24px;
|
|
1993
|
+
}
|
|
1994
|
+
.halflings-icon.list-alt {
|
|
1995
|
+
background-position: -264px -24px;
|
|
1996
|
+
}
|
|
1997
|
+
.halflings-icon.lock {
|
|
1998
|
+
background-position: -287px -24px;
|
|
1999
|
+
}
|
|
2000
|
+
.halflings-icon.flag {
|
|
2001
|
+
background-position: -312px -24px;
|
|
2002
|
+
}
|
|
2003
|
+
.halflings-icon.headphones {
|
|
2004
|
+
background-position: -336px -24px;
|
|
2005
|
+
}
|
|
2006
|
+
.halflings-icon.volume-off {
|
|
2007
|
+
background-position: -360px -24px;
|
|
2008
|
+
}
|
|
2009
|
+
.halflings-icon.volume-down {
|
|
2010
|
+
background-position: -384px -24px;
|
|
2011
|
+
}
|
|
2012
|
+
.halflings-icon.volume-up {
|
|
2013
|
+
background-position: -408px -24px;
|
|
2014
|
+
}
|
|
2015
|
+
.halflings-icon.qrcode {
|
|
2016
|
+
background-position: -432px -24px;
|
|
2017
|
+
}
|
|
2018
|
+
.halflings-icon.barcode {
|
|
2019
|
+
background-position: -456px -24px;
|
|
2020
|
+
}
|
|
2021
|
+
.halflings-icon.tag {
|
|
2022
|
+
background-position: 0 -48px;
|
|
2023
|
+
}
|
|
2024
|
+
.halflings-icon.tags {
|
|
2025
|
+
background-position: -25px -48px;
|
|
2026
|
+
}
|
|
2027
|
+
.halflings-icon.book {
|
|
2028
|
+
background-position: -48px -48px;
|
|
2029
|
+
}
|
|
2030
|
+
.halflings-icon.bookmark {
|
|
2031
|
+
background-position: -72px -48px;
|
|
2032
|
+
}
|
|
2033
|
+
.halflings-icon.print {
|
|
2034
|
+
background-position: -96px -48px;
|
|
2035
|
+
}
|
|
2036
|
+
.halflings-icon.camera {
|
|
2037
|
+
background-position: -120px -48px;
|
|
2038
|
+
}
|
|
2039
|
+
.halflings-icon.font {
|
|
2040
|
+
background-position: -144px -48px;
|
|
2041
|
+
}
|
|
2042
|
+
.halflings-icon.bold {
|
|
2043
|
+
background-position: -167px -48px;
|
|
2044
|
+
}
|
|
2045
|
+
.halflings-icon.italic {
|
|
2046
|
+
background-position: -192px -48px;
|
|
2047
|
+
}
|
|
2048
|
+
.halflings-icon.text-height {
|
|
2049
|
+
background-position: -216px -48px;
|
|
2050
|
+
}
|
|
2051
|
+
.halflings-icon.text-width {
|
|
2052
|
+
background-position: -240px -48px;
|
|
2053
|
+
}
|
|
2054
|
+
.halflings-icon.align-left {
|
|
2055
|
+
background-position: -264px -48px;
|
|
2056
|
+
}
|
|
2057
|
+
.halflings-icon.align-center {
|
|
2058
|
+
background-position: -288px -48px;
|
|
2059
|
+
}
|
|
2060
|
+
.halflings-icon.align-right {
|
|
2061
|
+
background-position: -312px -48px;
|
|
2062
|
+
}
|
|
2063
|
+
.halflings-icon.align-justify {
|
|
2064
|
+
background-position: -336px -48px;
|
|
2065
|
+
}
|
|
2066
|
+
.halflings-icon.list {
|
|
2067
|
+
background-position: -360px -48px;
|
|
2068
|
+
}
|
|
2069
|
+
.halflings-icon.indent-left {
|
|
2070
|
+
background-position: -384px -48px;
|
|
2071
|
+
}
|
|
2072
|
+
.halflings-icon.indent-right {
|
|
2073
|
+
background-position: -408px -48px;
|
|
2074
|
+
}
|
|
2075
|
+
.halflings-icon.facetime-video {
|
|
2076
|
+
background-position: -432px -48px;
|
|
2077
|
+
}
|
|
2078
|
+
.halflings-icon.picture {
|
|
2079
|
+
background-position: -456px -48px;
|
|
2080
|
+
}
|
|
2081
|
+
.halflings-icon.pencil {
|
|
2082
|
+
background-position: 0 -72px;
|
|
2083
|
+
}
|
|
2084
|
+
.halflings-icon.map-marker {
|
|
2085
|
+
background-position: -24px -72px;
|
|
2086
|
+
}
|
|
2087
|
+
.halflings-icon.adjust {
|
|
2088
|
+
background-position: -48px -72px;
|
|
2089
|
+
}
|
|
2090
|
+
.halflings-icon.tint {
|
|
2091
|
+
background-position: -72px -72px;
|
|
2092
|
+
}
|
|
2093
|
+
.halflings-icon.edit {
|
|
2094
|
+
background-position: -96px -72px;
|
|
2095
|
+
}
|
|
2096
|
+
.halflings-icon.share {
|
|
2097
|
+
background-position: -120px -72px;
|
|
2098
|
+
}
|
|
2099
|
+
.halflings-icon.check {
|
|
2100
|
+
background-position: -144px -72px;
|
|
2101
|
+
}
|
|
2102
|
+
.halflings-icon.move {
|
|
2103
|
+
background-position: -168px -72px;
|
|
2104
|
+
}
|
|
2105
|
+
.halflings-icon.step-backward {
|
|
2106
|
+
background-position: -192px -72px;
|
|
2107
|
+
}
|
|
2108
|
+
.halflings-icon.fast-backward {
|
|
2109
|
+
background-position: -216px -72px;
|
|
2110
|
+
}
|
|
2111
|
+
.halflings-icon.backward {
|
|
2112
|
+
background-position: -240px -72px;
|
|
2113
|
+
}
|
|
2114
|
+
.halflings-icon.play {
|
|
2115
|
+
background-position: -264px -72px;
|
|
2116
|
+
}
|
|
2117
|
+
.halflings-icon.pause {
|
|
2118
|
+
background-position: -288px -72px;
|
|
2119
|
+
}
|
|
2120
|
+
.halflings-icon.stop {
|
|
2121
|
+
background-position: -312px -72px;
|
|
2122
|
+
}
|
|
2123
|
+
.halflings-icon.forward {
|
|
2124
|
+
background-position: -336px -72px;
|
|
2125
|
+
}
|
|
2126
|
+
.halflings-icon.fast-forward {
|
|
2127
|
+
background-position: -360px -72px;
|
|
2128
|
+
}
|
|
2129
|
+
.halflings-icon.step-forward {
|
|
2130
|
+
background-position: -384px -72px;
|
|
2131
|
+
}
|
|
2132
|
+
.halflings-icon.eject {
|
|
2133
|
+
background-position: -408px -72px;
|
|
2134
|
+
}
|
|
2135
|
+
.halflings-icon.chevron-left {
|
|
2136
|
+
background-position: -432px -72px;
|
|
2137
|
+
}
|
|
2138
|
+
.halflings-icon.chevron-right {
|
|
2139
|
+
background-position: -456px -72px;
|
|
2140
|
+
}
|
|
2141
|
+
.halflings-icon.plus-sign {
|
|
2142
|
+
background-position: 0 -96px;
|
|
2143
|
+
}
|
|
2144
|
+
.halflings-icon.minus-sign {
|
|
2145
|
+
background-position: -24px -96px;
|
|
2146
|
+
}
|
|
2147
|
+
.halflings-icon.remove-sign {
|
|
2148
|
+
background-position: -48px -96px;
|
|
2149
|
+
}
|
|
2150
|
+
.halflings-icon.ok-sign {
|
|
2151
|
+
background-position: -72px -96px;
|
|
2152
|
+
}
|
|
2153
|
+
.halflings-icon.question-sign {
|
|
2154
|
+
background-position: -96px -96px;
|
|
2155
|
+
}
|
|
2156
|
+
.halflings-icon.info-sign {
|
|
2157
|
+
background-position: -120px -96px;
|
|
2158
|
+
}
|
|
2159
|
+
.halflings-icon.screenshot {
|
|
2160
|
+
background-position: -144px -96px;
|
|
2161
|
+
}
|
|
2162
|
+
.halflings-icon.remove-circle {
|
|
2163
|
+
background-position: -168px -96px;
|
|
2164
|
+
}
|
|
2165
|
+
.halflings-icon.ok-circle {
|
|
2166
|
+
background-position: -192px -96px;
|
|
2167
|
+
}
|
|
2168
|
+
.halflings-icon.ban-circle {
|
|
2169
|
+
background-position: -216px -96px;
|
|
2170
|
+
}
|
|
2171
|
+
.halflings-icon.arrow-left {
|
|
2172
|
+
background-position: -240px -96px;
|
|
2173
|
+
}
|
|
2174
|
+
.halflings-icon.arrow-right {
|
|
2175
|
+
background-position: -264px -96px;
|
|
2176
|
+
}
|
|
2177
|
+
.halflings-icon.arrow-up {
|
|
2178
|
+
background-position: -289px -96px;
|
|
2179
|
+
}
|
|
2180
|
+
.halflings-icon.arrow-down {
|
|
2181
|
+
background-position: -312px -96px;
|
|
2182
|
+
}
|
|
2183
|
+
.halflings-icon.share-alt {
|
|
2184
|
+
background-position: -336px -96px;
|
|
2185
|
+
}
|
|
2186
|
+
.halflings-icon.resize-full {
|
|
2187
|
+
background-position: -360px -96px;
|
|
2188
|
+
}
|
|
2189
|
+
.halflings-icon.resize-small {
|
|
2190
|
+
background-position: -384px -96px;
|
|
2191
|
+
}
|
|
2192
|
+
.halflings-icon.plus {
|
|
2193
|
+
background-position: -408px -96px;
|
|
2194
|
+
}
|
|
2195
|
+
.halflings-icon.minus {
|
|
2196
|
+
background-position: -433px -96px;
|
|
2197
|
+
}
|
|
2198
|
+
.halflings-icon.asterisk {
|
|
2199
|
+
background-position: -456px -96px;
|
|
2200
|
+
}
|
|
2201
|
+
.halflings-icon.exclamation-sign {
|
|
2202
|
+
background-position: 0 -120px;
|
|
2203
|
+
}
|
|
2204
|
+
.halflings-icon.gift {
|
|
2205
|
+
background-position: -24px -120px;
|
|
2206
|
+
}
|
|
2207
|
+
.halflings-icon.leaf {
|
|
2208
|
+
background-position: -48px -120px;
|
|
2209
|
+
}
|
|
2210
|
+
.halflings-icon.fire {
|
|
2211
|
+
background-position: -72px -120px;
|
|
2212
|
+
}
|
|
2213
|
+
.halflings-icon.eye-open {
|
|
2214
|
+
background-position: -96px -120px;
|
|
2215
|
+
}
|
|
2216
|
+
.halflings-icon.eye-close {
|
|
2217
|
+
background-position: -120px -120px;
|
|
2218
|
+
}
|
|
2219
|
+
.halflings-icon.warning-sign {
|
|
2220
|
+
background-position: -144px -120px;
|
|
2221
|
+
}
|
|
2222
|
+
.halflings-icon.plane {
|
|
2223
|
+
background-position: -168px -120px;
|
|
2224
|
+
}
|
|
2225
|
+
.halflings-icon.calendar {
|
|
2226
|
+
background-position: -192px -120px;
|
|
2227
|
+
}
|
|
2228
|
+
.halflings-icon.random {
|
|
2229
|
+
background-position: -216px -120px;
|
|
2230
|
+
}
|
|
2231
|
+
.halflings-icon.comments {
|
|
2232
|
+
background-position: -240px -120px;
|
|
2233
|
+
}
|
|
2234
|
+
.halflings-icon.magnet {
|
|
2235
|
+
background-position: -264px -120px;
|
|
2236
|
+
}
|
|
2237
|
+
.halflings-icon.chevron-up {
|
|
2238
|
+
background-position: -288px -120px;
|
|
2239
|
+
}
|
|
2240
|
+
.halflings-icon.chevron-down {
|
|
2241
|
+
background-position: -313px -119px;
|
|
2242
|
+
}
|
|
2243
|
+
.halflings-icon.retweet {
|
|
2244
|
+
background-position: -336px -120px;
|
|
2245
|
+
}
|
|
2246
|
+
.halflings-icon.shopping-cart {
|
|
2247
|
+
background-position: -360px -120px;
|
|
2248
|
+
}
|
|
2249
|
+
.halflings-icon.folder-close {
|
|
2250
|
+
background-position: -384px -120px;
|
|
2251
|
+
}
|
|
2252
|
+
.halflings-icon.folder-open {
|
|
2253
|
+
background-position: -408px -120px;
|
|
2254
|
+
}
|
|
2255
|
+
.halflings-icon.resize-vertical {
|
|
2256
|
+
background-position: -432px -119px;
|
|
2257
|
+
}
|
|
2258
|
+
.halflings-icon.resize-horizontal {
|
|
2259
|
+
background-position: -456px -118px;
|
|
2260
|
+
}
|
|
2261
|
+
.halflings-icon.hdd {
|
|
2262
|
+
background-position: 0px -144px;
|
|
2263
|
+
}
|
|
2264
|
+
.halflings-icon.bullhorn {
|
|
2265
|
+
background-position: -24px -144px;
|
|
2266
|
+
}
|
|
2267
|
+
.halflings-icon.bell {
|
|
2268
|
+
background-position: -48px -144px;
|
|
2269
|
+
}
|
|
2270
|
+
.halflings-icon.certificate {
|
|
2271
|
+
background-position: -72px -144px;
|
|
2272
|
+
}
|
|
2273
|
+
.halflings-icon.thumbs-up {
|
|
2274
|
+
background-position: -96px -144px;
|
|
2275
|
+
}
|
|
2276
|
+
.halflings-icon.thumbs-down {
|
|
2277
|
+
background-position: -120px -144px;
|
|
2278
|
+
}
|
|
2279
|
+
.halflings-icon.hand-right {
|
|
2280
|
+
background-position: -144px -144px;
|
|
2281
|
+
}
|
|
2282
|
+
.halflings-icon.hand-left {
|
|
2283
|
+
background-position: -168px -144px;
|
|
2284
|
+
}
|
|
2285
|
+
.halflings-icon.hand-top {
|
|
2286
|
+
background-position: -192px -144px;
|
|
2287
|
+
}
|
|
2288
|
+
.halflings-icon.hand-down {
|
|
2289
|
+
background-position: -216px -144px;
|
|
2290
|
+
}
|
|
2291
|
+
.halflings-icon.circle-arrow-right {
|
|
2292
|
+
background-position: -240px -144px;
|
|
2293
|
+
}
|
|
2294
|
+
.halflings-icon.circle-arrow-left {
|
|
2295
|
+
background-position: -264px -144px;
|
|
2296
|
+
}
|
|
2297
|
+
.halflings-icon.circle-arrow-top {
|
|
2298
|
+
background-position: -288px -144px;
|
|
2299
|
+
}
|
|
2300
|
+
.halflings-icon.circle-arrow-down {
|
|
2301
|
+
background-position: -313px -144px;
|
|
2302
|
+
}
|
|
2303
|
+
.halflings-icon.globe {
|
|
2304
|
+
background-position: -336px -144px;
|
|
2305
|
+
}
|
|
2306
|
+
.halflings-icon.wrench {
|
|
2307
|
+
background-position: -360px -144px;
|
|
2308
|
+
}
|
|
2309
|
+
.halflings-icon.tasks {
|
|
2310
|
+
background-position: -384px -144px;
|
|
2311
|
+
}
|
|
2312
|
+
.halflings-icon.filter {
|
|
2313
|
+
background-position: -408px -144px;
|
|
2314
|
+
}
|
|
2315
|
+
.halflings-icon.briefcase {
|
|
2316
|
+
background-position: -432px -144px;
|
|
2317
|
+
}
|
|
2318
|
+
.halflings-icon.fullscreen {
|
|
2319
|
+
background-position: -456px -144px;
|
|
2320
|
+
}
|
|
2321
|
+
.halflings-icon.dashboard {
|
|
2322
|
+
background-position: 0px -168px;
|
|
2323
|
+
}
|
|
2324
|
+
.halflings-icon.paperclip {
|
|
2325
|
+
background-position: -24px -168px;
|
|
2326
|
+
}
|
|
2327
|
+
.halflings-icon.heart-empty {
|
|
2328
|
+
background-position: -48px -168px;
|
|
2329
|
+
}
|
|
2330
|
+
.halflings-icon.link {
|
|
2331
|
+
background-position: -72px -168px;
|
|
2332
|
+
}
|
|
2333
|
+
.halflings-icon.phone {
|
|
2334
|
+
background-position: -96px -168px;
|
|
2335
|
+
}
|
|
2336
|
+
.halflings-icon.pushpin {
|
|
2337
|
+
background-position: -120px -168px;
|
|
2338
|
+
}
|
|
2339
|
+
.halflings-icon.euro {
|
|
2340
|
+
background-position: -144px -168px;
|
|
2341
|
+
}
|
|
2342
|
+
.halflings-icon.usd {
|
|
2343
|
+
background-position: -168px -168px;
|
|
2344
|
+
}
|
|
2345
|
+
.halflings-icon.gbp {
|
|
2346
|
+
background-position: -192px -168px;
|
|
2347
|
+
}
|
|
2348
|
+
.halflings-icon.sort {
|
|
2349
|
+
background-position: -216px -168px;
|
|
2350
|
+
}
|
|
2351
|
+
.halflings-icon.sort-by-alphabet {
|
|
2352
|
+
background-position: -240px -168px;
|
|
2353
|
+
}
|
|
2354
|
+
.halflings-icon.sort-by-alphabet-alt {
|
|
2355
|
+
background-position: -264px -168px;
|
|
2356
|
+
}
|
|
2357
|
+
.halflings-icon.sort-by-order {
|
|
2358
|
+
background-position: -288px -168px;
|
|
2359
|
+
}
|
|
2360
|
+
.halflings-icon.sort-by-order-alt {
|
|
2361
|
+
background-position: -313px -168px;
|
|
2362
|
+
}
|
|
2363
|
+
.halflings-icon.sort-by-attributes {
|
|
2364
|
+
background-position: -336px -168px;
|
|
2365
|
+
}
|
|
2366
|
+
.halflings-icon.sort-by-attributes-alt {
|
|
2367
|
+
background-position: -360px -168px;
|
|
2368
|
+
}
|
|
2369
|
+
.halflings-icon.unchecked {
|
|
2370
|
+
background-position: -384px -168px;
|
|
2371
|
+
}
|
|
2372
|
+
.halflings-icon.expand {
|
|
2373
|
+
background-position: -408px -168px;
|
|
2374
|
+
}
|
|
2375
|
+
.halflings-icon.collapse {
|
|
2376
|
+
background-position: -432px -168px;
|
|
2377
|
+
}
|
|
2378
|
+
.halflings-icon.collapse-top {
|
|
2379
|
+
background-position: -456px -168px;
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
/* Localized */
|