From 58ac0c6435b3b2a53a72db2a3ff3fb12e081b3f3 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 15 Mar 2018 12:05:49 +0100 Subject: UI: refactoring --- chimere/admin.py | 8 + chimere/migrations/0014_auto_20180313_1033.py | 36 + chimere/models.py | 18 +- chimere/static/chimere/css/styles.css | 2548 +++++++++++++-- chimere/static/chimere/img/carret.png | Bin 0 -> 408 bytes chimere/static/chimere/img/logo.jpg | Bin 25981 -> 11791 bytes chimere/static/chimere/img/modify.png | Bin 0 -> 882 bytes chimere/static/chimere/img/modify.svg | 58 + chimere/static/chimere/img/share.svg | 40 + chimere/static/chimere/js/jquery.chimere.js | 66 +- chimere/static/font-awesome/css/font-awesome.css | 558 +++- .../static/font-awesome/css/font-awesome.min.css | 4 +- chimere/static/font-awesome/fonts/FontAwesome.otf | Bin 93888 -> 134808 bytes .../font-awesome/fonts/fontawesome-webfont.eot | Bin 60767 -> 165742 bytes .../font-awesome/fonts/fontawesome-webfont.svg | 3230 ++++++++++++++++---- .../font-awesome/fonts/fontawesome-webfont.ttf | Bin 122092 -> 165548 bytes .../font-awesome/fonts/fontawesome-webfont.woff | Bin 71508 -> 98024 bytes .../font-awesome/fonts/fontawesome-webfont.woff2 | Bin 56780 -> 77160 bytes chimere/static/fonts/OpenSansCondensed.ttf | Bin 0 -> 27576 bytes chimere/static/responsiveslides/README.md | 106 + .../static/responsiveslides/responsiveslides.css | 33 + .../static/responsiveslides/responsiveslides.js | 391 +++ .../responsiveslides/responsiveslides.min.js | 8 + chimere/static/saclay/css/styles.css | 2302 -------------- chimere/static/saclay/images/icon-bg.png | Bin 0 -> 860 bytes chimere/static/saclay/images/icon-bg.svg | 70 + chimere/static/saclay/images/logo.jpg | Bin 11791 -> 0 bytes chimere/static/saclay/js/interface.js | 3 + chimere/templates/chimere/base.html | 3 +- chimere/templates/chimere/blocks/actions.html | 45 +- chimere/templates/chimere/blocks/categories.html | 6 +- chimere/templates/chimere/blocks/footer.html | 4 +- chimere/templates/chimere/blocks/map.html | 2 +- .../templates/chimere/blocks/multimedia_file.html | 1 - chimere/templates/chimere/blocks/share_bar.html | 2 - chimere/templates/chimere/detail.html | 124 +- chimere/templates/chimere/detail_description.html | 11 + chimere/templates/chimere/detail_popup.html | 63 + chimere/templates/chimere/main_map.html | 9 +- chimere/templates/search/search.html | 12 +- chimere/templates/search/search_haystack.html | 2 +- chimere/templatetags/chimere_tags.py | 4 +- chimere/views.py | 19 + 43 files changed, 6519 insertions(+), 3267 deletions(-) create mode 100644 chimere/migrations/0014_auto_20180313_1033.py create mode 100644 chimere/static/chimere/img/carret.png create mode 100644 chimere/static/chimere/img/modify.png create mode 100644 chimere/static/chimere/img/modify.svg create mode 100644 chimere/static/chimere/img/share.svg create mode 100644 chimere/static/fonts/OpenSansCondensed.ttf create mode 100644 chimere/static/responsiveslides/README.md create mode 100644 chimere/static/responsiveslides/responsiveslides.css create mode 100644 chimere/static/responsiveslides/responsiveslides.js create mode 100644 chimere/static/responsiveslides/responsiveslides.min.js delete mode 100644 chimere/static/saclay/css/styles.css create mode 100644 chimere/static/saclay/images/icon-bg.png create mode 100644 chimere/static/saclay/images/icon-bg.svg delete mode 100644 chimere/static/saclay/images/logo.jpg create mode 100644 chimere/templates/chimere/detail_description.html create mode 100644 chimere/templates/chimere/detail_popup.html diff --git a/chimere/admin.py b/chimere/admin.py index 2fb36e8..c63a7fb 100644 --- a/chimere/admin.py +++ b/chimere/admin.py @@ -31,6 +31,7 @@ from django.contrib.auth.admin import UserAdmin as VanillaUserAdmin from django.contrib.auth.models import User from django.core.exceptions import ObjectDoesNotExist from django.db.models import Q +from django import forms from django.http import HttpResponse, HttpResponseRedirect from django.shortcuts import render_to_response from django.template import RequestContext @@ -605,8 +606,15 @@ class NewsAdmin(admin.ModelAdmin): form = NewsAdminForm +class SubcatForm(forms.ModelForm): + class Meta: + model = SubCategory + exclude = ['hover_icon', 'as_layer', 'weight_formula', 'routing_warn'] + + class SubcatInline(admin.TabularInline): model = SubCategory + form = SubcatForm extra = 1 diff --git a/chimere/migrations/0014_auto_20180313_1033.py b/chimere/migrations/0014_auto_20180313_1033.py new file mode 100644 index 0000000..c7aebda --- /dev/null +++ b/chimere/migrations/0014_auto_20180313_1033.py @@ -0,0 +1,36 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.5 on 2018-03-13 10:33 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('chimere', '0013_auto_20180312_1030'), + ] + + operations = [ + migrations.AddField( + model_name='subcategory', + name='menu_icon', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='subcat_menu', to='chimere.Icon', verbose_name='Menu icon'), + ), + migrations.AddField( + model_name='subcategory', + name='menu_icon_off', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='subcat_menu_off', to='chimere.Icon', verbose_name='Menu icon off'), + ), + migrations.AlterField( + model_name='color', + name='color_theme', + field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='colors', to='chimere.ColorTheme', verbose_name='Color theme'), + ), + migrations.AlterField( + model_name='subcategory', + name='color_theme', + field=models.ForeignKey(blank=True, help_text='For route and polygon', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='subcategories', to='chimere.ColorTheme', verbose_name='Color theme'), + ), + ] diff --git a/chimere/models.py b/chimere/models.py index 4ff6ab7..c4fa9b3 100644 --- a/chimere/models.py +++ b/chimere/models.py @@ -197,7 +197,8 @@ class Color(models.Model): help_text=_("HTML code/name"), blank=True, null=True) order = models.IntegerField(_("Order")) - color_theme = models.ForeignKey(ColorTheme, verbose_name=_("Color theme")) + color_theme = models.ForeignKey(ColorTheme, verbose_name=_("Color theme"), + related_name='colors') class Meta: ordering = ["order"] @@ -275,21 +276,27 @@ class SubCategory(models.Model): ('P', _('Polygon')), ('B', _('Both')),) item_type = models.CharField(_("Item type"), max_length=1, choices=TYPE) + order = models.IntegerField(_("Order"), default=1000) dated = models.BooleanField(_("Is dated"), default=False) description = models.TextField(blank=True, null=True) icon = models.ForeignKey(Icon, verbose_name=_("Icon")) hover_icon = models.ForeignKey( Icon, verbose_name=_("Hover icon"), blank=True, null=True, related_name='subcat_hovered') - color_theme = models.ForeignKey(ColorTheme, verbose_name=_("Color theme"), - blank=True, null=True, - related_name='subcategories') + menu_icon = models.ForeignKey( + Icon, verbose_name=_("Menu icon"), blank=True, null=True, + related_name='subcat_menu') + menu_icon_off = models.ForeignKey( + Icon, verbose_name=_("Menu icon off"), blank=True, null=True, + related_name='subcat_menu_off') + color_theme = models.ForeignKey( + ColorTheme, verbose_name=_("Color theme"), blank=True, null=True, + related_name='subcategories', help_text=_("For route and polygon")) as_layer = models.BooleanField(_("Displayed in the layer menu"), default=False) weight_formula = models.TextField(_("Weight formula"), default="", blank=True, null=True) routing_warn = models.BooleanField(_("Routing warn"), default=False) - order = models.IntegerField(_("Order"), default=1000) keywords = models.TextField(_("Keywords"), max_length=200, blank=True, null=True) min_zoom = models.IntegerField( @@ -1554,6 +1561,7 @@ class PictureFile(models.Model): class Meta: verbose_name = _("Picture file") verbose_name_plural = _("Picture files") + ordering = ['order'] def scale_image(max_x, pair): diff --git a/chimere/static/chimere/css/styles.css b/chimere/static/chimere/css/styles.css index 0649d3a..d1036a8 100644 --- a/chimere/static/chimere/css/styles.css +++ b/chimere/static/chimere/css/styles.css @@ -1,109 +1,260 @@ -/* color definition */ +@font-face { + font-family: TexGyreHeros; + font-weight: bold; + src: url("../../saclay/fonts/texgyreheros-bold.otf") format("opentype"); +} -a, a:link, a:visited, legend, -#footer .map-footer a, #footer .map-footer a:link, -#footer .map-footer a:visited, -.detail_footer a, caption, -#categories li#display_submited, h4, -.simple .cloud h2{ - color:#54c200; +@font-face { + font-family: 'Open Sans Condensed'; + font-style: normal; + font-weight: 300; + src: local('Open Sans Condensed Light'), local('OpenSansCondensed-Light'), url(../../fonts/OpenSansCondensed.ttf) format('truetype'); } -.errorlist li, .errorlist legend, fieldset.errorlist{ - color:#ff3f3f; + +/* color to remove */ + +.nav-pills > li#simple_button-lnk > a > .fa{ + color:#777; } -h2, h3, th, .action li, .action li a, -.action li li a, #no-js-message, -#footer a, #footer a:link, #footer a:visited, .ui-widget-header, -#layer_selection h4, -#chimere_itinerary td.l{ +.pager li a, +.detail_amendment a, .detail_amendment a:visited, +.nav-pills > li.active > a > .fa{ color:#fff; } -#search-listing ul li a, -.action li.ui-state-active a, -#content .olControlLayerSwitcher, -.action li li.ui-state-active a{ - color:#333; +#frm_categories { + background-color: #fff; +} + +.pager li a, +.detail_amendment, +.nav-pills > li.active > a, .nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + background-color: #99CA3C; } -.nominatim-widget, .disabled{ - color:#aaa; +.pager li a:hover{ + background-color: #327E04; } -#chimere_total_label td.l{ - color:#000; +.pager li a:hover{ + border-color: #327E04; } -th{ - color: #cccccc; +#footer a, #footer a:link, #footer a:visited{ + color:#327E04; } -/* background-color definition */ -h2, h3, -.ui-widget-header, +/* end color to remove */ + +/* + * Font colors + */ + +/* main */ +html, h1, h2, +.action li, .ui-dialog .ui-dialog-titlebar, #layer_selection h4, -.action li.selected, #no-js-message, -#content .olControlLayerSwitcher .layersDiv, -#content .olControlLayerSwitcher span, -#chimere_itinerary td.l{ - background-color:#cccccc; +#chimere_itinerary_content div.s{ + color:#444; } -.ui-widget-header{ - background-image:None; +/* light */ +h2, .cloud h4, #layer_selection, #layer_selection h4, #permalink, +#chimere_itinerary_panel label, .ui-menu .ui-menu-item a, #submited-window, +#welcome .footer a, label, .map_button a, #marker_hover_content, .notice{ + color:#929288; } -fieldset, .action li, #content, -#layer_selection #layer_list, -#map-footer, #panel, #chimere_itinerary_panel, #areas, -#welcome .modal-content, #detail, .detail_footer a, -#content .olControlLayerSwitcher .layersDiv, -#content .olControlLayerSwitcher span, -#chimere_total_label td.l, .window{ - background-color:#FFF; +/* light darker*/ +#layer_selection li.head{ + color:#a7a799 } -div.warning, .errorlist, .errorlist legend{ - background-color:#ffca64; +/* activated */ +#detail_footer, #detail_footer a, #chimere_itinerary h4, +h3.warn, .itinerary_label.itinerary_start, .itinerary_label.itinerary_end, +.action li.ui-state-active{ + color:#fff; } -.simple .cloud h2{ - background-color:transparent; +/* blue*/ +.itinerary_label{ + color:#6f8196; +} + +/* navigation */ +a, a:link, a:visited, +#footer .map-footer a, #footer .map-footer a:link, +#footer .map-footer a:visited, +#welcome .footer, +caption{ + color:#444; +} + +.action a, +.pager li a, .nav-pills > li.active > a, +.pager li a:hover, .nav-pills > li.active > a:hover, +.nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, +#back-categories{ + color: #60543A; +} + +.pager li a, .nav-pills > li.active > a, +.pager li a:hover, .nav-pills > li.active > a:hover, +.nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus, +#back-categories{ + background-color: #eaeaea; +} + + +.pager li a, +.pager li a:hover { + border-color: #eaeaea; +} + +/* strong */ + +.welcome-dialog h2, .edit h3, h3, h4, legend{ + color:#000; +} + +/* alternate link */ +.read_more, +.read_less{ + color:#a1a18b; +} + +/* links */ +a, a:link, a:visited, +#footer .map-footer a, #footer .map-footer a:link, +#footer .map-footer a:visited, +#welcome .footer, +caption{ + text-decoration:none; + font-weight:bold; + font-size:0.9em; } -.action li.selected{ - border:1px solid #54c200; +#detail_footer, +#detail_footer a{ + text-decoration:none; + font-weight:normal; } -/* rounded */ +#detail_footer a { + display: inline-block; +} -/* entête */ /* -#areas h2, #panel h2{ - -moz-border-radius: 4px 4px 0 0; - -webkit-border-radius: 4px 4px 0 0; - border-radius: 4px 4px 0 0; + * Background colors + */ + +/* default */ +body, #content, .action li.ui-button, .news, #multimedia_form, +#submited-window, .dialog-content .content{ + background-color:#eee; } +/* alternative background */ +#layer_selection #layer_list li.head, +.welcome-dialog h2, +ul#multimedia_list_content li, #welcome .footer, +#action{ + background-color: #eaeaea; +} -h2, #action li, .detail_footer{ - -moz-border-radius: 4px; - -webkit-border-radius: 4px; - border-radius: 4px; +#detail_footer a{ + background-color:#9f9f89; } -fieldset, #content, #panel, -#areas, #welcome, #detail, -#category_description, div.warning{ - -moz-border-radius: 10px; - -webkit-border-radius: 10px; - border-radius: 10px; + +/* lighter */ +a#ui-active-menuitem.ui-state-hover, +#chimere_itinerary_panel input[type=text]{ + background-color:#f0f0e9; } -*/ -/**/ + +.read_more, +.read_less{ + background-color:#c1c1b0; +} + +/* blue */ +#chimere_itinerary h4, .roadmap_title{ + background-color:#6f8196; +} + +/* light blue */ +#chimere_itinerary_content div.s, +.itinerary_label{ + background-color:#dfe8f3; +} + +/* green */ +.itinerary_label.itinerary_start{ + background-color:#73a44b; +} + +/* red */ +h3.warn, +.itinerary_label.itinerary_end{ + background-color:#a53f3f; +} + +/* light pink */ +div.warning, .errorlist{ + background-color:#fed; +} + +/* blank */ +#edit-panel, #permalink, +#layer_selection h4, #chimere_itinerary_content div.n, +.edit h4{ + background-color:#fff; +} + +h2, h3{ + background:none; +} + +/* + * Borders + */ +#layer_selection h4, ul#multimedia_list_content li, #layer_selection #layer_list, +#layer_selection #layer_list li, .itinerary_label .label, #footer-panel, +#detail_footer, #areas, #detail, #main-map, div.warning, #content, +.action li.selected, #content .olControlLayerSwitcher .layersDiv, #panel, +#map-footer, #utils-div, #action, #panel #categories, .main_category, +#page_title, #ul_categories .subcategories li, #action-panel, +ul.ui-autocomplete.ui-menu.ui-corner-all.ui-widget-content, .extra-criteria, +#chimere_itinerary_form, .welcome-logo, #permalink, #footer-panel{ + border-color:#999; +} + +#id_transport_it span{ + border-color:#AAA; +} +/* + * Images + */ + +.action li{ + background:none; +} + +/* + * Opacity + */ + +#chimere_itinerary_panel, +div#panel{ + opacity:1; +} + /* Bootstrap */ @@ -130,10 +281,8 @@ fieldset, #content, #panel, html, body{ margin:0; padding:0; -} - -fieldset p{ - margin:4px 8px; + height:100%; + overflow:hidden; } legend{ @@ -159,16 +308,26 @@ h3{ padding: 0.1em; } -.draggable h2{ - cursor:move; +h3.warn{ + padding:0.3em; + margin:0; } h4, caption{ - font-weight:normal; + font-weight:bold; margin:0; text-align:left; } +label{ + font-weight:bold; + font-size:0.9em; +} + +fieldset p{ + margin:4px 8px; +} + th{ padding:0.2em 1em; } @@ -181,6 +340,11 @@ hr.spacer{ padding:0; } +hr.clean{ + display:none; +} + + fieldset{ margin-top:8px; } @@ -224,30 +388,24 @@ a[disabled] { } #topbar{ - z-index:10; -} - -ul.action{ - list-style-type:none; - margin:0; - padding:12px; - padding-bottom:0; -} - -ul#action-2 { - padding-bottom:12px; + height: 35px; + z-index: 10; + position: absolute; + width: 100%; + padding:0; + background-color: #fff; + box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3); + padding-left: 300px; } -.action li{ - font-weight:normal; - display:inline; - padding:3px 7px; - margin:0; - margin-right:6px; +#top-menu{ + text-transform: uppercase; + padding: 3px } -.action a{ - text-decoration:None; +#top-menu .action{ + font-family: 'Open Sans Condensed', sans-serif; + font-size: 1.4em; } #content{ @@ -324,130 +482,327 @@ ul#action-2 { text-align:center; } +#search_routing:hover, +#close-detail:hover{ + cursor:pointer; +} + +#news_content{ + overflow:auto; +} + +div#sidebar{ + z-index:7; + width:297px; + top: 35px; + position:absolute; + bottom:0; + padding-right:15px; + border-width:0 1px; +} + +div#sidebar-container{ + background-color: white; + width: 100%; + height: 100%; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.28) ; + background-image:url('../img/logo.jpg'); + background-repeat:repeat-x; + background-position:left top; +} + +/* right panel */ + #detail{ + border:0 transparent; display:none; padding:0; position:absolute; z-index:5; - top:274px; - bottom:38px; - right:18px; + top: 115px; + right: 0; + bottom:0; + width: 430px; + padding-left: 30px; + padding-bottom: 30px; + overflow-x: hidden; +} + +#detail-wrapper{ + padding: 4px 8px; + position:absolute; + z-index:101; + left:auto; + top: 0; + right:0; + bottom:0; width:400px; + border:0 transparent; + border-right:1px solid #E7E7E7; + border-top:1px solid #E7E7E7; } #detail div{ - margin:4px 8px; + margin:auto; } -#close-detail{ - position: absolute; - right: 10px; - font-weight:bold; +#detail-header{ + position: fixed; + width: 400px; + top: 35px; + height: 80px; + padding: 0.6em 0; + overflow: hidden; + box-shadow: 0 -10px 5px rgba(0, 0, 0, 0.6); } -#search_routing:hover, -#close-detail:hover{ - cursor:pointer; +#detail-header, #detail-content, #detail_footer{ + width: 400px; } -#news_content{ +#detail-content{ overflow:auto; + max-height: 300px; + padding:0; + background-color: #fff; } -#detail .detail_content{ - position: absolute; - bottom: 0; - top: 80px; - width: 380px; - overflow:auto; +.popover-content #detail-content, +.popover-content #detail_footer{ + width: 348px; + background-color: #eee; } -#news_content img, -.detail_content img{ - max-width:280px; +.popover-content #detail-content{ + background-color: #eee; } -#news_content p, -.detail_content p{ - padding:0.2em 0; - margin:0; +.popover-content #detail_footer{ + font-family: 'Open Sans Condensed', sans-serif; + font-weight: bold; + font-size: 1.3em; + text-transform: uppercase; + background-color: #9f9f89; + border-radius: 0 0 5px 5px; + padding: 2px; } -.detail_content p.detail_amendment{ - padding:0.2em 0.5em; - margin: 0.2em 0; +#detail #detail-content{ + max-height: none; + box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.3); +} + +.current-detail-bg, a.current-detail-bg, a.current-detail-bg:link { + background-color: #aaa; } -.detail_content p.detail_amendment a:hover{ - text-decoration: none; +.current-detail-bg h4 { + color: white; } -ul.share{ - list-style-type:none; - margin:0; - padding:0 1em; - display:block; - text-align:right; - font-style:italic; +#detail .close-img{ + display: block; + position: fixed; + z-index: 10; + width: 25px; + height: 25px; + top: 35px; + margin-left: -25px; + line-height: 0.4em; + text-align: center; + font-size: 2.6em; + font-weight: bold; + color: white; } -ul.share li{ - display:inline; - line-height:22px; - vertical-align: bottom; +#detail hr{ + margin-top: 0; + margin-bottom: 5px; + border: 0; + border-top: 1px solid #ccc; + margin: 0 1.4em; } -.share a{ - text-decoration:None; +.detail-icon{ + background-image: url("../../saclay/images/icon-bg.svg"); + background-position: center center; + background-repeat: no-repeat; + text-align: center; + line-height: 60px; + margin-top: 15px; } -.share img{ - border:None; - width:22px; - height:22px; +.detail-icon img{ + vertical-align: baseline; } -.share .share-icon img{ - width:74px; +#detail_footer, #detail-content .full-description{ + padding: 0.5em 1.4em; } -.detail_footer{ - text-align:center; - position:absolute; - top:15px; - right:18px; +#share-bar-content{ + display: none } -.detail_footer a{ - padding:2px; - display:block; - text-decoration:None; +.category-header{ + font-size: 0.8em; + padding-top: 4px; + margin-bottom: 3px; + line-height: 1em; + color: #333; } -#category_title{ - display:none; +#detail .share-icon{ + text-align: center; + margin-top: 15px; } -#category_desc_content{ - overflow:auto; - height:88%; + +#detail_start_date, +#detail_end_date, +#detail-content .description{ + padding:0 1em; } -#main-map{ - position:absolute; - height:93%; - margin:0; - padding:0; - top:40px; - left:0px; - right:0px; +#detail_footer{ + text-align: right; +} + +.inside-popup #detail-wrapper{ + max-height: 350px; + overflow-y: auto; + overflow-x: hidden; +} + +.inside-popup.popover{ + width: 350px; + max-width: 350px; +} + +.popover-content{ + min-width: 150px; + text-align: center; + padding: 0.5em 0.25em; + font-weight: bold; +} + +.popover h4{ + font-family: 'Open Sans Condensed', sans-serif; + font-size: 1.5em; + padding: 0.5em 1em; +} + +.popover, +.inside-popup .popover-content{ + padding: 0; + font-weight: normal; + text-align: left; +} + +#detail_footer a.propose-modif{ + display: inline-block; + height: 32px; + background-image: url("../../chimere/img/modify.png"); + background-position: right 4px; + background-repeat: no-repeat; + padding: 0.5em 37px 0.5em 1em; + line-height: 18px; +} + +#close-detail{ + position: absolute; + right: 10px; + font-weight:bold; +} +/* end right panel */ + +#news_content img, +.detail-content img{ + max-width:280px; +} + +#news_content p, +.detail-content p{ + padding:0.2em 0; + margin:0; +} + +.detail-content p.detail_amendment{ + padding:0.2em 0.5em; + margin: 0.2em 0; +} + +.detail-content p.detail_amendment a:hover{ + text-decoration: none; +} + +ul.share{ + list-style-type:none; + margin:0; + padding:0 1em; + display:block; + text-align:right; + font-style:italic; +} + +ul.share li{ + display:inline; + line-height:22px; + vertical-align: bottom; +} + +.share a{ + text-decoration:None; +} + +.share img{ + border:None; + width:22px; + height:22px; +} + +.share .share-icon img{ + width:74px; +} + +.detail_footer{ + text-align:center; + position:absolute; + top:15px; + right:18px; +} + +.detail_footer a{ + padding:2px; + display:block; + text-decoration:None; +} + +#category_title{ + display:none; +} + +#category_desc_content{ + overflow:auto; + height:88%; +} + +#main-map{ + position:absolute; + height:auto; + margin:0; + padding:0; + top:35px; + left:0px; + right:0px; + bottom:0; z-index:0; display:none; } #main-map p.warning{ position:absolute; - margin-top:30px; + margin-top:35px; width:100%; text-align:center; } @@ -537,6 +892,40 @@ span.icon{ padding-top:0; } +#edit-actions{ + display:none; +} + +div#action-panel{ + display: none; +} + +.action-button:hover{ + cursor: pointer; + color: #999; +} + +.action-button{ + position: absolute; + background-color: #fff; + z-index: 10; + padding: 6px 10px; + border-radius: 10px; + width: auto; + height: 42px; + text-align: center; + color: #644e38; + line-height: 1.5em; +} + +#edit-button{ + top: 43px; + left: 290px; + font-family: 'Open Sans Condensed', sans-serif; + font-size: 1.4em; + font-weight: bold; +} + #chimere_itinerary_panel, #chimere_itinerary{ display:none; @@ -693,8 +1082,9 @@ span.icon{ } #categories li{ - font-variant:small-caps; - list-style:none; + font-family: 'Open Sans Condensed', sans-serif; + text-transform: uppercase; + list-style: none; padding: 0.1em 1em; } @@ -878,18 +1268,24 @@ table.inline-table td input[type=file]{ } #search-box { - background-color:white; position: relative; z-index: 200; left: auto; top: auto; border: 0px solid transparent; + display: block; + margin-top: 3px; +} + +#search-result, +#search-listing-result{ display: none; } #search-listing{ - overflow:auto; - height: calc(100vh - 210px); + overflow: visible; + height: calc(100vh - 390px); + margin-bottom: 50px; } #search-listing ul{ @@ -915,32 +1311,57 @@ table.inline-table td input[type=file]{ #search-listing img{ float: left; - width: 60px; display: inline-block; + vertical-align:middle; + padding: 0 10px 10px 0; + width: auto; } #search-listing a{ float: left; - width: 170px; display: inline-block; - padding: 15px; + width: 100%; + padding: 5px 10px; +} + +#search-listing ul{ + padding:4px; +} + +#search-listing ul li { + padding: 0; } #search-form{ - padding: 5px 15px; - border-bottom: 1px solid #E6E6E6; + background-color: transparent; + margin: 0; + padding: 0 0 0 15px; + border: 1px solid #999; } #search-form input{ - border: 1px solid #ccc; + width: 100%; + border: 0; + font-size: 0.85em; } +#haystack-search{ + position: absolute; + top: 0; + right: 0; + border: 0; + border-radius: 0; + box-shadow: none; + font-size: 0.6em; + background-color: transparent; +} + + span.spacer, #search-listing li{ clear: both; } -#search-box, #search-nav{ width:100%; background-color:#F8F8F8; @@ -1421,59 +1842,10 @@ div.pp_default .pp_expand{ margin-top:40px; } -ul.share a span.fa, ul.share, .nav-pills > li > a > .fa, -a, a:link, a:visited, legend, #footer .map-footer a, #footer .map-footer a:link, -#footer .map-footer a:visited, .detail_footer a, caption, -#categories li#display_submited, h4, .simple .cloud h2 { - color: #99CA3C; -} - -.nav-pills > li#simple_button-lnk > a > .fa{ - color:#777; -} - -.pager li a, -.detail_amendment a, .detail_amendment a:visited, -.nav-pills > li.active > a > .fa{ - color:#fff; -} - -#frm_categories { - background-color: #fff; -} - -.pager li a, -.detail_amendment, -.nav-pills > li.active > a, .nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - background-color: #99CA3C; -} - -.pager li a:hover{ - background-color: #327E04; -} - -.pager li a:hover{ - border-color: #327E04; -} - -h2, h3 { - color: #449506; - background-color: transparent; -} - -a:hover, a:focus { - color: #327E04; -} - .modal-backdrop.in { opacity: 0.1; } -#footer a, #footer a:link, #footer a:visited{ - color:#327E04; -} - #news{ background-color:transparent; } @@ -1484,10 +1856,6 @@ a:hover, a:focus { } } -.control_image { - vertical-align: -1px; -} - input{ display:inline-block; } @@ -1501,12 +1869,6 @@ input{ padding-bottom:15px; } -.modal-header-success, -.nav-pills > li.active > a, .nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - background-color: #327E04; -} - #permalink{ display:inherit; margin:0; @@ -1561,40 +1923,6 @@ label.labelSpan.olButton{ max-height: calc(100% - 54px); } -#detail { - border:0 transparent; - right: 0; - bottom: 0; -} - -#detail div { - margin:auto; -} - -#detail-wrapper{ - padding: 4px 8px; - position:absolute; - z-index:101; - left:auto; - top: 0; - right:0; - bottom:0; - width:400px; - border:0 transparent; - border-right:1px solid #E7E7E7; - border-top:1px solid #E7E7E7; -} - -.inside-popup #detail-wrapper{ - max-height: 350px; - overflow-y: auto; - overflow-x: hidden; -} - -.inside-popup.popover{ - width: 350px; - max-width: 350px; -} #panel #categories, #categories > ul { @@ -1616,12 +1944,6 @@ label.labelSpan.olButton{ } } -#main-map { - height: auto; - bottom: 0px; - top:50px; -} - #footer .map-footer { bottom: 0; right: 420px; @@ -1772,7 +2094,7 @@ span#permalink, .navbar-nav .lbl, #areas-div label, #permalink, #simple_button, padding-top:16px; } #detail{ - padding-top:50px; + padding-top:0; } } @@ -1928,3 +2250,1671 @@ span#permalink, .navbar-nav .lbl, #areas-div label, #permalink, #simple_button, margin-top: 3px; display: none; } + +.rslides { + position: relative; + list-style: none; + overflow: hidden; + width: 100%; + padding: 0 1.4em; + margin: 1.2em 0 0 0; +} + +.rslides li { + -webkit-backface-visibility: hidden; + position: absolute; + display: none; + width: 100%; + left: 0; + top: 0; + text-align: center; +} + +.rslides li:first-child { + position: relative; + display: block; + float: left; +} + +.rslides img { + display: inline-block; + height: auto; + float: none; + border: 0; + width:auto; + max-width:370px; +} + +.rslides_tabs { + list-style: none; + margin: 0 auto; + padding: 10px 0; + text-align: center; + width: 100%; +} + +.rslides_tabs li { + display: inline; + float: none; + margin-right: 15px; +} + +.rslides_tabs .rslides_here a { + background-color: #333; + color: white; + padding: 0 5px; +} + + + + + + + +#permalink{ + display: none; + position:absolute; + z-index:20; + right:280px; + top:36px; + width:auto; + border-width:1px; + border-style:solid; + padding:2px 12px; + font-weight:normal; +} + +#cluster_list .dialog-content{ + overflow: auto; + max-height: 380px; +} + +#submited-window h2, +#submited-window h3, +#multimedia_form h2, +.no-titlebar .ui-dialog-content.ui-widget-content h2{ + margin:2px 0 12px 0; + font-weight: bold; + font-size: 20px; + background-color: #fff; + color: #000; +} + +.content{ + padding: 1em; +} + +#message .content{ + padding: 0; +} + +a.close, a.close:link{ + font-size: 1.5em; +} + +#message{ + position: absolute; + z-index: 10000; + right: 60px; + top: 40px; + max-width: 50%; + display: none; +} + +.news, +.dialog-content .content{ + overflow:auto; + padding:1em; + max-height:400px; +} + +#multimedia_form{ + padding: 0; +} + +#multimedia_form input[type=text]{ + width:250px; + border:1px solid #e0e0d8; + border-radius:0; + -webkit-border-radius:0; + -moz-border-radius:0; + background-color:#e0e0d8; +} + +.media-img{ + max-height: 200px; + max-width: 300px; +} + + +#submited-window{ + padding: 0; +} + +#submited-window h3, +#submited-window h2{ + margin: 0; +} + +#submited-window h3{ + font-size: 1.2em; + text-align: center; +} + +/* autocomplete theming */ +ul.ui-autocomplete.ui-menu.ui-corner-all.ui-widget-content{ + border-radius:0; + -webkit-border-radius:0; + -moz-border-radius:0; + font-weight:normal; + padding:0; +} + +.ui-menu .ui-menu-item a{ + border-radius:0; + -webkit-border-radius:0; + -moz-border-radius:0; + font-weight:normal; +} + +a#ui-active-menuitem.ui-state-hover{ + background-image:none; +} + +#logos{ + width:340px; + margin-left:auto; + margin-right:auto; +} + +#welcome_message{ + padding:1em; + margin:0; + /* float:left; + width:334px; */ +} + +#welcome_content{ + height:145px; + overflow:auto; + margin-bottom:1em; +} + +.welcome-col{ + padding:1em; + margin:0; + float:left; + width:430px; +} + +.no-titlebar .footer{ + padding:0.3em 1em; + font-size:0.9em; +} + +.welcome-logo{ + border-top:1px solid; +} + +#welcome .news{ + height:298px; + overflow:auto; + padding:10px +} + +#welcome .footer{ + height:12px; + padding:5px 30px; + text-align:right; + text-transform:uppercase; + background-image:url(../images/plus.png); + background-repeat:no-repeat; + background-position:420px; +} + +#welcome .footer a{ + font-size:12px; +} + +.info{ + border:none; + padding:0; +} + +/* edition */ + +.fieldWrapper{ + padding:2px 7px; +} + +.edit label.error{ + display:none; +} + +.edit .error label.error{ + display:block; +} + +.edit h3{ + text-align:left; + font-size:1.4em; + width:100%; + padding:0 0 0.4em 0; + margin:0; +} + +.edit h4{ + padding:1em 0; + border-top:1px solid; + border-bottom:1px solid; + width:100%; + cursor:pointer; + margin-top:0.5em; +} + +.edit .minified{ + background-image:url(../images/plus_on.png) ; + background-repeat:no-repeat; + background-position: 95% center; +} + +.edit .maximized{ + background-image:url(../images/minus_on.png) ; + background-repeat:no-repeat; + background-position: 95% center; +} + +.notice{ + padding:0.4em; + font-size:0.8em; + margin:0; +} + +.remove-media{ + cursor:pointer; +} + +#chimere_map_menu{ + padding:0; +} + +#chimere_map_menu li{ + padding-left:20px; + background-position:0 center; + background-repeat:no-repeat; +} + +#marker_hover_content{ + border-color:#c1c1b0; + border-bottom-width:0; + margin-bottom:11px; +} + +#marker_hover{ + background-image:url("../images/bottom-arrow.png"); +} + +#map_menu_from{ + background-image:url("../images/menu/icon_from.png"); +} + +#map_menu_to{ + background-image:url("../images/menu/icon_to.png"); +} + +#map_menu_step{ + background-image:url("../images/menu/icon_add.png"); +} + +#map_menu_zoomin{ + background-image:url("../images/menu/icon_plus.png"); +} + +#map_menu_zoomout{ + background-image:url("../images/menu/icon_minus.png"); +} + +#map_menu_center{ + background-image:url("../images/menu/icon_center.png"); +} + +.simple #permalink{ + display:none; +} + +.simple #layer_selection{ + top:10px; + right:10px; +} + +.simple #main-map .olControlPanPanel .olControlPanNorthItemInactive, +.simple #main-map .olControlPanPanel .olControlPanWestItemInactive, +.simple #main-map .olControlPanPanel .olControlPanEastItemInactive, +.simple #main-map .olControlPanPanel .olControlPanSouthItemInactive { + position: absolute; + height:20px; +} + +.simple #main-map .olControlPanPanel .olControlPanNorthItemInactive { + right:-50px; +} + +.simple #main-map .olControlPanPanel .olControlPanEastItemInactive, +.simple #main-map .olControlPanPanel .olControlPanWestItemInactive { + height:20px; + top:18px; +} + +.simple #main-map .olControlPanPanel .olControlPanEastItemInactive{ + right:-50px; +} + +.simple #main-map .olControlPanPanel .olControlPanWestItemInactive { + right:-25px; +} + +.simple #main-map .olControlPanPanel .olControlPanSouthItemInactive { + right:-50px; + top:36px; + height:30px; +} + +.simple #sidebar{ + top:0; +} + +.simple #panel{ + top:0; + overflow:auto; + overflow-x: hidden; + height:100%; +} + +.simple #panel #categories { + display:block; +} + +#frm-edit-marker{ + padding-bottom: 35px; +} + +#content{ + border:none; + padding:0; +} + +#page_title{ + top:0; + right:0; + padding:0 30px; + position:relative; + border-bottom-width:1px; + border-bottom-style:solid; + background-color:#fff; + display:none; +} + +#page_title h1{ + text-align:right; + padding:0; + margin:0; + font-size:40px; + font-style:italic; +} + +#page_title h2{ + text-align:right; + padding:0; + margin:0; + font-style:italic; + background-color:#fff; +} + +#header{ + padding:0; + margin:0; +} + +ul.action, +ul#action-2 { + display:block; + float: left; + margin:0; + padding:0; +} + +#action-3 { + float:right; +} + +#action-3 li { + padding:0; +} + +#action-3.action li:hover{ + cursor:pointer; + background-color:transparent; + font-size:0; +} + + +ul.action li{ + display:block; + float:left; + margin:0; + height:26px; +} + +.action li:hover, +.action li label:hover{ + cursor:pointer; +} + +ul#action{ + width:282px; +} + +#panel #categories{ + clear:both; + border-top-width:0; + border-top-style:solid; +} + +#action-panel .action li{ + padding:0; + height:38px; + width:138px; + margin-top:22px; + margin-right: 3px; +} + +#action-panel.three .action li { + padding: 0px; + height: 38px; + width: auto; +} + +.action li{ + font-family: "TexGyreHeros", "Helvetica Neue",Helvetica,Arial,sans-serif; + background-color: #c1c1b0; + text-transform:uppercase; + width:141px; + display:block; + padding:0; + margin:0; + font-size:1.1em; + text-align:center; +} + +.action li, +.action li a, +.action li label{ + margin-top:10px; + border-width:0; + color: #fff; +} + +#action-panel li{ + border-radius: 10px 10px 0 0; +} + +#action-panel li:first-child { + border-radius: 0 10px 0 0; +} + +#action-panel li:last-child { + border-radius: 10px 0 0 0; + margin-right: 0; +} + +.layer-switcher{ + top: 0.5em; + right: 3.5em; +} + +#layer_selection{ + top:40px; + left:auto; + right:90px; +} + +#layer_selection h4{ + width:130px; + padding:2px 20px; + background-image:url('../images/display_option.png'); + background-repeat:no-repeat; + text-align:left; +} + +#layer_selection h4.opened{ + background-image:url('../images/display_option_open.png'); +} + +#layer_selection ul#layer_list{ + padding:0; + width:170px; + text-align:right; +} + +#layer_selection ul#layer_list li.head{ + text-align:left; +} + +#layer_selection ul#layer_list li{ + padding:2px 10px; + border-bottom:1px solid; +} + +#layer_selection ul#layer_list input{ + display:none; +} + +#layer_selection ul#layer_list label:hover{ + cursor:pointer; +} + +#layer_selection ul#layer_list li.selected{ + background-image:url('../images/check-small.png'); + background-position:left; + background-repeat:no-repeat; +} + +#routing-button{ + bottom: 40px; + right: 40px; + background-image: url('../images/itineraire.png'); + color: transparent; +} + +#routing-button:hover{ + background-image: url('../images/itineraire-hover.png'); +} + +div#panel{ + position:absolute; + width:282px; + z-index:10; + max-height:none; + padding:0; + margin-top: 190px; + right:auto; + bottom:26px; + top: 0; + border-width:0 1px; + overflow-x:hidden; + background-color: #fff; +} + +#footer-panel{ + text-align:center; + bottom:0; + position:absolute; + width: 283px; + height: 26px; + font-size: 0.88em; +} + +#footer-panel a{ + font-variant: small-caps; +} +/* share toolbar */ + +a.share_id_email_single{ + width:23px; + overflow:hidden; + background-image:url('../images/email.png'); + display:inline-block; +} +a.share_id_email_single{ + color:transparent; + font-size:0; +} + +ul.share { + display: inline; + text-align: center; + font-style: normal; + padding: 2px 0; +} + +.sidebar-handler{ + height:55px; + width:18px; + position:absolute; + background-position:left top; + display: none; +} + +#sidebar-handler-hide{ + bottom:102px; + right:-4px; + z-index:10; + background-image:url('../images/handler-hide.png'); + background-repeat:no-repeat; +} + +#sidebar-handler-show{ + bottom:102px; + left:0px; + z-index:6; + background-image:url('../images/handler-show.png'); + background-repeat:no-repeat; +} + +.sidebar-handler:hover{ + cursor:pointer; +} + +div#panel #categories{ + width:auto; +} + +ul#ul_categories{ + padding:0; + width:auto; +} + +#ul_categories li.main_category > span{ + display:block; + height:40px; + padding:0; + margin:0; +} + +#ul_categories li.main_category .subcategories li{ + padding:0; + margin:0; + overflow:hidden; +} + +.triangle{ + display: block; + float: left; + margin-top: 8px; + width: 0; + height: 0; + border-style: solid; + border-width: 11px 0 10px 10px; + border-style: solid inset solid solid; +} + +.control_image{ + visibility:hidden; +} + +.map_button{ + display:none; + z-index:20; + top:40px; + left:350px; + position:absolute; + background-color:#fff; + padding:2px 20px; + border:1px solid; + border-color:#c1c1b0; +} + +.main_category > span > label{ + display: block; + width: 242px; + padding: 0 20px; + height: 40px; + line-height:40px; + background-repeat:no-repeat; + background-position:90% center; + color:#fff; +} + +#ul_categories .subcategories li label{ + display:block; + padding:0.5em 1em; + margin:0; + font-weight:bold; + background-color:#fff; +} + +#ul_categories .subcategories li .selected label{ + color:#fff; +} + +#ul_categories .subcategories input{ + display:none; +} + + + +/* itinéraire */ + +#id_transport.ui-buttonset{ + margin-right:0; +} + +#id_transport_it span, +#id_transport.ui-buttonset label{ + width:122px; + height:25px; + border-radius:0; + -webkit-border-radius:0; + -moz-border-radius:0; + margin-left:1px; + color:transparent; + font-size:0; +} + +#id_transport input{ + display: none; +} + +#id_transport label:hover{ + cursor: pointer; +} + +#id_transport label{ + font-size: 0; + display: inline-block; + width: 125px; + height: 24px; +} + +#id_transport_it span{ + margin-right:-3px; + +} +#id_start_div, #id_end_div{ + padding:0 8px; +} + +#id_transport_it{ + margin:7px 0; +} + +#id_transport_it span{ + display:inline-block; + border-width: 0; + border-style: solid; + border-color: transparent; +} + +#id_transport_it span#id_transport_it_foot, +label[for=id_transport_0]{ + background-image:url('../images/buttons/walk.png'); +} + +#id_transport_it span#id_transport_it_foot{ + display:none; +} + +#id_transport_it span#id_transport_it_foot.selected, +label[for=id_transport_0]:hover, +label[for=id_transport_0][aria-pressed=true]{ + display:inline-block; + background-image:url('../images/buttons/walk_on.png'); +} + +#id_transport_it span#id_transport_it_bicycle, +label[for=id_transport_1]{ + background-image:url('../images/buttons/bicycle.png'); +} + +#id_transport_it span#id_transport_it_bicycle{ + display:none; +} + +#id_transport_it span#id_transport_it_bicycle.selected, +label[for=id_transport_1]:hover, +label[for=id_transport_1][aria-pressed=true]{ + display:inline-block; + background-image:url('../images/buttons/bicycle_on.png'); +} + +#chimere_itinerary_panel input[type=text]{ + width:250px; + border:none; + border-radius:0; + -webkit-border-radius:0; + -moz-border-radius:0; +} + +#search_routing, +#id_start_div label[for=id_start], +#id_end_div label[for=id_end], +label.step_label, +#frm-edit-route label.step_label{ + width:250px; + height:25px; + display:block; + color:transparent; + background-color:transparent; + font-size:0; + border:none; + border-radius:0; + -webkit-border-radius:0; + -moz-border-radius:0; +} + +#step_link a{ + font-size:0.9em; + padding:0 8px; +} + +#id_start_div label.start_label, +#id_end_div label.end_label, +#chimere_itinerary_panel label.step_label{ + height:25px; + width:200px; + display:block; + font-size:0; +} + +#id_start_div label.start_label{ + background-image:url('../images/buttons/form_start.png'); +} + +#id_end_div label.end_label{ + background-image:url('../images/buttons/form_finish.png'); +} + +#chimere_itinerary_panel label.step_label{ + color:transparent; + font-size:0; +} +label.step_label{ + background-image:url('../images/buttons/form_step.png'); +} + +#search_routing{ + padding:8px; + background-image:url('../images/buttons/search.png'); +} + +#add_multimedia_list{ + color:transparent; + font-size:0; + width:100%; + position:absolute; + left:0; +} + +ul#multimedia_list_content li{ + width:210px; + margin:0 7px; +} + +#head_multimedia{ + background-image:url('../images/buttons/add.png'); + background-repeat:no-repeat; + background-position:right center; +} + +.extra-criteria{ + border-width:1px; + border-style:solid; + width:264px; +} + +.extra-criteria .extra-label{ + height:25px; + color:transparent; + font-size:0; + background-image:url('../images/buttons/extra_criteria.png'); + background-repeat:no-repeat; +} + +.extra-criteria.opened .extra-label{ + background-image:url('../images/buttons/extra_criteria-open.png'); +} + +.extra-criteria ul{ + list-style:none; + padding:10px 0; + margin:0; + font-weight:bold; + font-size:0.9em; +} + +.extra-form{ + display:none; +} + +/* itinerary */ + +.itinerary_label.itinerary_start, +.itinerary_label.itinerary_end, +#chimere_itinerary h4{ + line-height:18px; + padding:2px 8px; +} +.itinerary_label.itinerary_start .contener, +.itinerary_label.itinerary_end .contener{ + overflow:auto; + width:1000px; + height:36px; + display:block; +} +#chimere_start_label, +#chimere_end_label{ + height:22px; + width:230px; + padding:2px; + display:block; + overflow:hidden; + text-overflow:ellipsis; + -o-text-overflow:ellipsis; + -moz-binding:url('bindings.xml#ellipsis'); +} + +.nominatim-label{ + overflow:hidden; + height:2.6em; +} + +.itinerary_label.itinerary_start .label, +.itinerary_label.itinerary_end .label, +#chimere_itinerary h4{ + text-transform:uppercase; +} + +#chimere_itinerary h4{ + display: inline-block; +} + +ul#roadmap_toolbar, ul#roadmap_toolbar li{ + padding:0; +} + +ul#roadmap_toolbar a img{ + vertical-align:bottom; +} +ul#roadmap_toolbar{ + margin: 0; +} + +ul#roadmap_toolbar, ul#roadmap_toolbar ul, ul#roadmap_toolbar li{ + display:inline; + list-style-type:none; +} + +.itinerary_label{ + line-height:18px; + font-style:normal; + padding:0.5em; + border-width:0; + font-weight:bold; +} + +.itinerary_label.itinerary_start, +.itinerary_label.itinerary_end{ +} + +.itinerary_label div.t{ + display:inline; +} + +#chimere_itinerary{ + overflow:hidden; +} + +#chimere_itinerary_panel{ + display:none; + border-width:0; + padding:0.5em; + background-color: #fff; +} + +#chimere_itinerary_form{ + padding: 0; +} + +#chimere_itinerary_content{ + margin:0; + height:auto; + max-height:250px; +} + +#chimere_itinerary_content span.j{ + display:none; +} + +#chimere_itinerary_action ul{ + margin:0; + padding:0; +} +#chimere_itinerary_action li{ + display:block; + float:left; + margin-top:5px; +} +#chimere_itinerary_action li a{ + height:24px; + display:block; + color:transparent; + font-size:0; +} +#chimere_itinerary_modify{ + background-image:url('../images/buttons/modify.png'); + width:82px; + margin-right:20px; +} +#chimere_itinerary_new{ + background-image:url('../images/buttons/new_search.png'); + width:160px; +} + +#total_label_div{ + margin:0; +} + +#chimere_total_label span.l, +#chimere_itinerary_content span.l{ + display:none; +} + +#chimere_itinerary_content div.s{ + font-size:0.8em; + padding:4px; +} + +#chimere_itinerary_content div.n{ + font-size:0.9em; + padding:4px; +} + +#edit-panel { + padding: 0; +} + +#edit-panel label{ + font-size:0.9em; +} + +#edit-panel h3, +#edit-panel h4, +#edit-panel .notice{ + margin:7px; +} + +#edit-panel h3, +#edit-panel h4{ + text-transform:uppercase; + color:#fff; + font-weight:bold; + font-size:12px; + padding:5px; + width:240px; +} + +#frm-edit-marker h3, +#frm-edit-marker h4{ + background-color:#6f8196; +} + +#frm-edit-route h3, +#frm-edit-route h4{ + background-color:#d38fac; +} + +#frm-edit-event h3, +#frm-edit-event h4{ + background-color:#996998; +} + +#frm-edit-marker label{ + font-weight:bold; + color:#6f8196; +} + +#frm-edit-route label{ + font-weight:bold; + color:#d38fac; +} + +#frm-edit-event label{ + font-weight:bold; + color:#996998; +} + +#frm-edit-marker textarea, +#frm-edit-marker input[type=email], +#frm-edit-marker input[type=text]{ + background-color:#dfe8f3; + border:none; +} + +#frm-edit-route textarea, +#frm-edit-route input[type=email], +#frm-edit-route input[type=text]{ + background-color:#f5e4eb; + border:none; +} + +#frm-edit-event textarea, +#frm-edit-event input[type=email], +#frm-edit-event input[type=text]{ + background-color:#f2e4f5; + border:none; +} + +#back-categories{ + font-weight: 900; + padding: 0; + width: 282px; + position: fixed; + bottom: 26px; + left: 0; + font-family: 'Numans'; + z-index: 10; + display: none; +} + +#back-categories:hover{ + cursor: pointer; +} + +#back-categories .fa, +#back-categories p{ + display: inline-block; + padding: 0; + margin: 0; +} + +#back-categories p{ + height: 26px; + vertical-align: middle; + padding-left: 0.3em; +} + +#back-categories .fa{ + font-size: 2em; + padding-top: 4px; + padding-left: 12px; +} + + + +input.hasDatepicker{ + background-image:url(../../saclay/images/buttons/calendar.png) ; + background-repeat:no-repeat; + background-position:right; + width:120px; +} + +.ui-datepicker th{ + background-color:#996998; +} + +#div_start_date{ + float:left; +} + +#add_media, +#proposition_form_submit{ + padding: 15px 0; + width:278px; + display:block; + height:25px; + color:transparent; + font-size:0; + background-image:url(../../saclay/images/buttons/validate.png) ; + background-repeat:no-repeat; + background-position:center; +} + +#add_media{ + margin:1em 0; +} + +#proposition_form_submit:hover{ + cursor:pointer; +} + +.cloud{ + width:351px; + padding:0; + margin:0; +} + +.simple .cloud img { + display: inline; +} + +div.cloud h4{ + margin:0; + padding:0.3em; + font-size:1.2em; + text-align:center; + background-image:url(../../saclay/images/popup/title_frame.png); + background-repeat:repeat-x; + background-position:center bottom; +} + +.cloud .description img{ + max-width: 300px; +} + +.close_img{ + display:block; + overflow:hidden; + width: 100%; + height:22px; + background-image:url(../../saclay/images/popup/close.png); + background-position:center; +} +a.close_img{ + color:transparent; + font-size:0; +} + +.read_more, +.read_less{ + margin:0; + text-align:right; + padding-right:25px; + font-weight:bold; + line-height:22px; +} + +.read_more:hover, +.read_less:hover{ + cursor:pointer; +} + +.read_less, +.read_more{ + background-position:330px 5px; + background-repeat:no-repeat; +} +.read_more{ + background-image:url(../../saclay/images/plus_alt.png); +} +.read_less{ + background-image:url(../../saclay/images/minus_alt.png); +} + +.description_long, .read_less{ + display:none; +} + +.small-gallery{ + width:auto; + margin-top:0; +} + +.small-gallery p.legend{ + line-height:22px; +} + +.small-gallery .media-player{ + padding:0 1em; +} + +#frm-edit-route, #frm-edit-event{ + display:none; +} + +#panel textarea{ + height:100px; + width:250px; +} + +input#id_name{ + width:250px; +} + +select#id_categories{ + max-width:240px; +} + +#itinerary_field #id_transport_div, +#itinerary_field #id_speed_div, +#itinerary_field .extra-criteria +{ + display:none; +} + +.single-line label{ + display:inline-block; + width:95px; + /*IE7*/ + zoom:1; + *display:inline; +} + +.single-line input{ + width:150px; +} + +#main-map .olControlScaleLine { + left:300px; +} + +#main-map .olControlPanPanel{ + right:60px; + left:auto; +} + +#main-map .olControlZoomPanel{ + right:51px; + left:auto; +} + +#main-map .olControlPanPanel .olButton, +#main-map .olControlZoomPanel .olButton { + background-image: url('../images/map_sprite.png'); +} + +#main-map .olControlPanPanel .olControlPanNorthItemInactive { + background-position:-4px -2px; + width:50px; + height:23px; + right:-50px; + left:auto; +} + +#main-map .olControlPanPanel .olControlPanWestItemInactive { + width:25px; + background-position:-4px -20px; + right:-25px; + left:auto; +} + +#main-map .olControlPanPanel .olControlPanEastItemInactive { + width:25px; + background-position:-29px -20px; + right:-50px; + left:auto; +} + +#main-map .olControlPanPanel .olControlPanSouthItemInactive { + background-position:-4px -38px; + width:50px; + right:-50px; + left:auto; +} + +#main-map .olControlZoomPanel .olControlZoomInItemInactive { + top:-8px; + left:-9px; + background-position:-4px -60px; + width:50px; + height:22px +} + +#main-map .olControlZoomPanel .olControlZoomOutItemInactive { + top:14px; + left:-9px; + background-position:-4px -130px; + width:50px; + height:35px; +} + +#main-map .olControlZoomPanel .olControlZoomToMaxExtentItemInactive { + top:-40px; + left:7px; + background-position:-20px -23px; + width:14px; + height:16px; + display:none; +} + + +/* +.olControlSimplePanZoom #slider, +.olControlSimplePanZoom #zoomin, +.olControlSimplePanZoom #zoomout, +.olControlSimplePanZoom #zoombar, +.olControlSimplePanZoom #panup, +.olControlSimplePanZoom #pandown { + right:15px; + left:auto; +} +.olControlSimplePanZoom #panright { + right:14px; + left:auto; +} + +.olControlSimplePanZoom #panleft { + right:39px; + left:auto; + background-position:-4px -17px; + width:26px; +} + +.olControlSimplePanZoom .button { + background-image: url('../images/map_sprite.png'); +} + +.olControlSimplePanZoom #zoombar{ + width:50px; + height:90px; + background-position:-4px -75px; +} + +.olControlSimplePanZoom #zoomin{ + width:50px; + background-position:-4px -61px; +} +.olControlSimplePanZoom #pandown { + width:50px; + background-position:-4px -40px; +} +.olControlSimplePanZoom #panup{ + width:50px; + background-position:-4px -5px; +} + +.olControlSimplePanZoom #slider { + width:50px; + background-position:-60px -100px; +} +*/ + +#content .olControlLayerSwitcher .maximizeDiv, +#content .olControlLayerSwitcher .minimizeDiv { + display:none; +} + +#utils-div{ + left:auto; + right:28px; +} + +.properties{ + padding: 2px 1em; +} +.properties p{ + padding: 0; + margin:0; +} + +#waiting{ + top:0; + height:100%; + background-color:rgba(255, 255, 255, 0.4); +} + +#waiting-content{ + margin-top:20%; +} + +#categories li{ + padding: 0; +} + +#categories li.main_category:hover{ + background-color: transparent; +} + +#categories ul ul{ + padding-top: 0; +} + +.subcategory label{ + border-radius: 0; +} + +.main_category > span > label{ + width: 100%; + background-position: 247px center; +} + +.control_image{ + position: absolute; + color: #CCC; + left: 248px; + font-size: 2em; + font-family: arial; +} + +.main_category.toggle_plus > span > label, +.main_category.toggle_minus > span > label{ + text-transform:uppercase; +} + +#ul_categories .subcategories li .selected label, +.main_category.toggle_plus > span > label, +.main_category.toggle_minus > span > label{ + background-color:#777; +} + +#ul_categories .subcategories li label{ + color:#777; +} + +li.main_category li.subcategory > span > label{ + font-size: 0.9em; +} + +.main-category-tick{ + position: absolute; + margin-top: 12px; + left: 218px; + color: #CCC; + left: 242px; +} + +.main-category-tick:hover, +.main_category.full .main-category-tick{ + color: #1db11d; +} + +#map_edit{ + width: 100%; + height: 400px; +} + +.container{ + width: 100%; +} + +.row .full textarea{ + width: 100%; + height: 100px; +} + +.pager li a{ + padding: 5px 6px; + border-radius: 5px; +} + +#maps-lnk { + margin-bottom: 0.5em; + padding: 145px 0.8em 0.8em 0.8em; + width: 100%; +} + +#maps-lnk .form-control, +#maps-lnk .input-group-addon{ + border-radius: 0; + border: 1px solid #eee; +} + +#switch-menu{ + display: none; + text-align: center; + font-size: 1.2em; + padding: 0; + position: absolute; + top: 98px; + z-index: 200; + right: 0; + left: 0; + background-color: #fff; +} + +#switch-menu div{ + padding: 0.2em; +} + +#switch-menu div.selected{ + background-color: #d5d5d4; +} + +@media screen and (max-width: 640px) { + #switch-menu{ + display: block; + } + .ol-zoom, .layer-switcher{ + top: 140px; + } + .ol-full-screen{ + display:none; + } + #search-listing{ + padding-top: 25px; + } + div#sidebar, + div#panel{ + width: 100%; + bottom: auto; + } + div#panel{ + background-size: auto 80px; + background-repeat: no-repeat; + padding-top: 5px; + display: block; + } + #map-shadow{ + display: none; + } + #search-box{ + padding-bottom: 0; + } + .sidebar-handler, + #frm_categories{ + display: none; + } + div#sidebar-container{ + height:auto; + } + #sidebar-handler-hide, + #sidebar-handler-show, + div#sidebar{ + background-image: none; + } + #search-form input{ + width: 80%; + } + #maps-lnk{ + padding: 0.5em 0.8em; + margin-left: 100px; + } + .main-category-tick{ + left:auto + right: 50px; + } + #edit-button { + top: auto; + bottom: 60px; + right: 20px; + left: auto; + } + #footer .map-footer { + right: 0; + left: 0; + } + .main-category-tick{ + right: 1.5em; + left: auto; + } +} + diff --git a/chimere/static/chimere/img/carret.png b/chimere/static/chimere/img/carret.png new file mode 100644 index 0000000..8332959 Binary files /dev/null and b/chimere/static/chimere/img/carret.png differ diff --git a/chimere/static/chimere/img/logo.jpg b/chimere/static/chimere/img/logo.jpg index cc2ff36..070c9c9 100644 Binary files a/chimere/static/chimere/img/logo.jpg and b/chimere/static/chimere/img/logo.jpg differ diff --git a/chimere/static/chimere/img/modify.png b/chimere/static/chimere/img/modify.png new file mode 100644 index 0000000..bbf47f2 Binary files /dev/null and b/chimere/static/chimere/img/modify.png differ diff --git a/chimere/static/chimere/img/modify.svg b/chimere/static/chimere/img/modify.svg new file mode 100644 index 0000000..09165b6 --- /dev/null +++ b/chimere/static/chimere/img/modify.svg @@ -0,0 +1,58 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + diff --git a/chimere/static/chimere/img/share.svg b/chimere/static/chimere/img/share.svg new file mode 100644 index 0000000..8992271 --- /dev/null +++ b/chimere/static/chimere/img/share.svg @@ -0,0 +1,40 @@ + + + + + + + image/svg+xml + + + + + + + + + + + diff --git a/chimere/static/chimere/js/jquery.chimere.js b/chimere/static/chimere/js/jquery.chimere.js index 032e6f1..15adbe3 100644 --- a/chimere/static/chimere/js/jquery.chimere.js +++ b/chimere/static/chimere/js/jquery.chimere.js @@ -558,7 +558,15 @@ function transformCoordToLonLat(coord) { return feature; } ); - if (typeof feature != 'undefined') settings[map_id].current_feature = feature; + if (typeof feature != 'undefined'){ + if (settings[map_id].current_feature == feature){ + return + } else { + settings[map_id].current_feature = feature; + } + } else { + settings[map_id].current_feature = null; + } if (!settings[map_id].edition){ if (methods._is_popuphovering(map_id)) return; $(settings[map_id].popup_item).popover('destroy'); @@ -566,22 +574,26 @@ function transformCoordToLonLat(coord) { $("#" + map_id + "_hover").html(""); $("#" + map_id + "_hover").hide(); if (feature) { - // zoom on aggregated - var key = feature.get('key'); - if (key && key.length > 3 && key.substring(0, 3) == 'agg' && - settings[map_id]._zoom_need_reload){ - var current_zoom = settings[map_id].map.getView().getZoom(); - if (current_zoom < settings[map_id]._zoom_need_reload){ - settings[map_id].map.getView().setZoom(settings[map_id]._zoom_need_reload); - settings[map_id].map.getView().setCenter(evt.coordinate); + // wait for the popover to be fully destroyed... + // should be better managed with BS4 + setTimeout(function(){ + // zoom on aggregated + var key = feature.get('key'); + if (key && key.length > 3 && key.substring(0, 3) == 'agg' && + settings[map_id]._zoom_need_reload){ + var current_zoom = settings[map_id].map.getView().getZoom(); + if (current_zoom < settings[map_id]._zoom_need_reload){ + settings[map_id].map.getView().setZoom(settings[map_id]._zoom_need_reload); + settings[map_id].map.getView().setCenter(evt.coordinate); + } + return } - return - } - if (key && key.length > 6 && key.substring(0, 7) == 'cluster'){ - feature = methods.clickOnCluster(map_id, feature); - } else { - methods.openPopup(map_id, feature); - } + if (key && key.length > 6 && key.substring(0, 7) == 'cluster'){ + feature = methods.clickOnCluster(map_id, feature); + } else { + methods.openPopup(map_id, feature); + } + }, 200); } } }); @@ -1388,6 +1400,7 @@ function transformCoordToLonLat(coord) { // when the popup is closed $(settings[map_id].popup_item).on('hidden.bs.popover', function () { settings[map_id].current_feature = null; + methods.hide_feature_detail(map_id); methods._unregister_popuphovering(map_id); }) $(settings[map_id].popup_item).popover('show'); @@ -2971,6 +2984,15 @@ function transformCoordToLonLat(coord) { settings[map_id].layerRoute.addFeatures([current_route]); */ }, + hide_feature_detail: function (map_id) { + if (!settings[map_id].popupContentFull) { + $('#detail').fadeOut(); + } else { + methods._hidePopup(map_id); + } + return; + + }, display_feature_detail: function (map_id, key, name) { /* * update current detail panel with an AJAX request @@ -2991,7 +3013,7 @@ function transformCoordToLonLat(coord) { $(".popover").addClass('transparent'); uri += "popup/"; } - uri += key; + uri += key + "?categories=" + settings[map_id].checked_categories.join('-'); var params = {} if (settings[map_id].simple) { params["simple"] = 1; } $.ajax({url: uri, @@ -3126,11 +3148,9 @@ function transformCoordToLonLat(coord) { // Check if element is currently visible or not var was_visible = $("#maincategory_" + id).is(":visible"); // Close all categories - var category_plus = STATIC_URL + "chimere/img/plus.png"; - var category_minus = STATIC_URL + "chimere/img/minus.png"; if (settings[map_id].category_accordion){ $("#categories ul.subcategories").hide(); - $("#categories img.toggle_category").attr("src", category_plus); + $("#categories .toggle_category").html("+"); $("#categories .main_category").addClass("toggle_plus"); $("#categories .main_category").removeClass("toggle_minus"); } @@ -3141,8 +3161,7 @@ function transformCoordToLonLat(coord) { $("#maincategory_" + id).toggle(); $("#maincategory_" + id).parent().addClass("toggle_minus"); $("#maincategory_" + id).parent().removeClass("toggle_plus"); - // Put a plus image - $("#maincategory_img_" + id).attr("src", category_minus); + $("#maincategory_img_" + id).html("-"); settings[map_id].current_category = id; } if (!settings[map_id].category_accordion && was_visible) @@ -3150,8 +3169,7 @@ function transformCoordToLonLat(coord) { $("#maincategory_" + id).toggle(); $("#maincategory_" + id).parent().addClass("toggle_plus"); $("#maincategory_" + id).parent().removeClass("toggle_minus"); - // Put a minus image - $("#maincategory_img_" + id).attr("src", category_plus); + $("#maincategory_img_" + id).html("+"); } }, zoomToCurrentExtent: function(){ diff --git a/chimere/static/font-awesome/css/font-awesome.css b/chimere/static/font-awesome/css/font-awesome.css index 2dcdc22..ee906a8 100644 --- a/chimere/static/font-awesome/css/font-awesome.css +++ b/chimere/static/font-awesome/css/font-awesome.css @@ -1,13 +1,13 @@ /*! - * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) */ /* FONT PATH * -------------------------- */ @font-face { font-family: 'FontAwesome'; - src: url('../fonts/fontawesome-webfont.eot?v=4.3.0'); - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); + src: url('../fonts/fontawesome-webfont.eot?v=4.7.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg'); font-weight: normal; font-style: normal; } @@ -18,7 +18,6 @@ text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; - transform: translate(0, 0); } /* makes the font 33% larger relative to the icon container */ .fa-lg { @@ -65,6 +64,19 @@ border: solid 0.08em #eeeeee; border-radius: .1em; } +.fa-pull-left { + float: left; +} +.fa-pull-right { + float: right; +} +.fa.fa-pull-left { + margin-right: .3em; +} +.fa.fa-pull-right { + margin-left: .3em; +} +/* Deprecated as of 4.4.0 */ .pull-right { float: right; } @@ -106,31 +118,31 @@ } } .fa-rotate-90 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .fa-rotate-180 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); transform: rotate(180deg); } .fa-rotate-270 { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; -webkit-transform: rotate(270deg); -ms-transform: rotate(270deg); transform: rotate(270deg); } .fa-flip-horizontal { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; -webkit-transform: scale(-1, 1); -ms-transform: scale(-1, 1); transform: scale(-1, 1); } .fa-flip-vertical { - filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; -webkit-transform: scale(1, -1); -ms-transform: scale(1, -1); transform: scale(1, -1); @@ -628,6 +640,7 @@ .fa-credit-card:before { content: "\f09d"; } +.fa-feed:before, .fa-rss:before { content: "\f09e"; } @@ -1370,7 +1383,7 @@ .fa-digg:before { content: "\f1a6"; } -.fa-pied-piper:before { +.fa-pied-piper-pp:before { content: "\f1a7"; } .fa-pied-piper-alt:before { @@ -1496,6 +1509,7 @@ content: "\f1ce"; } .fa-ra:before, +.fa-resistance:before, .fa-rebel:before { content: "\f1d0"; } @@ -1509,6 +1523,8 @@ .fa-git:before { content: "\f1d3"; } +.fa-y-combinator-square:before, +.fa-yc-square:before, .fa-hacker-news:before { content: "\f1d4"; } @@ -1533,7 +1549,6 @@ .fa-history:before { content: "\f1da"; } -.fa-genderless:before, .fa-circle-thin:before { content: "\f1db"; } @@ -1738,6 +1753,7 @@ .fa-mercury:before { content: "\f223"; } +.fa-intersex:before, .fa-transgender:before { content: "\f224"; } @@ -1765,6 +1781,9 @@ .fa-neuter:before { content: "\f22c"; } +.fa-genderless:before { + content: "\f22d"; +} .fa-facebook-official:before { content: "\f230"; } @@ -1799,3 +1818,520 @@ .fa-medium:before { content: "\f23a"; } +.fa-yc:before, +.fa-y-combinator:before { + content: "\f23b"; +} +.fa-optin-monster:before { + content: "\f23c"; +} +.fa-opencart:before { + content: "\f23d"; +} +.fa-expeditedssl:before { + content: "\f23e"; +} +.fa-battery-4:before, +.fa-battery:before, +.fa-battery-full:before { + content: "\f240"; +} +.fa-battery-3:before, +.fa-battery-three-quarters:before { + content: "\f241"; +} +.fa-battery-2:before, +.fa-battery-half:before { + content: "\f242"; +} +.fa-battery-1:before, +.fa-battery-quarter:before { + content: "\f243"; +} +.fa-battery-0:before, +.fa-battery-empty:before { + content: "\f244"; +} +.fa-mouse-pointer:before { + content: "\f245"; +} +.fa-i-cursor:before { + content: "\f246"; +} +.fa-object-group:before { + content: "\f247"; +} +.fa-object-ungroup:before { + content: "\f248"; +} +.fa-sticky-note:before { + content: "\f249"; +} +.fa-sticky-note-o:before { + content: "\f24a"; +} +.fa-cc-jcb:before { + content: "\f24b"; +} +.fa-cc-diners-club:before { + content: "\f24c"; +} +.fa-clone:before { + content: "\f24d"; +} +.fa-balance-scale:before { + content: "\f24e"; +} +.fa-hourglass-o:before { + content: "\f250"; +} +.fa-hourglass-1:before, +.fa-hourglass-start:before { + content: "\f251"; +} +.fa-hourglass-2:before, +.fa-hourglass-half:before { + content: "\f252"; +} +.fa-hourglass-3:before, +.fa-hourglass-end:before { + content: "\f253"; +} +.fa-hourglass:before { + content: "\f254"; +} +.fa-hand-grab-o:before, +.fa-hand-rock-o:before { + content: "\f255"; +} +.fa-hand-stop-o:before, +.fa-hand-paper-o:before { + content: "\f256"; +} +.fa-hand-scissors-o:before { + content: "\f257"; +} +.fa-hand-lizard-o:before { + content: "\f258"; +} +.fa-hand-spock-o:before { + content: "\f259"; +} +.fa-hand-pointer-o:before { + content: "\f25a"; +} +.fa-hand-peace-o:before { + content: "\f25b"; +} +.fa-trademark:before { + content: "\f25c"; +} +.fa-registered:before { + content: "\f25d"; +} +.fa-creative-commons:before { + content: "\f25e"; +} +.fa-gg:before { + content: "\f260"; +} +.fa-gg-circle:before { + content: "\f261"; +} +.fa-tripadvisor:before { + content: "\f262"; +} +.fa-odnoklassniki:before { + content: "\f263"; +} +.fa-odnoklassniki-square:before { + content: "\f264"; +} +.fa-get-pocket:before { + content: "\f265"; +} +.fa-wikipedia-w:before { + content: "\f266"; +} +.fa-safari:before { + content: "\f267"; +} +.fa-chrome:before { + content: "\f268"; +} +.fa-firefox:before { + content: "\f269"; +} +.fa-opera:before { + content: "\f26a"; +} +.fa-internet-explorer:before { + content: "\f26b"; +} +.fa-tv:before, +.fa-television:before { + content: "\f26c"; +} +.fa-contao:before { + content: "\f26d"; +} +.fa-500px:before { + content: "\f26e"; +} +.fa-amazon:before { + content: "\f270"; +} +.fa-calendar-plus-o:before { + content: "\f271"; +} +.fa-calendar-minus-o:before { + content: "\f272"; +} +.fa-calendar-times-o:before { + content: "\f273"; +} +.fa-calendar-check-o:before { + content: "\f274"; +} +.fa-industry:before { + content: "\f275"; +} +.fa-map-pin:before { + content: "\f276"; +} +.fa-map-signs:before { + content: "\f277"; +} +.fa-map-o:before { + content: "\f278"; +} +.fa-map:before { + content: "\f279"; +} +.fa-commenting:before { + content: "\f27a"; +} +.fa-commenting-o:before { + content: "\f27b"; +} +.fa-houzz:before { + content: "\f27c"; +} +.fa-vimeo:before { + content: "\f27d"; +} +.fa-black-tie:before { + content: "\f27e"; +} +.fa-fonticons:before { + content: "\f280"; +} +.fa-reddit-alien:before { + content: "\f281"; +} +.fa-edge:before { + content: "\f282"; +} +.fa-credit-card-alt:before { + content: "\f283"; +} +.fa-codiepie:before { + content: "\f284"; +} +.fa-modx:before { + content: "\f285"; +} +.fa-fort-awesome:before { + content: "\f286"; +} +.fa-usb:before { + content: "\f287"; +} +.fa-product-hunt:before { + content: "\f288"; +} +.fa-mixcloud:before { + content: "\f289"; +} +.fa-scribd:before { + content: "\f28a"; +} +.fa-pause-circle:before { + content: "\f28b"; +} +.fa-pause-circle-o:before { + content: "\f28c"; +} +.fa-stop-circle:before { + content: "\f28d"; +} +.fa-stop-circle-o:before { + content: "\f28e"; +} +.fa-shopping-bag:before { + content: "\f290"; +} +.fa-shopping-basket:before { + content: "\f291"; +} +.fa-hashtag:before { + content: "\f292"; +} +.fa-bluetooth:before { + content: "\f293"; +} +.fa-bluetooth-b:before { + content: "\f294"; +} +.fa-percent:before { + content: "\f295"; +} +.fa-gitlab:before { + content: "\f296"; +} +.fa-wpbeginner:before { + content: "\f297"; +} +.fa-wpforms:before { + content: "\f298"; +} +.fa-envira:before { + content: "\f299"; +} +.fa-universal-access:before { + content: "\f29a"; +} +.fa-wheelchair-alt:before { + content: "\f29b"; +} +.fa-question-circle-o:before { + content: "\f29c"; +} +.fa-blind:before { + content: "\f29d"; +} +.fa-audio-description:before { + content: "\f29e"; +} +.fa-volume-control-phone:before { + content: "\f2a0"; +} +.fa-braille:before { + content: "\f2a1"; +} +.fa-assistive-listening-systems:before { + content: "\f2a2"; +} +.fa-asl-interpreting:before, +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; +} +.fa-deafness:before, +.fa-hard-of-hearing:before, +.fa-deaf:before { + content: "\f2a4"; +} +.fa-glide:before { + content: "\f2a5"; +} +.fa-glide-g:before { + content: "\f2a6"; +} +.fa-signing:before, +.fa-sign-language:before { + content: "\f2a7"; +} +.fa-low-vision:before { + content: "\f2a8"; +} +.fa-viadeo:before { + content: "\f2a9"; +} +.fa-viadeo-square:before { + content: "\f2aa"; +} +.fa-snapchat:before { + content: "\f2ab"; +} +.fa-snapchat-ghost:before { + content: "\f2ac"; +} +.fa-snapchat-square:before { + content: "\f2ad"; +} +.fa-pied-piper:before { + content: "\f2ae"; +} +.fa-first-order:before { + content: "\f2b0"; +} +.fa-yoast:before { + content: "\f2b1"; +} +.fa-themeisle:before { + content: "\f2b2"; +} +.fa-google-plus-circle:before, +.fa-google-plus-official:before { + content: "\f2b3"; +} +.fa-fa:before, +.fa-font-awesome:before { + content: "\f2b4"; +} +.fa-handshake-o:before { + content: "\f2b5"; +} +.fa-envelope-open:before { + content: "\f2b6"; +} +.fa-envelope-open-o:before { + content: "\f2b7"; +} +.fa-linode:before { + content: "\f2b8"; +} +.fa-address-book:before { + content: "\f2b9"; +} +.fa-address-book-o:before { + content: "\f2ba"; +} +.fa-vcard:before, +.fa-address-card:before { + content: "\f2bb"; +} +.fa-vcard-o:before, +.fa-address-card-o:before { + content: "\f2bc"; +} +.fa-user-circle:before { + content: "\f2bd"; +} +.fa-user-circle-o:before { + content: "\f2be"; +} +.fa-user-o:before { + content: "\f2c0"; +} +.fa-id-badge:before { + content: "\f2c1"; +} +.fa-drivers-license:before, +.fa-id-card:before { + content: "\f2c2"; +} +.fa-drivers-license-o:before, +.fa-id-card-o:before { + content: "\f2c3"; +} +.fa-quora:before { + content: "\f2c4"; +} +.fa-free-code-camp:before { + content: "\f2c5"; +} +.fa-telegram:before { + content: "\f2c6"; +} +.fa-thermometer-4:before, +.fa-thermometer:before, +.fa-thermometer-full:before { + content: "\f2c7"; +} +.fa-thermometer-3:before, +.fa-thermometer-three-quarters:before { + content: "\f2c8"; +} +.fa-thermometer-2:before, +.fa-thermometer-half:before { + content: "\f2c9"; +} +.fa-thermometer-1:before, +.fa-thermometer-quarter:before { + content: "\f2ca"; +} +.fa-thermometer-0:before, +.fa-thermometer-empty:before { + content: "\f2cb"; +} +.fa-shower:before { + content: "\f2cc"; +} +.fa-bathtub:before, +.fa-s15:before, +.fa-bath:before { + content: "\f2cd"; +} +.fa-podcast:before { + content: "\f2ce"; +} +.fa-window-maximize:before { + content: "\f2d0"; +} +.fa-window-minimize:before { + content: "\f2d1"; +} +.fa-window-restore:before { + content: "\f2d2"; +} +.fa-times-rectangle:before, +.fa-window-close:before { + content: "\f2d3"; +} +.fa-times-rectangle-o:before, +.fa-window-close-o:before { + content: "\f2d4"; +} +.fa-bandcamp:before { + content: "\f2d5"; +} +.fa-grav:before { + content: "\f2d6"; +} +.fa-etsy:before { + content: "\f2d7"; +} +.fa-imdb:before { + content: "\f2d8"; +} +.fa-ravelry:before { + content: "\f2d9"; +} +.fa-eercast:before { + content: "\f2da"; +} +.fa-microchip:before { + content: "\f2db"; +} +.fa-snowflake-o:before { + content: "\f2dc"; +} +.fa-superpowers:before { + content: "\f2dd"; +} +.fa-wpexplorer:before { + content: "\f2de"; +} +.fa-meetup:before { + content: "\f2e0"; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} diff --git a/chimere/static/font-awesome/css/font-awesome.min.css b/chimere/static/font-awesome/css/font-awesome.min.css index 24fcc04..540440c 100644 --- a/chimere/static/font-awesome/css/font-awesome.min.css +++ b/chimere/static/font-awesome/css/font-awesome.min.css @@ -1,4 +1,4 @@ /*! - * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"} \ No newline at end of file + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} diff --git a/chimere/static/font-awesome/fonts/FontAwesome.otf b/chimere/static/font-awesome/fonts/FontAwesome.otf index f7936cc..401ec0f 100644 Binary files a/chimere/static/font-awesome/fonts/FontAwesome.otf and b/chimere/static/font-awesome/fonts/FontAwesome.otf differ diff --git a/chimere/static/font-awesome/fonts/fontawesome-webfont.eot b/chimere/static/font-awesome/fonts/fontawesome-webfont.eot index 33b2bb8..e9f60ca 100644 Binary files a/chimere/static/font-awesome/fonts/fontawesome-webfont.eot and b/chimere/static/font-awesome/fonts/fontawesome-webfont.eot differ diff --git a/chimere/static/font-awesome/fonts/fontawesome-webfont.svg b/chimere/static/font-awesome/fonts/fontawesome-webfont.svg index 1ee89d4..855c845 100644 --- a/chimere/static/font-awesome/fonts/fontawesome-webfont.svg +++ b/chimere/static/font-awesome/fonts/fontawesome-webfont.svg @@ -1,565 +1,2671 @@ - - + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/chimere/static/font-awesome/fonts/fontawesome-webfont.ttf b/chimere/static/font-awesome/fonts/fontawesome-webfont.ttf index ed9372f..35acda2 100644 Binary files a/chimere/static/font-awesome/fonts/fontawesome-webfont.ttf and b/chimere/static/font-awesome/fonts/fontawesome-webfont.ttf differ diff --git a/chimere/static/font-awesome/fonts/fontawesome-webfont.woff b/chimere/static/font-awesome/fonts/fontawesome-webfont.woff index 8b280b9..400014a 100644 Binary files a/chimere/static/font-awesome/fonts/fontawesome-webfont.woff and b/chimere/static/font-awesome/fonts/fontawesome-webfont.woff differ diff --git a/chimere/static/font-awesome/fonts/fontawesome-webfont.woff2 b/chimere/static/font-awesome/fonts/fontawesome-webfont.woff2 index 3311d58..4d13fc6 100644 Binary files a/chimere/static/font-awesome/fonts/fontawesome-webfont.woff2 and b/chimere/static/font-awesome/fonts/fontawesome-webfont.woff2 differ diff --git a/chimere/static/fonts/OpenSansCondensed.ttf b/chimere/static/fonts/OpenSansCondensed.ttf new file mode 100644 index 0000000..5a357bf Binary files /dev/null and b/chimere/static/fonts/OpenSansCondensed.ttf differ diff --git a/chimere/static/responsiveslides/README.md b/chimere/static/responsiveslides/README.md new file mode 100644 index 0000000..6c2e843 --- /dev/null +++ b/chimere/static/responsiveslides/README.md @@ -0,0 +1,106 @@ +# ResponsiveSlides.js v1.55 +### Simple & lightweight responsive slider plugin (in 1kb) + + +[ResponsiveSlides.js](http://responsiveslides.com/) is a tiny jQuery plugin that creates a responsive slider using elements inside a container. It has been used on sites like [Microsoft's Build 2012](http://www.buildwindows.com/launch) and [Gridset App](https://gridsetapp.com). ResponsiveSlides.js works with wide range of browsers including all IE versions from IE6 and up. It also adds CSS max-width support for IE6 and other browsers that don't natively support it. Only dependency is [jQuery](http://jquery.com/) (1.6 and up supported, tested up to 1.8.3) and that all the images are the same size. + +Biggest difference to other responsive slider plugins is the file size (1.4kb minified and gzipped) + that this one doesn't try to do everything. ResponsiveSlides.js has basically only two different modes: Either it just automatically fades the images, or operates as a responsive image container with pagination and/or navigation to fade between slides. + +#### Features: + * Fully responsive + * 1kb minified and gzipped + * CSS3 transitions with JavaScript fallback + * Simple markup using unordered list + * Settings for transition and timeout durations + * Multiple slideshows supported + * Automatic and manual fade + * Works in all major desktop and mobile browsers + * Captions and other html-elements supported inside slides + * Separate pagination and next/prev controls + * Possibility to choose where the controls append to + * Possibility to randomize the order of the slides + * Possibility to use custom markup for pagination + * Can be paused while hovering slideshow and/or controls + * Images can be wrapped inside links + * Optional 'before' and 'after' callbacks + + + +Usage Instructions and demo +====== + +For instructions and demo go to [http://responsiveslides.com/](http://responsiveslides.com/), or [download this repository as a zip file](https://github.com/viljamis/ResponsiveSlides.js/zipball/master) and and open "index.html" from the "example" folder. + +* View [additional usage examples online](http://responsiveslides.com/themes/themes.html). +* View [a demo with captions](http://responsiveslides.com/with-captions/themes.html). + +Currently jQuery 1.6 and up is supported. + + + +License +====== + +Licensed under the MIT license. + +Copyright (c) 2011-2012 Viljami Salminen, http://viljamis.com/ + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + + +Changelog +====== + + +v1.55 (2016-08-05) - Adds jQuery 3.0 compatibility (thanks to [@Requios](https://github.com/Requios)!). + +v1.54 (2013-04-26) - Fixes few bugs with the before and after callbacks. + +v1.53 (2013-01-14) - Minor speed optimization (thanks [@bazineta](https://github.com/bazineta)!). + +v1.52 (2013-01-07) - Adds option called "manualControls" which allows to write custom markup for pager navigation (thanks to [@andyadams](https://github.com/andyadams)). "controls" option is renamed to "navContainer". Default speed of the transition is now to 500ms. Adds also webkit-backface-visibility: hidden; style for the slides to prevent some HD acceleration issues on mobile WebKit browsers. + +v1.51 (2012-12-15) - Fixes a bug where pictures would not display if next button was clicked too quickly 10 times. + +v1.5 (2012-12-14) - Adds CSS3 transition support with automatic jQuery fallback. + +v1.32 (2012-05-09) - Fixes a bug which caused the slideshow to break in Chrome when changing between active and inactive browser tabs. + +v1.31 (2012-05-02) - Easier to use callbacks (+ optional "active" class for the next/prev buttons when animating slides. If you need this functionality, open the unminified version and search for "Adds active class during slide animation" and remove comments around it). + +v1.3 (2012-04-26) - Three new options: "random", "pause", "pauseControls" + small bug fixes. + +v1.25 (2012-04-19) - No more flashing of unstyled slideshow before JS has loaded. Adds also better support for cases when JavaScript isn't available. + +v1.24 (2012-04-12) - Changes the way slideshow works if there's only one slide. Now all classes and max-width for the container are added, but we don't show the next and prev buttons anymore as they don't make much sense in that case. This version also fixes a bug which made the 'previous' button always go to the next slide. + +v1.23 (2012-03-31) - Adds new option called "controls", which allows to choose where the controls should be appended to. Includes also code optimization, bug fixes, better option names and better jQuery support (jQuery 1.4 and up is now supported). + +v1.22 (2012-03-27) - Adds callback events which are similar as in [@Wilto](https://github.com/Wilto)'s [Dynamic Carousel](https://github.com/Wilto/Dynamic-Carousel/). The possibility to change the 'namespace' is also back + next/prev buttons have now classes which make more sense. + +v1.21 (2012-03-23) - Added two new options: 'nextText' and 'prevText'. + +v1.20 (2012-03-21) - New option called 'nav', which enables next and previous buttons. Can be used with 'pagination' and 'auto' options. Adds also new [themes folder](http://responsiveslides.com/themes/themes.html) with three different ways to use the new next and previous buttons. + +v1.10 (2012-03-12) - Refactoring, New markup style, CSS is now separated from the plugin, you can have links around images and other elements inside slides (not just images, but also captions etc.) + New option called "pagination", which enables to choose both "pagination" and "auto" at the same time. Shout outs for the help to [@bgutschke](https://github.com/bgutschke) + +v1.05 (2012-03-05) - No more need to change the namespace if you have more than one slideshow on the same page. + +v1.04 (2011-12-19) - Fixes problems when ResponsiveSlides.js is used with other plugins + +v1.03 (2011-12-12) - Code refactoring, smaller size, better performance + +v1.01 (2011-12-11) - Better usage of styles and the namespace + +v1.00 (2011-12-04) - Release + + +Want to do a pull request? +====== + +Great! New ideas are more than welcome, but please check the [Pull Request Guidelines](https://github.com/viljamis/ResponsiveSlides.js/wiki/Pull-Request-Guidelines) first before doing so. diff --git a/chimere/static/responsiveslides/responsiveslides.css b/chimere/static/responsiveslides/responsiveslides.css new file mode 100644 index 0000000..f9a65fd --- /dev/null +++ b/chimere/static/responsiveslides/responsiveslides.css @@ -0,0 +1,33 @@ +/*! http://responsiveslides.com v1.55 by @viljamis */ + +.rslides { + position: relative; + list-style: none; + overflow: hidden; + width: 100%; + padding: 0; + margin: 0; + } + +.rslides li { + -webkit-backface-visibility: hidden; + position: absolute; + display: none; + width: 100%; + left: 0; + top: 0; + } + +.rslides li:first-child { + position: relative; + display: block; + float: left; + } + +.rslides img { + display: block; + height: auto; + float: left; + width: 100%; + border: 0; + } diff --git a/chimere/static/responsiveslides/responsiveslides.js b/chimere/static/responsiveslides/responsiveslides.js new file mode 100644 index 0000000..59e947e --- /dev/null +++ b/chimere/static/responsiveslides/responsiveslides.js @@ -0,0 +1,391 @@ +/*! ResponsiveSlides.js v1.55 + * http://responsiveslides.com + * http://viljamis.com + * + * Copyright (c) 2011-2012 @viljamis + * Available under the MIT license + */ + +/*jslint browser: true, sloppy: true, vars: true, plusplus: true, indent: 2 */ + +(function ($, window, i) { + $.fn.responsiveSlides = function (options) { + + // Default settings + var settings = $.extend({ + "auto": true, // Boolean: Animate automatically, true or false + "speed": 500, // Integer: Speed of the transition, in milliseconds + "timeout": 4000, // Integer: Time between slide transitions, in milliseconds + "pager": false, // Boolean: Show pager, true or false + "nav": false, // Boolean: Show navigation, true or false + "random": false, // Boolean: Randomize the order of the slides, true or false + "pause": false, // Boolean: Pause on hover, true or false + "pauseControls": true, // Boolean: Pause when hovering controls, true or false + "prevText": "Previous", // String: Text for the "previous" button + "nextText": "Next", // String: Text for the "next" button + "maxwidth": "", // Integer: Max-width of the slideshow, in pixels + "navContainer": "", // Selector: Where auto generated controls should be appended to, default is after the