diff --git a/README.md b/README.md index 4a0ba0e..015bc26 100644 --- a/README.md +++ b/README.md @@ -235,67 +235,28 @@ But you can add a navigation menu so it looks like this as an example: ![User Map with Navigation](docs/img/with_nav.png) -To add navigation menu, add html file named ```navigation.html``` in ```user_map/templates/``` dir under your project's directory (along with your custom data privacy content). Django User Map uses Bootstrap 3, so you can use style classes and other stuffs from Bootstrap 3. - - As an example the content could be something like this tresulting the above screenshot: +To add navigation menu, add html file named ```navigation.html``` in ```user_map/templates/``` dir under your project's directory (along with your custom data privacy content) + +If you need more style or javascript resources to create this navigation menu, please add another template named ```extra_resources.html``` and save it in the same directory with the ```navigation.html```. These additional resources will be included in the head tag, so the content could be something like: ```html - - + + + + + + + + ``` - + ## Testing You can run the test suite by using django manage.py from your django project: diff --git a/setup.py b/setup.py index fc85213..3c16ded 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='django-user-map', - version='1.0.0', + version='1.1.0', author='Akbar Gumbira', author_email='akbargumbira@gmail.com', packages=find_packages(), diff --git a/user_map/static/user_map/css/user-map.css b/user_map/static/user_map/css/user-map.css index 509de99..5671752 100644 --- a/user_map/static/user_map/css/user-map.css +++ b/user_map/static/user_map/css/user-map.css @@ -11,17 +11,27 @@ body { -webkit-flex-direction: column; flex-direction: column; height:100%; - + margin: 0; } -.container { - width: 100%; +.bootstrap-wrapper { + flex:1; + display:flex; + height: 100%; + -webkit-flex-direction: column; + flex-direction: column; } #map { + width: 100%; height: 100%; } +.bootstrap-wrapper .container { + margin: 0px 0px 0px 50px; +} + + #map .leaflet-top { padding-top: 10px; } @@ -30,20 +40,50 @@ body { background-color: rgba(250, 250, 250, 0.5); } -.footer { +.bootstrap-wrapper .footer { color: rgb(120, 120, 120); margin-bottom: 20px; } -.registration-form { +.bootstrap-wrapper .registration-form { max-width: 600px; } -.form-group .multiple-checkbox ul { - padding-left: 0; - list-style: outside none none; +.bootstrap-wrapper .form-group .multiple-checkbox ul { + padding-left: 0; + list-style: outside none none; + margin: 0px; +} + +.modal { + display: none; + overflow: auto; + overflow-y: scroll; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + margin: 0px; + background-color: transparent; + width: auto; + border: none; } +/* Override this style from bootstrap wrapper */ +.bootstrap-wrapper .tooltip-inner { + padding: 3px 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + border-radius: 4px; +} + +.leaflet-control-zoom a { + color: #000000 !important; +} /* ******************** */ /* Misc */ /* ******************** */ diff --git a/user_map/static/user_map/css/wrap-bootstrap.css b/user_map/static/user_map/css/wrap-bootstrap.css new file mode 100644 index 0000000..325e4d2 --- /dev/null +++ b/user_map/static/user_map/css/wrap-bootstrap.css @@ -0,0 +1,5856 @@ +.bootstrap-wrapper { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.428571429; + color: #333333; + background-color: white; + /*! + * Bootstrap v3.0.0 + * + * Copyright 2013 Twitter, Inc + * Licensed under the Apache License v2.0 + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Designed and built with all the love in the world @twitter by @mdo and @fat. + */ + /*! normalize.css v2.1.0 | MIT License | git.io/normalize */ +} +.bootstrap-wrapper article, +.bootstrap-wrapper aside, +.bootstrap-wrapper details, +.bootstrap-wrapper figcaption, +.bootstrap-wrapper figure, +.bootstrap-wrapper footer, +.bootstrap-wrapper header, +.bootstrap-wrapper hgroup, +.bootstrap-wrapper main, +.bootstrap-wrapper nav, +.bootstrap-wrapper section, +.bootstrap-wrapper summary { + display: block; +} +.bootstrap-wrapper audio, +.bootstrap-wrapper canvas, +.bootstrap-wrapper video { + display: inline-block; +} +.bootstrap-wrapper audio:not([controls]) { + display: none; + height: 0; +} +.bootstrap-wrapper [hidden] { + display: none; +} +.bootstrap-wrapper html { + font-family: sans-serif; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} +.bootstrap-wrapper body { + margin: 0; +} +.bootstrap-wrapper a:focus { + outline: thin dotted; +} +.bootstrap-wrapper a:active, +.bootstrap-wrapper a:hover { + outline: 0; +} +.bootstrap-wrapper h1 { + font-size: 2em; + margin: 0.67em 0; +} +.bootstrap-wrapper abbr[title] { + border-bottom: 1px dotted; +} +.bootstrap-wrapper b, +.bootstrap-wrapper strong { + font-weight: bold; +} +.bootstrap-wrapper dfn { + font-style: italic; +} +.bootstrap-wrapper hr { + -moz-box-sizing: content-box; + box-sizing: content-box; + height: 0; +} +.bootstrap-wrapper mark { + background: #ff0; + color: #000; +} +.bootstrap-wrapper code, +.bootstrap-wrapper kbd, +.bootstrap-wrapper pre, +.bootstrap-wrapper samp { + font-family: monospace, serif; + font-size: 1em; +} +.bootstrap-wrapper pre { + white-space: pre-wrap; +} +.bootstrap-wrapper q { + quotes: "\201C" "\201D" "\2018" "\2019"; +} +.bootstrap-wrapper small { + font-size: 80%; +} +.bootstrap-wrapper sub, +.bootstrap-wrapper sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} +.bootstrap-wrapper sup { + top: -0.5em; +} +.bootstrap-wrapper sub { + bottom: -0.25em; +} +.bootstrap-wrapper img { + border: 0; +} +.bootstrap-wrapper svg:not(:root) { + overflow: hidden; +} +.bootstrap-wrapper figure { + margin: 0; +} +.bootstrap-wrapper fieldset { + border: 1px solid #c0c0c0; + margin: 0 2px; + padding: 0.35em 0.625em 0.75em; +} +.bootstrap-wrapper legend { + border: 0; + padding: 0; +} +.bootstrap-wrapper button, +.bootstrap-wrapper input, +.bootstrap-wrapper select, +.bootstrap-wrapper textarea { + font-family: inherit; + font-size: 100%; + margin: 0; +} +.bootstrap-wrapper button, +.bootstrap-wrapper input { + line-height: normal; +} +.bootstrap-wrapper button, +.bootstrap-wrapper select { + text-transform: none; +} +.bootstrap-wrapper button, +.bootstrap-wrapper html input[type="button"], +.bootstrap-wrapper input[type="reset"], +.bootstrap-wrapper input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +.bootstrap-wrapper button[disabled], +.bootstrap-wrapper html input[disabled] { + cursor: default; +} +.bootstrap-wrapper input[type="checkbox"], +.bootstrap-wrapper input[type="radio"] { + box-sizing: border-box; + padding: 0; +} +.bootstrap-wrapper input[type="search"] { + -webkit-appearance: textfield; + -moz-box-sizing: content-box; + -webkit-box-sizing: content-box; + box-sizing: content-box; +} +.bootstrap-wrapper input[type="search"]::-webkit-search-cancel-button, +.bootstrap-wrapper input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +.bootstrap-wrapper button::-moz-focus-inner, +.bootstrap-wrapper input::-moz-focus-inner { + border: 0; + padding: 0; +} +.bootstrap-wrapper textarea { + overflow: auto; + vertical-align: top; +} +.bootstrap-wrapper table { + border-collapse: collapse; + border-spacing: 0; +} +.bootstrap-wrapper *, +.bootstrap-wrapper *:before, +.bootstrap-wrapper *:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.bootstrap-wrapper html { + font-size: 62.5%; + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +.bootstrap-wrapper body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.428571429; + color: #333333; + background-color: #ffffff; +} +.bootstrap-wrapper input, +.bootstrap-wrapper button, +.bootstrap-wrapper select, +.bootstrap-wrapper textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +.bootstrap-wrapper button, +.bootstrap-wrapper input, +.bootstrap-wrapper select[multiple], +.bootstrap-wrapper textarea { + background-image: none; +} +.bootstrap-wrapper a { + color: #428bca; + text-decoration: none; +} +.bootstrap-wrapper a:hover, +.bootstrap-wrapper a:focus { + color: #2a6496; + text-decoration: underline; +} +.bootstrap-wrapper a:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.bootstrap-wrapper img { + vertical-align: middle; +} +.bootstrap-wrapper .img-responsive { + display: block; + max-width: 100%; + height: auto; +} +.bootstrap-wrapper .img-rounded { + border-radius: 6px; +} +.bootstrap-wrapper .img-thumbnail { + padding: 4px; + line-height: 1.428571429; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto; +} +.bootstrap-wrapper .img-circle { + border-radius: 50%; +} +.bootstrap-wrapper hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eeeeee; +} +.bootstrap-wrapper .sr-only { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0 0 0 0); + border: 0; +} +@media print { + .bootstrap-wrapper * { + text-shadow: none !important; + color: #000 !important; + background: transparent !important; + box-shadow: none !important; + } + .bootstrap-wrapper a, + .bootstrap-wrapper a:visited { + text-decoration: underline; + } + .bootstrap-wrapper a[href]:after { + content: " (" attr(href) ")"; + } + .bootstrap-wrapper abbr[title]:after { + content: " (" attr(title) ")"; + } + .bootstrap-wrapper .ir a:after, + .bootstrap-wrapper a[href^="javascript:"]:after, + .bootstrap-wrapper a[href^="#"]:after { + content: ""; + } + .bootstrap-wrapper pre, + .bootstrap-wrapper blockquote { + border: 1px solid #999; + page-break-inside: avoid; + } + .bootstrap-wrapper thead { + display: table-header-group; + } + .bootstrap-wrapper tr, + .bootstrap-wrapper img { + page-break-inside: avoid; + } + .bootstrap-wrapper img { + max-width: 100% !important; + } + @page { + margin: 2cm .5cm; + } + .bootstrap-wrapper p, + .bootstrap-wrapper h2, + .bootstrap-wrapper h3 { + orphans: 3; + widows: 3; + } + .bootstrap-wrapper h2, + .bootstrap-wrapper h3 { + page-break-after: avoid; + } + .bootstrap-wrapper .navbar { + display: none; + } + .bootstrap-wrapper .table td, + .bootstrap-wrapper .table th { + background-color: #fff !important; + } + .bootstrap-wrapper .btn > .caret, + .bootstrap-wrapper .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .bootstrap-wrapper .label { + border: 1px solid #000; + } + .bootstrap-wrapper .table { + border-collapse: collapse !important; + } + .bootstrap-wrapper .table-bordered th, + .bootstrap-wrapper .table-bordered td { + border: 1px solid #ddd !important; + } +} +.bootstrap-wrapper p { + margin: 0 0 10px; +} +.bootstrap-wrapper .lead { + margin-bottom: 20px; + font-size: 16.099999999999998px; + font-weight: 200; + line-height: 1.4; +} +@media (min-width: 768px) { + .bootstrap-wrapper .lead { + font-size: 21px; + } +} +.bootstrap-wrapper small { + font-size: 85%; +} +.bootstrap-wrapper cite { + font-style: normal; +} +.bootstrap-wrapper .text-muted { + color: #999999; +} +.bootstrap-wrapper .text-primary { + color: #428bca; +} +.bootstrap-wrapper .text-warning { + color: #c09853; +} +.bootstrap-wrapper .text-danger { + color: #b94a48; +} +.bootstrap-wrapper .text-success { + color: #468847; +} +.bootstrap-wrapper .text-info { + color: #3a87ad; +} +.bootstrap-wrapper .text-left { + text-align: left; +} +.bootstrap-wrapper .text-right { + text-align: right; +} +.bootstrap-wrapper .text-center { + text-align: center; +} +.bootstrap-wrapper h1, +.bootstrap-wrapper h2, +.bootstrap-wrapper h3, +.bootstrap-wrapper h4, +.bootstrap-wrapper h5, +.bootstrap-wrapper h6, +.bootstrap-wrapper .h1, +.bootstrap-wrapper .h2, +.bootstrap-wrapper .h3, +.bootstrap-wrapper .h4, +.bootstrap-wrapper .h5, +.bootstrap-wrapper .h6 { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-weight: 500; + line-height: 1.1; +} +.bootstrap-wrapper h1 small, +.bootstrap-wrapper h2 small, +.bootstrap-wrapper h3 small, +.bootstrap-wrapper h4 small, +.bootstrap-wrapper h5 small, +.bootstrap-wrapper h6 small, +.bootstrap-wrapper .h1 small, +.bootstrap-wrapper .h2 small, +.bootstrap-wrapper .h3 small, +.bootstrap-wrapper .h4 small, +.bootstrap-wrapper .h5 small, +.bootstrap-wrapper .h6 small { + font-weight: normal; + line-height: 1; + color: #999999; +} +.bootstrap-wrapper h1, +.bootstrap-wrapper h2, +.bootstrap-wrapper h3 { + margin-top: 20px; + margin-bottom: 10px; +} +.bootstrap-wrapper h4, +.bootstrap-wrapper h5, +.bootstrap-wrapper h6 { + margin-top: 10px; + margin-bottom: 10px; +} +.bootstrap-wrapper h1, +.bootstrap-wrapper .h1 { + font-size: 36px; +} +.bootstrap-wrapper h2, +.bootstrap-wrapper .h2 { + font-size: 30px; +} +.bootstrap-wrapper h3, +.bootstrap-wrapper .h3 { + font-size: 24px; +} +.bootstrap-wrapper h4, +.bootstrap-wrapper .h4 { + font-size: 18px; +} +.bootstrap-wrapper h5, +.bootstrap-wrapper .h5 { + font-size: 14px; +} +.bootstrap-wrapper h6, +.bootstrap-wrapper .h6 { + font-size: 12px; +} +.bootstrap-wrapper h1 small, +.bootstrap-wrapper .h1 small { + font-size: 24px; +} +.bootstrap-wrapper h2 small, +.bootstrap-wrapper .h2 small { + font-size: 18px; +} +.bootstrap-wrapper h3 small, +.bootstrap-wrapper .h3 small, +.bootstrap-wrapper h4 small, +.bootstrap-wrapper .h4 small { + font-size: 14px; +} +.bootstrap-wrapper .page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eeeeee; +} +.bootstrap-wrapper ul, +.bootstrap-wrapper ol { + margin-top: 0; + margin-bottom: 10px; +} +.bootstrap-wrapper ul ul, +.bootstrap-wrapper ol ul, +.bootstrap-wrapper ul ol, +.bootstrap-wrapper ol ol { + margin-bottom: 0; +} +.bootstrap-wrapper .list-unstyled { + padding-left: 0; + list-style: none; +} +.bootstrap-wrapper .list-inline { + padding-left: 0; + list-style: none; +} +.bootstrap-wrapper .list-inline > li { + display: inline-block; + padding-left: 5px; + padding-right: 5px; +} +.bootstrap-wrapper dl { + margin-bottom: 20px; +} +.bootstrap-wrapper dt, +.bootstrap-wrapper dd { + line-height: 1.428571429; +} +.bootstrap-wrapper dt { + font-weight: bold; +} +.bootstrap-wrapper dd { + margin-left: 0; +} +@media (min-width: 768px) { + .bootstrap-wrapper .dl-horizontal dt { + float: left; + width: 160px; + clear: left; + text-align: right; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + .bootstrap-wrapper .dl-horizontal dd { + margin-left: 180px; + } + .bootstrap-wrapper .dl-horizontal dd:before, + .bootstrap-wrapper .dl-horizontal dd:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ + } + .bootstrap-wrapper .dl-horizontal dd:after { + clear: both; + } + .bootstrap-wrapper .dl-horizontal dd:before, + .bootstrap-wrapper .dl-horizontal dd:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ + } + .bootstrap-wrapper .dl-horizontal dd:after { + clear: both; + } +} +.bootstrap-wrapper abbr[title], +.bootstrap-wrapper abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #999999; +} +.bootstrap-wrapper abbr.initialism { + font-size: 90%; + text-transform: uppercase; +} +.bootstrap-wrapper blockquote { + padding: 10px 20px; + margin: 0 0 20px; + border-left: 5px solid #eeeeee; +} +.bootstrap-wrapper blockquote p { + font-size: 17.5px; + font-weight: 300; + line-height: 1.25; +} +.bootstrap-wrapper blockquote p:last-child { + margin-bottom: 0; +} +.bootstrap-wrapper blockquote small { + display: block; + line-height: 1.428571429; + color: #999999; +} +.bootstrap-wrapper blockquote small:before { + content: '\2014 \00A0'; +} +.bootstrap-wrapper blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + border-right: 5px solid #eeeeee; + border-left: 0; +} +.bootstrap-wrapper blockquote.pull-right p, +.bootstrap-wrapper blockquote.pull-right small { + text-align: right; +} +.bootstrap-wrapper blockquote.pull-right small:before { + content: ''; +} +.bootstrap-wrapper blockquote.pull-right small:after { + content: '\00A0 \2014'; +} +.bootstrap-wrapper q:before, +.bootstrap-wrapper q:after, +.bootstrap-wrapper blockquote:before, +.bootstrap-wrapper blockquote:after { + content: ""; +} +.bootstrap-wrapper address { + display: block; + margin-bottom: 20px; + font-style: normal; + line-height: 1.428571429; +} +.bootstrap-wrapper code, +.bootstrap-wrapper pre { + font-family: Monaco, Menlo, Consolas, "Courier New", monospace; +} +.bootstrap-wrapper code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + white-space: nowrap; + border-radius: 4px; +} +.bootstrap-wrapper pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.428571429; + word-break: break-all; + word-wrap: break-word; + color: #333333; + background-color: #f5f5f5; + border: 1px solid #cccccc; + border-radius: 4px; +} +.bootstrap-wrapper pre.prettyprint { + margin-bottom: 20px; +} +.bootstrap-wrapper pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border: 0; +} +.bootstrap-wrapper .pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.bootstrap-wrapper .container { + margin-right: auto; + margin-left: auto; + padding-left: 15px; + padding-right: 15px; +} +.bootstrap-wrapper .container:before, +.bootstrap-wrapper .container:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .container:after { + clear: both; +} +.bootstrap-wrapper .container:before, +.bootstrap-wrapper .container:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .container:after { + clear: both; +} +.bootstrap-wrapper .row { + margin-left: -15px; + margin-right: -15px; +} +.bootstrap-wrapper .row:before, +.bootstrap-wrapper .row:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .row:after { + clear: both; +} +.bootstrap-wrapper .row:before, +.bootstrap-wrapper .row:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .row:after { + clear: both; +} +.bootstrap-wrapper .col-xs-1, +.bootstrap-wrapper .col-xs-2, +.bootstrap-wrapper .col-xs-3, +.bootstrap-wrapper .col-xs-4, +.bootstrap-wrapper .col-xs-5, +.bootstrap-wrapper .col-xs-6, +.bootstrap-wrapper .col-xs-7, +.bootstrap-wrapper .col-xs-8, +.bootstrap-wrapper .col-xs-9, +.bootstrap-wrapper .col-xs-10, +.bootstrap-wrapper .col-xs-11, +.bootstrap-wrapper .col-xs-12, +.bootstrap-wrapper .col-sm-1, +.bootstrap-wrapper .col-sm-2, +.bootstrap-wrapper .col-sm-3, +.bootstrap-wrapper .col-sm-4, +.bootstrap-wrapper .col-sm-5, +.bootstrap-wrapper .col-sm-6, +.bootstrap-wrapper .col-sm-7, +.bootstrap-wrapper .col-sm-8, +.bootstrap-wrapper .col-sm-9, +.bootstrap-wrapper .col-sm-10, +.bootstrap-wrapper .col-sm-11, +.bootstrap-wrapper .col-sm-12, +.bootstrap-wrapper .col-md-1, +.bootstrap-wrapper .col-md-2, +.bootstrap-wrapper .col-md-3, +.bootstrap-wrapper .col-md-4, +.bootstrap-wrapper .col-md-5, +.bootstrap-wrapper .col-md-6, +.bootstrap-wrapper .col-md-7, +.bootstrap-wrapper .col-md-8, +.bootstrap-wrapper .col-md-9, +.bootstrap-wrapper .col-md-10, +.bootstrap-wrapper .col-md-11, +.bootstrap-wrapper .col-md-12, +.bootstrap-wrapper .col-lg-1, +.bootstrap-wrapper .col-lg-2, +.bootstrap-wrapper .col-lg-3, +.bootstrap-wrapper .col-lg-4, +.bootstrap-wrapper .col-lg-5, +.bootstrap-wrapper .col-lg-6, +.bootstrap-wrapper .col-lg-7, +.bootstrap-wrapper .col-lg-8, +.bootstrap-wrapper .col-lg-9, +.bootstrap-wrapper .col-lg-10, +.bootstrap-wrapper .col-lg-11, +.bootstrap-wrapper .col-lg-12 { + position: relative; + min-height: 1px; + padding-left: 15px; + padding-right: 15px; +} +.bootstrap-wrapper .col-xs-1, +.bootstrap-wrapper .col-xs-2, +.bootstrap-wrapper .col-xs-3, +.bootstrap-wrapper .col-xs-4, +.bootstrap-wrapper .col-xs-5, +.bootstrap-wrapper .col-xs-6, +.bootstrap-wrapper .col-xs-7, +.bootstrap-wrapper .col-xs-8, +.bootstrap-wrapper .col-xs-9, +.bootstrap-wrapper .col-xs-10, +.bootstrap-wrapper .col-xs-11 { + float: left; +} +.bootstrap-wrapper .col-xs-1 { + width: 8.333333333333332%; +} +.bootstrap-wrapper .col-xs-2 { + width: 16.666666666666664%; +} +.bootstrap-wrapper .col-xs-3 { + width: 25%; +} +.bootstrap-wrapper .col-xs-4 { + width: 33.33333333333333%; +} +.bootstrap-wrapper .col-xs-5 { + width: 41.66666666666667%; +} +.bootstrap-wrapper .col-xs-6 { + width: 50%; +} +.bootstrap-wrapper .col-xs-7 { + width: 58.333333333333336%; +} +.bootstrap-wrapper .col-xs-8 { + width: 66.66666666666666%; +} +.bootstrap-wrapper .col-xs-9 { + width: 75%; +} +.bootstrap-wrapper .col-xs-10 { + width: 83.33333333333334%; +} +.bootstrap-wrapper .col-xs-11 { + width: 91.66666666666666%; +} +.bootstrap-wrapper .col-xs-12 { + width: 100%; +} +@media (min-width: 768px) { + .bootstrap-wrapper .container { + max-width: 750px; + } + .bootstrap-wrapper .col-sm-1, + .bootstrap-wrapper .col-sm-2, + .bootstrap-wrapper .col-sm-3, + .bootstrap-wrapper .col-sm-4, + .bootstrap-wrapper .col-sm-5, + .bootstrap-wrapper .col-sm-6, + .bootstrap-wrapper .col-sm-7, + .bootstrap-wrapper .col-sm-8, + .bootstrap-wrapper .col-sm-9, + .bootstrap-wrapper .col-sm-10, + .bootstrap-wrapper .col-sm-11 { + float: left; + } + .bootstrap-wrapper .col-sm-1 { + width: 8.333333333333332%; + } + .bootstrap-wrapper .col-sm-2 { + width: 16.666666666666664%; + } + .bootstrap-wrapper .col-sm-3 { + width: 25%; + } + .bootstrap-wrapper .col-sm-4 { + width: 33.33333333333333%; + } + .bootstrap-wrapper .col-sm-5 { + width: 41.66666666666667%; + } + .bootstrap-wrapper .col-sm-6 { + width: 50%; + } + .bootstrap-wrapper .col-sm-7 { + width: 58.333333333333336%; + } + .bootstrap-wrapper .col-sm-8 { + width: 66.66666666666666%; + } + .bootstrap-wrapper .col-sm-9 { + width: 75%; + } + .bootstrap-wrapper .col-sm-10 { + width: 83.33333333333334%; + } + .bootstrap-wrapper .col-sm-11 { + width: 91.66666666666666%; + } + .bootstrap-wrapper .col-sm-12 { + width: 100%; + } + .bootstrap-wrapper .col-sm-push-1 { + left: 8.333333333333332%; + } + .bootstrap-wrapper .col-sm-push-2 { + left: 16.666666666666664%; + } + .bootstrap-wrapper .col-sm-push-3 { + left: 25%; + } + .bootstrap-wrapper .col-sm-push-4 { + left: 33.33333333333333%; + } + .bootstrap-wrapper .col-sm-push-5 { + left: 41.66666666666667%; + } + .bootstrap-wrapper .col-sm-push-6 { + left: 50%; + } + .bootstrap-wrapper .col-sm-push-7 { + left: 58.333333333333336%; + } + .bootstrap-wrapper .col-sm-push-8 { + left: 66.66666666666666%; + } + .bootstrap-wrapper .col-sm-push-9 { + left: 75%; + } + .bootstrap-wrapper .col-sm-push-10 { + left: 83.33333333333334%; + } + .bootstrap-wrapper .col-sm-push-11 { + left: 91.66666666666666%; + } + .bootstrap-wrapper .col-sm-pull-1 { + right: 8.333333333333332%; + } + .bootstrap-wrapper .col-sm-pull-2 { + right: 16.666666666666664%; + } + .bootstrap-wrapper .col-sm-pull-3 { + right: 25%; + } + .bootstrap-wrapper .col-sm-pull-4 { + right: 33.33333333333333%; + } + .bootstrap-wrapper .col-sm-pull-5 { + right: 41.66666666666667%; + } + .bootstrap-wrapper .col-sm-pull-6 { + right: 50%; + } + .bootstrap-wrapper .col-sm-pull-7 { + right: 58.333333333333336%; + } + .bootstrap-wrapper .col-sm-pull-8 { + right: 66.66666666666666%; + } + .bootstrap-wrapper .col-sm-pull-9 { + right: 75%; + } + .bootstrap-wrapper .col-sm-pull-10 { + right: 83.33333333333334%; + } + .bootstrap-wrapper .col-sm-pull-11 { + right: 91.66666666666666%; + } + .bootstrap-wrapper .col-sm-offset-1 { + margin-left: 8.333333333333332%; + } + .bootstrap-wrapper .col-sm-offset-2 { + margin-left: 16.666666666666664%; + } + .bootstrap-wrapper .col-sm-offset-3 { + margin-left: 25%; + } + .bootstrap-wrapper .col-sm-offset-4 { + margin-left: 33.33333333333333%; + } + .bootstrap-wrapper .col-sm-offset-5 { + margin-left: 41.66666666666667%; + } + .bootstrap-wrapper .col-sm-offset-6 { + margin-left: 50%; + } + .bootstrap-wrapper .col-sm-offset-7 { + margin-left: 58.333333333333336%; + } + .bootstrap-wrapper .col-sm-offset-8 { + margin-left: 66.66666666666666%; + } + .bootstrap-wrapper .col-sm-offset-9 { + margin-left: 75%; + } + .bootstrap-wrapper .col-sm-offset-10 { + margin-left: 83.33333333333334%; + } + .bootstrap-wrapper .col-sm-offset-11 { + margin-left: 91.66666666666666%; + } +} +@media (min-width: 992px) { + .bootstrap-wrapper .container { + max-width: 970px; + } + .bootstrap-wrapper .col-md-1, + .bootstrap-wrapper .col-md-2, + .bootstrap-wrapper .col-md-3, + .bootstrap-wrapper .col-md-4, + .bootstrap-wrapper .col-md-5, + .bootstrap-wrapper .col-md-6, + .bootstrap-wrapper .col-md-7, + .bootstrap-wrapper .col-md-8, + .bootstrap-wrapper .col-md-9, + .bootstrap-wrapper .col-md-10, + .bootstrap-wrapper .col-md-11 { + float: left; + } + .bootstrap-wrapper .col-md-1 { + width: 8.333333333333332%; + } + .bootstrap-wrapper .col-md-2 { + width: 16.666666666666664%; + } + .bootstrap-wrapper .col-md-3 { + width: 25%; + } + .bootstrap-wrapper .col-md-4 { + width: 33.33333333333333%; + } + .bootstrap-wrapper .col-md-5 { + width: 41.66666666666667%; + } + .bootstrap-wrapper .col-md-6 { + width: 50%; + } + .bootstrap-wrapper .col-md-7 { + width: 58.333333333333336%; + } + .bootstrap-wrapper .col-md-8 { + width: 66.66666666666666%; + } + .bootstrap-wrapper .col-md-9 { + width: 75%; + } + .bootstrap-wrapper .col-md-10 { + width: 83.33333333333334%; + } + .bootstrap-wrapper .col-md-11 { + width: 91.66666666666666%; + } + .bootstrap-wrapper .col-md-12 { + width: 100%; + } + .bootstrap-wrapper .col-md-push-0 { + left: auto; + } + .bootstrap-wrapper .col-md-push-1 { + left: 8.333333333333332%; + } + .bootstrap-wrapper .col-md-push-2 { + left: 16.666666666666664%; + } + .bootstrap-wrapper .col-md-push-3 { + left: 25%; + } + .bootstrap-wrapper .col-md-push-4 { + left: 33.33333333333333%; + } + .bootstrap-wrapper .col-md-push-5 { + left: 41.66666666666667%; + } + .bootstrap-wrapper .col-md-push-6 { + left: 50%; + } + .bootstrap-wrapper .col-md-push-7 { + left: 58.333333333333336%; + } + .bootstrap-wrapper .col-md-push-8 { + left: 66.66666666666666%; + } + .bootstrap-wrapper .col-md-push-9 { + left: 75%; + } + .bootstrap-wrapper .col-md-push-10 { + left: 83.33333333333334%; + } + .bootstrap-wrapper .col-md-push-11 { + left: 91.66666666666666%; + } + .bootstrap-wrapper .col-md-pull-0 { + right: auto; + } + .bootstrap-wrapper .col-md-pull-1 { + right: 8.333333333333332%; + } + .bootstrap-wrapper .col-md-pull-2 { + right: 16.666666666666664%; + } + .bootstrap-wrapper .col-md-pull-3 { + right: 25%; + } + .bootstrap-wrapper .col-md-pull-4 { + right: 33.33333333333333%; + } + .bootstrap-wrapper .col-md-pull-5 { + right: 41.66666666666667%; + } + .bootstrap-wrapper .col-md-pull-6 { + right: 50%; + } + .bootstrap-wrapper .col-md-pull-7 { + right: 58.333333333333336%; + } + .bootstrap-wrapper .col-md-pull-8 { + right: 66.66666666666666%; + } + .bootstrap-wrapper .col-md-pull-9 { + right: 75%; + } + .bootstrap-wrapper .col-md-pull-10 { + right: 83.33333333333334%; + } + .bootstrap-wrapper .col-md-pull-11 { + right: 91.66666666666666%; + } + .bootstrap-wrapper .col-md-offset-0 { + margin-left: 0; + } + .bootstrap-wrapper .col-md-offset-1 { + margin-left: 8.333333333333332%; + } + .bootstrap-wrapper .col-md-offset-2 { + margin-left: 16.666666666666664%; + } + .bootstrap-wrapper .col-md-offset-3 { + margin-left: 25%; + } + .bootstrap-wrapper .col-md-offset-4 { + margin-left: 33.33333333333333%; + } + .bootstrap-wrapper .col-md-offset-5 { + margin-left: 41.66666666666667%; + } + .bootstrap-wrapper .col-md-offset-6 { + margin-left: 50%; + } + .bootstrap-wrapper .col-md-offset-7 { + margin-left: 58.333333333333336%; + } + .bootstrap-wrapper .col-md-offset-8 { + margin-left: 66.66666666666666%; + } + .bootstrap-wrapper .col-md-offset-9 { + margin-left: 75%; + } + .bootstrap-wrapper .col-md-offset-10 { + margin-left: 83.33333333333334%; + } + .bootstrap-wrapper .col-md-offset-11 { + margin-left: 91.66666666666666%; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .container { + max-width: 1170px; + } + .bootstrap-wrapper .col-lg-1, + .bootstrap-wrapper .col-lg-2, + .bootstrap-wrapper .col-lg-3, + .bootstrap-wrapper .col-lg-4, + .bootstrap-wrapper .col-lg-5, + .bootstrap-wrapper .col-lg-6, + .bootstrap-wrapper .col-lg-7, + .bootstrap-wrapper .col-lg-8, + .bootstrap-wrapper .col-lg-9, + .bootstrap-wrapper .col-lg-10, + .bootstrap-wrapper .col-lg-11 { + float: left; + } + .bootstrap-wrapper .col-lg-1 { + width: 8.333333333333332%; + } + .bootstrap-wrapper .col-lg-2 { + width: 16.666666666666664%; + } + .bootstrap-wrapper .col-lg-3 { + width: 25%; + } + .bootstrap-wrapper .col-lg-4 { + width: 33.33333333333333%; + } + .bootstrap-wrapper .col-lg-5 { + width: 41.66666666666667%; + } + .bootstrap-wrapper .col-lg-6 { + width: 50%; + } + .bootstrap-wrapper .col-lg-7 { + width: 58.333333333333336%; + } + .bootstrap-wrapper .col-lg-8 { + width: 66.66666666666666%; + } + .bootstrap-wrapper .col-lg-9 { + width: 75%; + } + .bootstrap-wrapper .col-lg-10 { + width: 83.33333333333334%; + } + .bootstrap-wrapper .col-lg-11 { + width: 91.66666666666666%; + } + .bootstrap-wrapper .col-lg-12 { + width: 100%; + } + .bootstrap-wrapper .col-lg-push-0 { + left: auto; + } + .bootstrap-wrapper .col-lg-push-1 { + left: 8.333333333333332%; + } + .bootstrap-wrapper .col-lg-push-2 { + left: 16.666666666666664%; + } + .bootstrap-wrapper .col-lg-push-3 { + left: 25%; + } + .bootstrap-wrapper .col-lg-push-4 { + left: 33.33333333333333%; + } + .bootstrap-wrapper .col-lg-push-5 { + left: 41.66666666666667%; + } + .bootstrap-wrapper .col-lg-push-6 { + left: 50%; + } + .bootstrap-wrapper .col-lg-push-7 { + left: 58.333333333333336%; + } + .bootstrap-wrapper .col-lg-push-8 { + left: 66.66666666666666%; + } + .bootstrap-wrapper .col-lg-push-9 { + left: 75%; + } + .bootstrap-wrapper .col-lg-push-10 { + left: 83.33333333333334%; + } + .bootstrap-wrapper .col-lg-push-11 { + left: 91.66666666666666%; + } + .bootstrap-wrapper .col-lg-pull-0 { + right: auto; + } + .bootstrap-wrapper .col-lg-pull-1 { + right: 8.333333333333332%; + } + .bootstrap-wrapper .col-lg-pull-2 { + right: 16.666666666666664%; + } + .bootstrap-wrapper .col-lg-pull-3 { + right: 25%; + } + .bootstrap-wrapper .col-lg-pull-4 { + right: 33.33333333333333%; + } + .bootstrap-wrapper .col-lg-pull-5 { + right: 41.66666666666667%; + } + .bootstrap-wrapper .col-lg-pull-6 { + right: 50%; + } + .bootstrap-wrapper .col-lg-pull-7 { + right: 58.333333333333336%; + } + .bootstrap-wrapper .col-lg-pull-8 { + right: 66.66666666666666%; + } + .bootstrap-wrapper .col-lg-pull-9 { + right: 75%; + } + .bootstrap-wrapper .col-lg-pull-10 { + right: 83.33333333333334%; + } + .bootstrap-wrapper .col-lg-pull-11 { + right: 91.66666666666666%; + } + .bootstrap-wrapper .col-lg-offset-0 { + margin-left: 0; + } + .bootstrap-wrapper .col-lg-offset-1 { + margin-left: 8.333333333333332%; + } + .bootstrap-wrapper .col-lg-offset-2 { + margin-left: 16.666666666666664%; + } + .bootstrap-wrapper .col-lg-offset-3 { + margin-left: 25%; + } + .bootstrap-wrapper .col-lg-offset-4 { + margin-left: 33.33333333333333%; + } + .bootstrap-wrapper .col-lg-offset-5 { + margin-left: 41.66666666666667%; + } + .bootstrap-wrapper .col-lg-offset-6 { + margin-left: 50%; + } + .bootstrap-wrapper .col-lg-offset-7 { + margin-left: 58.333333333333336%; + } + .bootstrap-wrapper .col-lg-offset-8 { + margin-left: 66.66666666666666%; + } + .bootstrap-wrapper .col-lg-offset-9 { + margin-left: 75%; + } + .bootstrap-wrapper .col-lg-offset-10 { + margin-left: 83.33333333333334%; + } + .bootstrap-wrapper .col-lg-offset-11 { + margin-left: 91.66666666666666%; + } +} +.bootstrap-wrapper table { + max-width: 100%; + background-color: transparent; +} +.bootstrap-wrapper th { + text-align: left; +} +.bootstrap-wrapper .table { + width: 100%; + margin-bottom: 20px; +} +.bootstrap-wrapper .table thead > tr > th, +.bootstrap-wrapper .table tbody > tr > th, +.bootstrap-wrapper .table tfoot > tr > th, +.bootstrap-wrapper .table thead > tr > td, +.bootstrap-wrapper .table tbody > tr > td, +.bootstrap-wrapper .table tfoot > tr > td { + padding: 8px; + line-height: 1.428571429; + vertical-align: top; + border-top: 1px solid #dddddd; +} +.bootstrap-wrapper .table thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #dddddd; +} +.bootstrap-wrapper .table caption + thead tr:first-child th, +.bootstrap-wrapper .table colgroup + thead tr:first-child th, +.bootstrap-wrapper .table thead:first-child tr:first-child th, +.bootstrap-wrapper .table caption + thead tr:first-child td, +.bootstrap-wrapper .table colgroup + thead tr:first-child td, +.bootstrap-wrapper .table thead:first-child tr:first-child td { + border-top: 0; +} +.bootstrap-wrapper .table tbody + tbody { + border-top: 2px solid #dddddd; +} +.bootstrap-wrapper .table .table { + background-color: #ffffff; +} +.bootstrap-wrapper .table-condensed thead > tr > th, +.bootstrap-wrapper .table-condensed tbody > tr > th, +.bootstrap-wrapper .table-condensed tfoot > tr > th, +.bootstrap-wrapper .table-condensed thead > tr > td, +.bootstrap-wrapper .table-condensed tbody > tr > td, +.bootstrap-wrapper .table-condensed tfoot > tr > td { + padding: 5px; +} +.bootstrap-wrapper .table-bordered { + border: 1px solid #dddddd; +} +.bootstrap-wrapper .table-bordered > thead > tr > th, +.bootstrap-wrapper .table-bordered > tbody > tr > th, +.bootstrap-wrapper .table-bordered > tfoot > tr > th, +.bootstrap-wrapper .table-bordered > thead > tr > td, +.bootstrap-wrapper .table-bordered > tbody > tr > td, +.bootstrap-wrapper .table-bordered > tfoot > tr > td { + border: 1px solid #dddddd; +} +.bootstrap-wrapper .table-bordered > thead > tr > th, +.bootstrap-wrapper .table-bordered > thead > tr > td { + border-bottom-width: 2px; +} +.bootstrap-wrapper .table-striped > tbody > tr:nth-child(odd) > td, +.bootstrap-wrapper .table-striped > tbody > tr:nth-child(odd) > th { + background-color: #f9f9f9; +} +.bootstrap-wrapper .table-hover > tbody > tr:hover > td, +.bootstrap-wrapper .table-hover > tbody > tr:hover > th { + background-color: #f5f5f5; +} +.bootstrap-wrapper table col[class*="col-"] { + float: none; + display: table-column; +} +.bootstrap-wrapper table td[class*="col-"], +.bootstrap-wrapper table th[class*="col-"] { + float: none; + display: table-cell; +} +.bootstrap-wrapper .table > thead > tr > td.active, +.bootstrap-wrapper .table > tbody > tr > td.active, +.bootstrap-wrapper .table > tfoot > tr > td.active, +.bootstrap-wrapper .table > thead > tr > th.active, +.bootstrap-wrapper .table > tbody > tr > th.active, +.bootstrap-wrapper .table > tfoot > tr > th.active, +.bootstrap-wrapper .table > thead > tr.active > td, +.bootstrap-wrapper .table > tbody > tr.active > td, +.bootstrap-wrapper .table > tfoot > tr.active > td, +.bootstrap-wrapper .table > thead > tr.active > th, +.bootstrap-wrapper .table > tbody > tr.active > th, +.bootstrap-wrapper .table > tfoot > tr.active > th { + background-color: #f5f5f5; +} +.bootstrap-wrapper .table > thead > tr > td.success, +.bootstrap-wrapper .table > tbody > tr > td.success, +.bootstrap-wrapper .table > tfoot > tr > td.success, +.bootstrap-wrapper .table > thead > tr > th.success, +.bootstrap-wrapper .table > tbody > tr > th.success, +.bootstrap-wrapper .table > tfoot > tr > th.success, +.bootstrap-wrapper .table > thead > tr.success > td, +.bootstrap-wrapper .table > tbody > tr.success > td, +.bootstrap-wrapper .table > tfoot > tr.success > td, +.bootstrap-wrapper .table > thead > tr.success > th, +.bootstrap-wrapper .table > tbody > tr.success > th, +.bootstrap-wrapper .table > tfoot > tr.success > th { + background-color: #dff0d8; + border-color: #d6e9c6; +} +.bootstrap-wrapper .table-hover > tbody > tr > td.success:hover, +.bootstrap-wrapper .table-hover > tbody > tr > th.success:hover, +.bootstrap-wrapper .table-hover > tbody > tr.success:hover > td { + background-color: #d0e9c6; + border-color: #c9e2b3; +} +.bootstrap-wrapper .table > thead > tr > td.danger, +.bootstrap-wrapper .table > tbody > tr > td.danger, +.bootstrap-wrapper .table > tfoot > tr > td.danger, +.bootstrap-wrapper .table > thead > tr > th.danger, +.bootstrap-wrapper .table > tbody > tr > th.danger, +.bootstrap-wrapper .table > tfoot > tr > th.danger, +.bootstrap-wrapper .table > thead > tr.danger > td, +.bootstrap-wrapper .table > tbody > tr.danger > td, +.bootstrap-wrapper .table > tfoot > tr.danger > td, +.bootstrap-wrapper .table > thead > tr.danger > th, +.bootstrap-wrapper .table > tbody > tr.danger > th, +.bootstrap-wrapper .table > tfoot > tr.danger > th { + background-color: #f2dede; + border-color: #eed3d7; +} +.bootstrap-wrapper .table-hover > tbody > tr > td.danger:hover, +.bootstrap-wrapper .table-hover > tbody > tr > th.danger:hover, +.bootstrap-wrapper .table-hover > tbody > tr.danger:hover > td { + background-color: #ebcccc; + border-color: #e6c1c7; +} +.bootstrap-wrapper .table > thead > tr > td.warning, +.bootstrap-wrapper .table > tbody > tr > td.warning, +.bootstrap-wrapper .table > tfoot > tr > td.warning, +.bootstrap-wrapper .table > thead > tr > th.warning, +.bootstrap-wrapper .table > tbody > tr > th.warning, +.bootstrap-wrapper .table > tfoot > tr > th.warning, +.bootstrap-wrapper .table > thead > tr.warning > td, +.bootstrap-wrapper .table > tbody > tr.warning > td, +.bootstrap-wrapper .table > tfoot > tr.warning > td, +.bootstrap-wrapper .table > thead > tr.warning > th, +.bootstrap-wrapper .table > tbody > tr.warning > th, +.bootstrap-wrapper .table > tfoot > tr.warning > th { + background-color: #fcf8e3; + border-color: #fbeed5; +} +.bootstrap-wrapper .table-hover > tbody > tr > td.warning:hover, +.bootstrap-wrapper .table-hover > tbody > tr > th.warning:hover, +.bootstrap-wrapper .table-hover > tbody > tr.warning:hover > td { + background-color: #faf2cc; + border-color: #f8e5be; +} +@media (max-width: 768px) { + .bootstrap-wrapper .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + overflow-x: scroll; + border: 1px solid #dddddd; + } + .bootstrap-wrapper .table-responsive > .table { + margin-bottom: 0; + background-color: #fff; + } + .bootstrap-wrapper .table-responsive > .table > thead > tr > th, + .bootstrap-wrapper .table-responsive > .table > tbody > tr > th, + .bootstrap-wrapper .table-responsive > .table > tfoot > tr > th, + .bootstrap-wrapper .table-responsive > .table > thead > tr > td, + .bootstrap-wrapper .table-responsive > .table > tbody > tr > td, + .bootstrap-wrapper .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .bootstrap-wrapper .table-responsive > .table-bordered { + border: 0; + } + .bootstrap-wrapper .table-responsive > .table-bordered > thead > tr > th:first-child, + .bootstrap-wrapper .table-responsive > .table-bordered > tbody > tr > th:first-child, + .bootstrap-wrapper .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .bootstrap-wrapper .table-responsive > .table-bordered > thead > tr > td:first-child, + .bootstrap-wrapper .table-responsive > .table-bordered > tbody > tr > td:first-child, + .bootstrap-wrapper .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .bootstrap-wrapper .table-responsive > .table-bordered > thead > tr > th:last-child, + .bootstrap-wrapper .table-responsive > .table-bordered > tbody > tr > th:last-child, + .bootstrap-wrapper .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .bootstrap-wrapper .table-responsive > .table-bordered > thead > tr > td:last-child, + .bootstrap-wrapper .table-responsive > .table-bordered > tbody > tr > td:last-child, + .bootstrap-wrapper .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .bootstrap-wrapper .table-responsive > .table-bordered > thead > tr:last-child > th, + .bootstrap-wrapper .table-responsive > .table-bordered > tbody > tr:last-child > th, + .bootstrap-wrapper .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .bootstrap-wrapper .table-responsive > .table-bordered > thead > tr:last-child > td, + .bootstrap-wrapper .table-responsive > .table-bordered > tbody > tr:last-child > td, + .bootstrap-wrapper .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} +.bootstrap-wrapper fieldset { + padding: 0; + margin: 0; + border: 0; +} +.bootstrap-wrapper legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} +.bootstrap-wrapper label { + display: inline-block; + margin-bottom: 5px; + font-weight: bold; +} +.bootstrap-wrapper input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.bootstrap-wrapper input[type="radio"], +.bootstrap-wrapper input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + /* IE8-9 */ + line-height: normal; +} +.bootstrap-wrapper input[type="file"] { + display: block; +} +.bootstrap-wrapper select[multiple], +.bootstrap-wrapper select[size] { + height: auto; +} +.bootstrap-wrapper select optgroup { + font-size: inherit; + font-style: inherit; + font-family: inherit; +} +.bootstrap-wrapper input[type="file"]:focus, +.bootstrap-wrapper input[type="radio"]:focus, +.bootstrap-wrapper input[type="checkbox"]:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.bootstrap-wrapper input[type="number"]::-webkit-outer-spin-button, +.bootstrap-wrapper input[type="number"]::-webkit-inner-spin-button { + height: auto; +} +.bootstrap-wrapper .form-control:-moz-placeholder { + color: #999999; +} +.bootstrap-wrapper .form-control::-moz-placeholder { + color: #999999; +} +.bootstrap-wrapper .form-control:-ms-input-placeholder { + color: #999999; +} +.bootstrap-wrapper .form-control::-webkit-input-placeholder { + color: #999999; +} +.bootstrap-wrapper .form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.428571429; + color: #555555; + vertical-align: middle; + background-color: #ffffff; + border: 1px solid #cccccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; + transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; +} +.bootstrap-wrapper .form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); +} +.bootstrap-wrapper .form-control[disabled], +.bootstrap-wrapper .form-control[readonly], +.bootstrap-wrapper fieldset[disabled] .form-control { + cursor: not-allowed; + background-color: #eeeeee; +} +.bootstrap-wrapper textarea.form-control { + height: auto; +} +.bootstrap-wrapper .form-group { + margin-bottom: 15px; +} +.bootstrap-wrapper .radio, +.bootstrap-wrapper .checkbox { + display: block; + min-height: 20px; + margin-top: 10px; + margin-bottom: 10px; + padding-left: 20px; + vertical-align: middle; +} +.bootstrap-wrapper .radio label, +.bootstrap-wrapper .checkbox label { + display: inline; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} +.bootstrap-wrapper .radio input[type="radio"], +.bootstrap-wrapper .radio-inline input[type="radio"], +.bootstrap-wrapper .checkbox input[type="checkbox"], +.bootstrap-wrapper .checkbox-inline input[type="checkbox"] { + float: left; + margin-left: -20px; +} +.bootstrap-wrapper .radio + .radio, +.bootstrap-wrapper .checkbox + .checkbox { + margin-top: -5px; +} +.bootstrap-wrapper .radio-inline, +.bootstrap-wrapper .checkbox-inline { + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + vertical-align: middle; + font-weight: normal; + cursor: pointer; +} +.bootstrap-wrapper .radio-inline + .radio-inline, +.bootstrap-wrapper .checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} +.bootstrap-wrapper input[type="radio"][disabled], +.bootstrap-wrapper input[type="checkbox"][disabled], +.bootstrap-wrapper .radio[disabled], +.bootstrap-wrapper .radio-inline[disabled], +.bootstrap-wrapper .checkbox[disabled], +.bootstrap-wrapper .checkbox-inline[disabled], +.bootstrap-wrapper fieldset[disabled] input[type="radio"], +.bootstrap-wrapper fieldset[disabled] input[type="checkbox"], +.bootstrap-wrapper fieldset[disabled] .radio, +.bootstrap-wrapper fieldset[disabled] .radio-inline, +.bootstrap-wrapper fieldset[disabled] .checkbox, +.bootstrap-wrapper fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} +.bootstrap-wrapper .input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.bootstrap-wrapper select.input-sm { + height: 30px; + line-height: 30px; +} +.bootstrap-wrapper textarea.input-sm { + height: auto; +} +.bootstrap-wrapper .input-lg { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} +.bootstrap-wrapper select.input-lg { + height: 45px; + line-height: 45px; +} +.bootstrap-wrapper textarea.input-lg { + height: auto; +} +.bootstrap-wrapper .has-warning .help-block, +.bootstrap-wrapper .has-warning .control-label { + color: #c09853; +} +.bootstrap-wrapper .has-warning .form-control { + border-color: #c09853; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.bootstrap-wrapper .has-warning .form-control:focus { + border-color: #a47e3c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; +} +.bootstrap-wrapper .has-warning .input-group-addon { + color: #c09853; + border-color: #c09853; + background-color: #fcf8e3; +} +.bootstrap-wrapper .has-error .help-block, +.bootstrap-wrapper .has-error .control-label { + color: #b94a48; +} +.bootstrap-wrapper .has-error .form-control { + border-color: #b94a48; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.bootstrap-wrapper .has-error .form-control:focus { + border-color: #953b39; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; +} +.bootstrap-wrapper .has-error .input-group-addon { + color: #b94a48; + border-color: #b94a48; + background-color: #f2dede; +} +.bootstrap-wrapper .has-success .help-block, +.bootstrap-wrapper .has-success .control-label { + color: #468847; +} +.bootstrap-wrapper .has-success .form-control { + border-color: #468847; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); +} +.bootstrap-wrapper .has-success .form-control:focus { + border-color: #356635; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; +} +.bootstrap-wrapper .has-success .input-group-addon { + color: #468847; + border-color: #468847; + background-color: #dff0d8; +} +.bootstrap-wrapper .form-control-static { + margin-bottom: 0; + padding-top: 7px; +} +.bootstrap-wrapper .help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} +@media (min-width: 768px) { + .bootstrap-wrapper .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .bootstrap-wrapper .form-inline .form-control { + display: inline-block; + } + .bootstrap-wrapper .form-inline .radio, + .bootstrap-wrapper .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + padding-left: 0; + } + .bootstrap-wrapper .form-inline .radio input[type="radio"], + .bootstrap-wrapper .form-inline .checkbox input[type="checkbox"] { + float: none; + margin-left: 0; + } +} +.bootstrap-wrapper .form-horizontal .control-label, +.bootstrap-wrapper .form-horizontal .radio, +.bootstrap-wrapper .form-horizontal .checkbox, +.bootstrap-wrapper .form-horizontal .radio-inline, +.bootstrap-wrapper .form-horizontal .checkbox-inline { + margin-top: 0; + margin-bottom: 0; + padding-top: 7px; +} +.bootstrap-wrapper .form-horizontal .form-group { + margin-left: -15px; + margin-right: -15px; +} +.bootstrap-wrapper .form-horizontal .form-group:before, +.bootstrap-wrapper .form-horizontal .form-group:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .form-horizontal .form-group:after { + clear: both; +} +.bootstrap-wrapper .form-horizontal .form-group:before, +.bootstrap-wrapper .form-horizontal .form-group:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .form-horizontal .form-group:after { + clear: both; +} +@media (min-width: 768px) { + .bootstrap-wrapper .form-horizontal .control-label { + text-align: right; + } +} +.bootstrap-wrapper .btn { + display: inline-block; + padding: 6px 12px; + margin-bottom: 0; + font-size: 14px; + font-weight: normal; + line-height: 1.428571429; + text-align: center; + vertical-align: middle; + cursor: pointer; + border: 1px solid transparent; + border-radius: 4px; + white-space: nowrap; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; +} +.bootstrap-wrapper .btn:focus { + outline: thin dotted #333; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.bootstrap-wrapper .btn:hover, +.bootstrap-wrapper .btn:focus { + color: #333333; + text-decoration: none; +} +.bootstrap-wrapper .btn:active, +.bootstrap-wrapper .btn.active { + outline: 0; + background-image: none; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.bootstrap-wrapper .btn.disabled, +.bootstrap-wrapper .btn[disabled], +.bootstrap-wrapper fieldset[disabled] .btn { + cursor: not-allowed; + pointer-events: none; + opacity: 0.65; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; +} +.bootstrap-wrapper .btn-default { + color: #333333; + background-color: #ffffff; + border-color: #cccccc; +} +.bootstrap-wrapper .btn-default:hover, +.bootstrap-wrapper .btn-default:focus, +.bootstrap-wrapper .btn-default:active, +.bootstrap-wrapper .btn-default.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-default { + color: #333333; + background-color: #ebebeb; + border-color: #adadad; +} +.bootstrap-wrapper .btn-default:active, +.bootstrap-wrapper .btn-default.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-default { + background-image: none; +} +.bootstrap-wrapper .btn-default.disabled, +.bootstrap-wrapper .btn-default[disabled], +.bootstrap-wrapper fieldset[disabled] .btn-default, +.bootstrap-wrapper .btn-default.disabled:hover, +.bootstrap-wrapper .btn-default[disabled]:hover, +.bootstrap-wrapper fieldset[disabled] .btn-default:hover, +.bootstrap-wrapper .btn-default.disabled:focus, +.bootstrap-wrapper .btn-default[disabled]:focus, +.bootstrap-wrapper fieldset[disabled] .btn-default:focus, +.bootstrap-wrapper .btn-default.disabled:active, +.bootstrap-wrapper .btn-default[disabled]:active, +.bootstrap-wrapper fieldset[disabled] .btn-default:active, +.bootstrap-wrapper .btn-default.disabled.active, +.bootstrap-wrapper .btn-default[disabled].active, +.bootstrap-wrapper fieldset[disabled] .btn-default.active { + background-color: #ffffff; + border-color: #cccccc; +} +.bootstrap-wrapper .btn-primary { + color: #ffffff; + background-color: #428bca; + border-color: #357ebd; +} +.bootstrap-wrapper .btn-primary:hover, +.bootstrap-wrapper .btn-primary:focus, +.bootstrap-wrapper .btn-primary:active, +.bootstrap-wrapper .btn-primary.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-primary { + color: #ffffff; + background-color: #3276b1; + border-color: #285e8e; +} +.bootstrap-wrapper .btn-primary:active, +.bootstrap-wrapper .btn-primary.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-primary { + background-image: none; +} +.bootstrap-wrapper .btn-primary.disabled, +.bootstrap-wrapper .btn-primary[disabled], +.bootstrap-wrapper fieldset[disabled] .btn-primary, +.bootstrap-wrapper .btn-primary.disabled:hover, +.bootstrap-wrapper .btn-primary[disabled]:hover, +.bootstrap-wrapper fieldset[disabled] .btn-primary:hover, +.bootstrap-wrapper .btn-primary.disabled:focus, +.bootstrap-wrapper .btn-primary[disabled]:focus, +.bootstrap-wrapper fieldset[disabled] .btn-primary:focus, +.bootstrap-wrapper .btn-primary.disabled:active, +.bootstrap-wrapper .btn-primary[disabled]:active, +.bootstrap-wrapper fieldset[disabled] .btn-primary:active, +.bootstrap-wrapper .btn-primary.disabled.active, +.bootstrap-wrapper .btn-primary[disabled].active, +.bootstrap-wrapper fieldset[disabled] .btn-primary.active { + background-color: #428bca; + border-color: #357ebd; +} +.bootstrap-wrapper .btn-warning { + color: #ffffff; + background-color: #f0ad4e; + border-color: #eea236; +} +.bootstrap-wrapper .btn-warning:hover, +.bootstrap-wrapper .btn-warning:focus, +.bootstrap-wrapper .btn-warning:active, +.bootstrap-wrapper .btn-warning.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-warning { + color: #ffffff; + background-color: #ed9c28; + border-color: #d58512; +} +.bootstrap-wrapper .btn-warning:active, +.bootstrap-wrapper .btn-warning.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-warning { + background-image: none; +} +.bootstrap-wrapper .btn-warning.disabled, +.bootstrap-wrapper .btn-warning[disabled], +.bootstrap-wrapper fieldset[disabled] .btn-warning, +.bootstrap-wrapper .btn-warning.disabled:hover, +.bootstrap-wrapper .btn-warning[disabled]:hover, +.bootstrap-wrapper fieldset[disabled] .btn-warning:hover, +.bootstrap-wrapper .btn-warning.disabled:focus, +.bootstrap-wrapper .btn-warning[disabled]:focus, +.bootstrap-wrapper fieldset[disabled] .btn-warning:focus, +.bootstrap-wrapper .btn-warning.disabled:active, +.bootstrap-wrapper .btn-warning[disabled]:active, +.bootstrap-wrapper fieldset[disabled] .btn-warning:active, +.bootstrap-wrapper .btn-warning.disabled.active, +.bootstrap-wrapper .btn-warning[disabled].active, +.bootstrap-wrapper fieldset[disabled] .btn-warning.active { + background-color: #f0ad4e; + border-color: #eea236; +} +.bootstrap-wrapper .btn-danger { + color: #ffffff; + background-color: #d9534f; + border-color: #d43f3a; +} +.bootstrap-wrapper .btn-danger:hover, +.bootstrap-wrapper .btn-danger:focus, +.bootstrap-wrapper .btn-danger:active, +.bootstrap-wrapper .btn-danger.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-danger { + color: #ffffff; + background-color: #d2322d; + border-color: #ac2925; +} +.bootstrap-wrapper .btn-danger:active, +.bootstrap-wrapper .btn-danger.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-danger { + background-image: none; +} +.bootstrap-wrapper .btn-danger.disabled, +.bootstrap-wrapper .btn-danger[disabled], +.bootstrap-wrapper fieldset[disabled] .btn-danger, +.bootstrap-wrapper .btn-danger.disabled:hover, +.bootstrap-wrapper .btn-danger[disabled]:hover, +.bootstrap-wrapper fieldset[disabled] .btn-danger:hover, +.bootstrap-wrapper .btn-danger.disabled:focus, +.bootstrap-wrapper .btn-danger[disabled]:focus, +.bootstrap-wrapper fieldset[disabled] .btn-danger:focus, +.bootstrap-wrapper .btn-danger.disabled:active, +.bootstrap-wrapper .btn-danger[disabled]:active, +.bootstrap-wrapper fieldset[disabled] .btn-danger:active, +.bootstrap-wrapper .btn-danger.disabled.active, +.bootstrap-wrapper .btn-danger[disabled].active, +.bootstrap-wrapper fieldset[disabled] .btn-danger.active { + background-color: #d9534f; + border-color: #d43f3a; +} +.bootstrap-wrapper .btn-success { + color: #ffffff; + background-color: #5cb85c; + border-color: #4cae4c; +} +.bootstrap-wrapper .btn-success:hover, +.bootstrap-wrapper .btn-success:focus, +.bootstrap-wrapper .btn-success:active, +.bootstrap-wrapper .btn-success.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-success { + color: #ffffff; + background-color: #47a447; + border-color: #398439; +} +.bootstrap-wrapper .btn-success:active, +.bootstrap-wrapper .btn-success.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-success { + background-image: none; +} +.bootstrap-wrapper .btn-success.disabled, +.bootstrap-wrapper .btn-success[disabled], +.bootstrap-wrapper fieldset[disabled] .btn-success, +.bootstrap-wrapper .btn-success.disabled:hover, +.bootstrap-wrapper .btn-success[disabled]:hover, +.bootstrap-wrapper fieldset[disabled] .btn-success:hover, +.bootstrap-wrapper .btn-success.disabled:focus, +.bootstrap-wrapper .btn-success[disabled]:focus, +.bootstrap-wrapper fieldset[disabled] .btn-success:focus, +.bootstrap-wrapper .btn-success.disabled:active, +.bootstrap-wrapper .btn-success[disabled]:active, +.bootstrap-wrapper fieldset[disabled] .btn-success:active, +.bootstrap-wrapper .btn-success.disabled.active, +.bootstrap-wrapper .btn-success[disabled].active, +.bootstrap-wrapper fieldset[disabled] .btn-success.active { + background-color: #5cb85c; + border-color: #4cae4c; +} +.bootstrap-wrapper .btn-info { + color: #ffffff; + background-color: #5bc0de; + border-color: #46b8da; +} +.bootstrap-wrapper .btn-info:hover, +.bootstrap-wrapper .btn-info:focus, +.bootstrap-wrapper .btn-info:active, +.bootstrap-wrapper .btn-info.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-info { + color: #ffffff; + background-color: #39b3d7; + border-color: #269abc; +} +.bootstrap-wrapper .btn-info:active, +.bootstrap-wrapper .btn-info.active, +.bootstrap-wrapper .open .dropdown-toggle.btn-info { + background-image: none; +} +.bootstrap-wrapper .btn-info.disabled, +.bootstrap-wrapper .btn-info[disabled], +.bootstrap-wrapper fieldset[disabled] .btn-info, +.bootstrap-wrapper .btn-info.disabled:hover, +.bootstrap-wrapper .btn-info[disabled]:hover, +.bootstrap-wrapper fieldset[disabled] .btn-info:hover, +.bootstrap-wrapper .btn-info.disabled:focus, +.bootstrap-wrapper .btn-info[disabled]:focus, +.bootstrap-wrapper fieldset[disabled] .btn-info:focus, +.bootstrap-wrapper .btn-info.disabled:active, +.bootstrap-wrapper .btn-info[disabled]:active, +.bootstrap-wrapper fieldset[disabled] .btn-info:active, +.bootstrap-wrapper .btn-info.disabled.active, +.bootstrap-wrapper .btn-info[disabled].active, +.bootstrap-wrapper fieldset[disabled] .btn-info.active { + background-color: #5bc0de; + border-color: #46b8da; +} +.bootstrap-wrapper .btn-link { + color: #428bca; + font-weight: normal; + cursor: pointer; + border-radius: 0; +} +.bootstrap-wrapper .btn-link, +.bootstrap-wrapper .btn-link:active, +.bootstrap-wrapper .btn-link[disabled], +.bootstrap-wrapper fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.bootstrap-wrapper .btn-link, +.bootstrap-wrapper .btn-link:hover, +.bootstrap-wrapper .btn-link:focus, +.bootstrap-wrapper .btn-link:active { + border-color: transparent; +} +.bootstrap-wrapper .btn-link:hover, +.bootstrap-wrapper .btn-link:focus { + color: #2a6496; + text-decoration: underline; + background-color: transparent; +} +.bootstrap-wrapper .btn-link[disabled]:hover, +.bootstrap-wrapper fieldset[disabled] .btn-link:hover, +.bootstrap-wrapper .btn-link[disabled]:focus, +.bootstrap-wrapper fieldset[disabled] .btn-link:focus { + color: #999999; + text-decoration: none; +} +.bootstrap-wrapper .btn-lg { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} +.bootstrap-wrapper .btn-sm, +.bootstrap-wrapper .btn-xs { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.bootstrap-wrapper .btn-xs { + padding: 1px 5px; +} +.bootstrap-wrapper .btn-block { + display: block; + width: 100%; + padding-left: 0; + padding-right: 0; +} +.bootstrap-wrapper .btn-block + .btn-block { + margin-top: 5px; +} +.bootstrap-wrapper input[type="submit"].btn-block, +.bootstrap-wrapper input[type="reset"].btn-block, +.bootstrap-wrapper input[type="button"].btn-block { + width: 100%; +} +@font-face { + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg'); +} +.bootstrap-wrapper .glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + -webkit-font-smoothing: antialiased; +} +.bootstrap-wrapper .glyphicon-asterisk:before { + content: "\2a"; +} +.bootstrap-wrapper .glyphicon-plus:before { + content: "\2b"; +} +.bootstrap-wrapper .glyphicon-euro:before { + content: "\20ac"; +} +.bootstrap-wrapper .glyphicon-minus:before { + content: "\2212"; +} +.bootstrap-wrapper .glyphicon-cloud:before { + content: "\2601"; +} +.bootstrap-wrapper .glyphicon-envelope:before { + content: "\2709"; +} +.bootstrap-wrapper .glyphicon-pencil:before { + content: "\270f"; +} +.bootstrap-wrapper .glyphicon-glass:before { + content: "\e001"; +} +.bootstrap-wrapper .glyphicon-music:before { + content: "\e002"; +} +.bootstrap-wrapper .glyphicon-search:before { + content: "\e003"; +} +.bootstrap-wrapper .glyphicon-heart:before { + content: "\e005"; +} +.bootstrap-wrapper .glyphicon-star:before { + content: "\e006"; +} +.bootstrap-wrapper .glyphicon-star-empty:before { + content: "\e007"; +} +.bootstrap-wrapper .glyphicon-user:before { + content: "\e008"; +} +.bootstrap-wrapper .glyphicon-film:before { + content: "\e009"; +} +.bootstrap-wrapper .glyphicon-th-large:before { + content: "\e010"; +} +.bootstrap-wrapper .glyphicon-th:before { + content: "\e011"; +} +.bootstrap-wrapper .glyphicon-th-list:before { + content: "\e012"; +} +.bootstrap-wrapper .glyphicon-ok:before { + content: "\e013"; +} +.bootstrap-wrapper .glyphicon-remove:before { + content: "\e014"; +} +.bootstrap-wrapper .glyphicon-zoom-in:before { + content: "\e015"; +} +.bootstrap-wrapper .glyphicon-zoom-out:before { + content: "\e016"; +} +.bootstrap-wrapper .glyphicon-off:before { + content: "\e017"; +} +.bootstrap-wrapper .glyphicon-signal:before { + content: "\e018"; +} +.bootstrap-wrapper .glyphicon-cog:before { + content: "\e019"; +} +.bootstrap-wrapper .glyphicon-trash:before { + content: "\e020"; +} +.bootstrap-wrapper .glyphicon-home:before { + content: "\e021"; +} +.bootstrap-wrapper .glyphicon-file:before { + content: "\e022"; +} +.bootstrap-wrapper .glyphicon-time:before { + content: "\e023"; +} +.bootstrap-wrapper .glyphicon-road:before { + content: "\e024"; +} +.bootstrap-wrapper .glyphicon-download-alt:before { + content: "\e025"; +} +.bootstrap-wrapper .glyphicon-download:before { + content: "\e026"; +} +.bootstrap-wrapper .glyphicon-upload:before { + content: "\e027"; +} +.bootstrap-wrapper .glyphicon-inbox:before { + content: "\e028"; +} +.bootstrap-wrapper .glyphicon-play-circle:before { + content: "\e029"; +} +.bootstrap-wrapper .glyphicon-repeat:before { + content: "\e030"; +} +.bootstrap-wrapper .glyphicon-refresh:before { + content: "\e031"; +} +.bootstrap-wrapper .glyphicon-list-alt:before { + content: "\e032"; +} +.bootstrap-wrapper .glyphicon-flag:before { + content: "\e034"; +} +.bootstrap-wrapper .glyphicon-headphones:before { + content: "\e035"; +} +.bootstrap-wrapper .glyphicon-volume-off:before { + content: "\e036"; +} +.bootstrap-wrapper .glyphicon-volume-down:before { + content: "\e037"; +} +.bootstrap-wrapper .glyphicon-volume-up:before { + content: "\e038"; +} +.bootstrap-wrapper .glyphicon-qrcode:before { + content: "\e039"; +} +.bootstrap-wrapper .glyphicon-barcode:before { + content: "\e040"; +} +.bootstrap-wrapper .glyphicon-tag:before { + content: "\e041"; +} +.bootstrap-wrapper .glyphicon-tags:before { + content: "\e042"; +} +.bootstrap-wrapper .glyphicon-book:before { + content: "\e043"; +} +.bootstrap-wrapper .glyphicon-print:before { + content: "\e045"; +} +.bootstrap-wrapper .glyphicon-font:before { + content: "\e047"; +} +.bootstrap-wrapper .glyphicon-bold:before { + content: "\e048"; +} +.bootstrap-wrapper .glyphicon-italic:before { + content: "\e049"; +} +.bootstrap-wrapper .glyphicon-text-height:before { + content: "\e050"; +} +.bootstrap-wrapper .glyphicon-text-width:before { + content: "\e051"; +} +.bootstrap-wrapper .glyphicon-align-left:before { + content: "\e052"; +} +.bootstrap-wrapper .glyphicon-align-center:before { + content: "\e053"; +} +.bootstrap-wrapper .glyphicon-align-right:before { + content: "\e054"; +} +.bootstrap-wrapper .glyphicon-align-justify:before { + content: "\e055"; +} +.bootstrap-wrapper .glyphicon-list:before { + content: "\e056"; +} +.bootstrap-wrapper .glyphicon-indent-left:before { + content: "\e057"; +} +.bootstrap-wrapper .glyphicon-indent-right:before { + content: "\e058"; +} +.bootstrap-wrapper .glyphicon-facetime-video:before { + content: "\e059"; +} +.bootstrap-wrapper .glyphicon-picture:before { + content: "\e060"; +} +.bootstrap-wrapper .glyphicon-map-marker:before { + content: "\e062"; +} +.bootstrap-wrapper .glyphicon-adjust:before { + content: "\e063"; +} +.bootstrap-wrapper .glyphicon-tint:before { + content: "\e064"; +} +.bootstrap-wrapper .glyphicon-edit:before { + content: "\e065"; +} +.bootstrap-wrapper .glyphicon-share:before { + content: "\e066"; +} +.bootstrap-wrapper .glyphicon-check:before { + content: "\e067"; +} +.bootstrap-wrapper .glyphicon-move:before { + content: "\e068"; +} +.bootstrap-wrapper .glyphicon-step-backward:before { + content: "\e069"; +} +.bootstrap-wrapper .glyphicon-fast-backward:before { + content: "\e070"; +} +.bootstrap-wrapper .glyphicon-backward:before { + content: "\e071"; +} +.bootstrap-wrapper .glyphicon-play:before { + content: "\e072"; +} +.bootstrap-wrapper .glyphicon-pause:before { + content: "\e073"; +} +.bootstrap-wrapper .glyphicon-stop:before { + content: "\e074"; +} +.bootstrap-wrapper .glyphicon-forward:before { + content: "\e075"; +} +.bootstrap-wrapper .glyphicon-fast-forward:before { + content: "\e076"; +} +.bootstrap-wrapper .glyphicon-step-forward:before { + content: "\e077"; +} +.bootstrap-wrapper .glyphicon-eject:before { + content: "\e078"; +} +.bootstrap-wrapper .glyphicon-chevron-left:before { + content: "\e079"; +} +.bootstrap-wrapper .glyphicon-chevron-right:before { + content: "\e080"; +} +.bootstrap-wrapper .glyphicon-plus-sign:before { + content: "\e081"; +} +.bootstrap-wrapper .glyphicon-minus-sign:before { + content: "\e082"; +} +.bootstrap-wrapper .glyphicon-remove-sign:before { + content: "\e083"; +} +.bootstrap-wrapper .glyphicon-ok-sign:before { + content: "\e084"; +} +.bootstrap-wrapper .glyphicon-question-sign:before { + content: "\e085"; +} +.bootstrap-wrapper .glyphicon-info-sign:before { + content: "\e086"; +} +.bootstrap-wrapper .glyphicon-screenshot:before { + content: "\e087"; +} +.bootstrap-wrapper .glyphicon-remove-circle:before { + content: "\e088"; +} +.bootstrap-wrapper .glyphicon-ok-circle:before { + content: "\e089"; +} +.bootstrap-wrapper .glyphicon-ban-circle:before { + content: "\e090"; +} +.bootstrap-wrapper .glyphicon-arrow-left:before { + content: "\e091"; +} +.bootstrap-wrapper .glyphicon-arrow-right:before { + content: "\e092"; +} +.bootstrap-wrapper .glyphicon-arrow-up:before { + content: "\e093"; +} +.bootstrap-wrapper .glyphicon-arrow-down:before { + content: "\e094"; +} +.bootstrap-wrapper .glyphicon-share-alt:before { + content: "\e095"; +} +.bootstrap-wrapper .glyphicon-resize-full:before { + content: "\e096"; +} +.bootstrap-wrapper .glyphicon-resize-small:before { + content: "\e097"; +} +.bootstrap-wrapper .glyphicon-exclamation-sign:before { + content: "\e101"; +} +.bootstrap-wrapper .glyphicon-gift:before { + content: "\e102"; +} +.bootstrap-wrapper .glyphicon-leaf:before { + content: "\e103"; +} +.bootstrap-wrapper .glyphicon-eye-open:before { + content: "\e105"; +} +.bootstrap-wrapper .glyphicon-eye-close:before { + content: "\e106"; +} +.bootstrap-wrapper .glyphicon-warning-sign:before { + content: "\e107"; +} +.bootstrap-wrapper .glyphicon-plane:before { + content: "\e108"; +} +.bootstrap-wrapper .glyphicon-random:before { + content: "\e110"; +} +.bootstrap-wrapper .glyphicon-comment:before { + content: "\e111"; +} +.bootstrap-wrapper .glyphicon-magnet:before { + content: "\e112"; +} +.bootstrap-wrapper .glyphicon-chevron-up:before { + content: "\e113"; +} +.bootstrap-wrapper .glyphicon-chevron-down:before { + content: "\e114"; +} +.bootstrap-wrapper .glyphicon-retweet:before { + content: "\e115"; +} +.bootstrap-wrapper .glyphicon-shopping-cart:before { + content: "\e116"; +} +.bootstrap-wrapper .glyphicon-folder-close:before { + content: "\e117"; +} +.bootstrap-wrapper .glyphicon-folder-open:before { + content: "\e118"; +} +.bootstrap-wrapper .glyphicon-resize-vertical:before { + content: "\e119"; +} +.bootstrap-wrapper .glyphicon-resize-horizontal:before { + content: "\e120"; +} +.bootstrap-wrapper .glyphicon-hdd:before { + content: "\e121"; +} +.bootstrap-wrapper .glyphicon-bullhorn:before { + content: "\e122"; +} +.bootstrap-wrapper .glyphicon-certificate:before { + content: "\e124"; +} +.bootstrap-wrapper .glyphicon-thumbs-up:before { + content: "\e125"; +} +.bootstrap-wrapper .glyphicon-thumbs-down:before { + content: "\e126"; +} +.bootstrap-wrapper .glyphicon-hand-right:before { + content: "\e127"; +} +.bootstrap-wrapper .glyphicon-hand-left:before { + content: "\e128"; +} +.bootstrap-wrapper .glyphicon-hand-up:before { + content: "\e129"; +} +.bootstrap-wrapper .glyphicon-hand-down:before { + content: "\e130"; +} +.bootstrap-wrapper .glyphicon-circle-arrow-right:before { + content: "\e131"; +} +.bootstrap-wrapper .glyphicon-circle-arrow-left:before { + content: "\e132"; +} +.bootstrap-wrapper .glyphicon-circle-arrow-up:before { + content: "\e133"; +} +.bootstrap-wrapper .glyphicon-circle-arrow-down:before { + content: "\e134"; +} +.bootstrap-wrapper .glyphicon-globe:before { + content: "\e135"; +} +.bootstrap-wrapper .glyphicon-tasks:before { + content: "\e137"; +} +.bootstrap-wrapper .glyphicon-filter:before { + content: "\e138"; +} +.bootstrap-wrapper .glyphicon-fullscreen:before { + content: "\e140"; +} +.bootstrap-wrapper .glyphicon-dashboard:before { + content: "\e141"; +} +.bootstrap-wrapper .glyphicon-heart-empty:before { + content: "\e143"; +} +.bootstrap-wrapper .glyphicon-link:before { + content: "\e144"; +} +.bootstrap-wrapper .glyphicon-phone:before { + content: "\e145"; +} +.bootstrap-wrapper .glyphicon-usd:before { + content: "\e148"; +} +.bootstrap-wrapper .glyphicon-gbp:before { + content: "\e149"; +} +.bootstrap-wrapper .glyphicon-sort:before { + content: "\e150"; +} +.bootstrap-wrapper .glyphicon-sort-by-alphabet:before { + content: "\e151"; +} +.bootstrap-wrapper .glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} +.bootstrap-wrapper .glyphicon-sort-by-order:before { + content: "\e153"; +} +.bootstrap-wrapper .glyphicon-sort-by-order-alt:before { + content: "\e154"; +} +.bootstrap-wrapper .glyphicon-sort-by-attributes:before { + content: "\e155"; +} +.bootstrap-wrapper .glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} +.bootstrap-wrapper .glyphicon-unchecked:before { + content: "\e157"; +} +.bootstrap-wrapper .glyphicon-expand:before { + content: "\e158"; +} +.bootstrap-wrapper .glyphicon-collapse-down:before { + content: "\e159"; +} +.bootstrap-wrapper .glyphicon-collapse-up:before { + content: "\e160"; +} +.bootstrap-wrapper .glyphicon-log-in:before { + content: "\e161"; +} +.bootstrap-wrapper .glyphicon-flash:before { + content: "\e162"; +} +.bootstrap-wrapper .glyphicon-log-out:before { + content: "\e163"; +} +.bootstrap-wrapper .glyphicon-new-window:before { + content: "\e164"; +} +.bootstrap-wrapper .glyphicon-record:before { + content: "\e165"; +} +.bootstrap-wrapper .glyphicon-save:before { + content: "\e166"; +} +.bootstrap-wrapper .glyphicon-open:before { + content: "\e167"; +} +.bootstrap-wrapper .glyphicon-saved:before { + content: "\e168"; +} +.bootstrap-wrapper .glyphicon-import:before { + content: "\e169"; +} +.bootstrap-wrapper .glyphicon-export:before { + content: "\e170"; +} +.bootstrap-wrapper .glyphicon-send:before { + content: "\e171"; +} +.bootstrap-wrapper .glyphicon-floppy-disk:before { + content: "\e172"; +} +.bootstrap-wrapper .glyphicon-floppy-saved:before { + content: "\e173"; +} +.bootstrap-wrapper .glyphicon-floppy-remove:before { + content: "\e174"; +} +.bootstrap-wrapper .glyphicon-floppy-save:before { + content: "\e175"; +} +.bootstrap-wrapper .glyphicon-floppy-open:before { + content: "\e176"; +} +.bootstrap-wrapper .glyphicon-credit-card:before { + content: "\e177"; +} +.bootstrap-wrapper .glyphicon-transfer:before { + content: "\e178"; +} +.bootstrap-wrapper .glyphicon-cutlery:before { + content: "\e179"; +} +.bootstrap-wrapper .glyphicon-header:before { + content: "\e180"; +} +.bootstrap-wrapper .glyphicon-compressed:before { + content: "\e181"; +} +.bootstrap-wrapper .glyphicon-earphone:before { + content: "\e182"; +} +.bootstrap-wrapper .glyphicon-phone-alt:before { + content: "\e183"; +} +.bootstrap-wrapper .glyphicon-tower:before { + content: "\e184"; +} +.bootstrap-wrapper .glyphicon-stats:before { + content: "\e185"; +} +.bootstrap-wrapper .glyphicon-sd-video:before { + content: "\e186"; +} +.bootstrap-wrapper .glyphicon-hd-video:before { + content: "\e187"; +} +.bootstrap-wrapper .glyphicon-subtitles:before { + content: "\e188"; +} +.bootstrap-wrapper .glyphicon-sound-stereo:before { + content: "\e189"; +} +.bootstrap-wrapper .glyphicon-sound-dolby:before { + content: "\e190"; +} +.bootstrap-wrapper .glyphicon-sound-5-1:before { + content: "\e191"; +} +.bootstrap-wrapper .glyphicon-sound-6-1:before { + content: "\e192"; +} +.bootstrap-wrapper .glyphicon-sound-7-1:before { + content: "\e193"; +} +.bootstrap-wrapper .glyphicon-copyright-mark:before { + content: "\e194"; +} +.bootstrap-wrapper .glyphicon-registration-mark:before { + content: "\e195"; +} +.bootstrap-wrapper .glyphicon-cloud-download:before { + content: "\e197"; +} +.bootstrap-wrapper .glyphicon-cloud-upload:before { + content: "\e198"; +} +.bootstrap-wrapper .glyphicon-tree-conifer:before { + content: "\e199"; +} +.bootstrap-wrapper .glyphicon-tree-deciduous:before { + content: "\e200"; +} +.bootstrap-wrapper .glyphicon-briefcase:before { + content: "\1f4bc"; +} +.bootstrap-wrapper .glyphicon-calendar:before { + content: "\1f4c5"; +} +.bootstrap-wrapper .glyphicon-pushpin:before { + content: "\1f4cc"; +} +.bootstrap-wrapper .glyphicon-paperclip:before { + content: "\1f4ce"; +} +.bootstrap-wrapper .glyphicon-camera:before { + content: "\1f4f7"; +} +.bootstrap-wrapper .glyphicon-lock:before { + content: "\1f512"; +} +.bootstrap-wrapper .glyphicon-bell:before { + content: "\1f514"; +} +.bootstrap-wrapper .glyphicon-bookmark:before { + content: "\1f516"; +} +.bootstrap-wrapper .glyphicon-fire:before { + content: "\1f525"; +} +.bootstrap-wrapper .glyphicon-wrench:before { + content: "\1f527"; +} +.bootstrap-wrapper .btn-default .caret { + border-top-color: #333333; +} +.bootstrap-wrapper .btn-primary .caret, +.bootstrap-wrapper .btn-success .caret, +.bootstrap-wrapper .btn-warning .caret, +.bootstrap-wrapper .btn-danger .caret, +.bootstrap-wrapper .btn-info .caret { + border-top-color: #fff; +} +.bootstrap-wrapper .dropup .btn-default .caret { + border-bottom-color: #333333; +} +.bootstrap-wrapper .dropup .btn-primary .caret, +.bootstrap-wrapper .dropup .btn-success .caret, +.bootstrap-wrapper .dropup .btn-warning .caret, +.bootstrap-wrapper .dropup .btn-danger .caret, +.bootstrap-wrapper .dropup .btn-info .caret { + border-bottom-color: #fff; +} +.bootstrap-wrapper .btn-group, +.bootstrap-wrapper .btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} +.bootstrap-wrapper .btn-group > .btn, +.bootstrap-wrapper .btn-group-vertical > .btn { + position: relative; + float: left; +} +.bootstrap-wrapper .btn-group > .btn:hover, +.bootstrap-wrapper .btn-group-vertical > .btn:hover, +.bootstrap-wrapper .btn-group > .btn:focus, +.bootstrap-wrapper .btn-group-vertical > .btn:focus, +.bootstrap-wrapper .btn-group > .btn:active, +.bootstrap-wrapper .btn-group-vertical > .btn:active, +.bootstrap-wrapper .btn-group > .btn.active, +.bootstrap-wrapper .btn-group-vertical > .btn.active { + z-index: 2; +} +.bootstrap-wrapper .btn-group > .btn:focus, +.bootstrap-wrapper .btn-group-vertical > .btn:focus { + outline: none; +} +.bootstrap-wrapper .btn-group .btn + .btn, +.bootstrap-wrapper .btn-group .btn + .btn-group, +.bootstrap-wrapper .btn-group .btn-group + .btn, +.bootstrap-wrapper .btn-group .btn-group + .btn-group { + margin-left: -1px; +} +.bootstrap-wrapper .btn-toolbar:before, +.bootstrap-wrapper .btn-toolbar:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .btn-toolbar:after { + clear: both; +} +.bootstrap-wrapper .btn-toolbar:before, +.bootstrap-wrapper .btn-toolbar:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .btn-toolbar:after { + clear: both; +} +.bootstrap-wrapper .btn-toolbar .btn-group { + float: left; +} +.bootstrap-wrapper .btn-toolbar > .btn + .btn, +.bootstrap-wrapper .btn-toolbar > .btn-group + .btn, +.bootstrap-wrapper .btn-toolbar > .btn + .btn-group, +.bootstrap-wrapper .btn-toolbar > .btn-group + .btn-group { + margin-left: 5px; +} +.bootstrap-wrapper .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} +.bootstrap-wrapper .btn-group > .btn:first-child { + margin-left: 0; +} +.bootstrap-wrapper .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.bootstrap-wrapper .btn-group > .btn:last-child:not(:first-child), +.bootstrap-wrapper .btn-group > .dropdown-toggle:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.bootstrap-wrapper .btn-group > .btn-group { + float: left; +} +.bootstrap-wrapper .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.bootstrap-wrapper .btn-group > .btn-group:first-child > .btn:last-child, +.bootstrap-wrapper .btn-group > .btn-group:first-child > .dropdown-toggle { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.bootstrap-wrapper .btn-group > .btn-group:last-child > .btn:first-child { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.bootstrap-wrapper .btn-group .dropdown-toggle:active, +.bootstrap-wrapper .btn-group.open .dropdown-toggle { + outline: 0; +} +.bootstrap-wrapper .btn-group-xs > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; + padding: 1px 5px; +} +.bootstrap-wrapper .btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.bootstrap-wrapper .btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} +.bootstrap-wrapper .btn-group > .btn + .dropdown-toggle { + padding-left: 8px; + padding-right: 8px; +} +.bootstrap-wrapper .btn-group > .btn-lg + .dropdown-toggle { + padding-left: 12px; + padding-right: 12px; +} +.bootstrap-wrapper .btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); +} +.bootstrap-wrapper .btn .caret { + margin-left: 0; +} +.bootstrap-wrapper .btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} +.bootstrap-wrapper .dropup .btn-lg .caret { + border-width: 0 5px 5px; +} +.bootstrap-wrapper .btn-group-vertical > .btn, +.bootstrap-wrapper .btn-group-vertical > .btn-group { + display: block; + float: none; + width: 100%; + max-width: 100%; +} +.bootstrap-wrapper .btn-group-vertical > .btn-group:before, +.bootstrap-wrapper .btn-group-vertical > .btn-group:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .btn-group-vertical > .btn-group:after { + clear: both; +} +.bootstrap-wrapper .btn-group-vertical > .btn-group:before, +.bootstrap-wrapper .btn-group-vertical > .btn-group:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .btn-group-vertical > .btn-group:after { + clear: both; +} +.bootstrap-wrapper .btn-group-vertical > .btn-group > .btn { + float: none; +} +.bootstrap-wrapper .btn-group-vertical > .btn + .btn, +.bootstrap-wrapper .btn-group-vertical > .btn + .btn-group, +.bootstrap-wrapper .btn-group-vertical > .btn-group + .btn, +.bootstrap-wrapper .btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} +.bootstrap-wrapper .btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.bootstrap-wrapper .btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.bootstrap-wrapper .btn-group-vertical > .btn:last-child:not(:first-child) { + border-bottom-left-radius: 4px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.bootstrap-wrapper .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.bootstrap-wrapper .btn-group-vertical > .btn-group:first-child > .btn:last-child, +.bootstrap-wrapper .btn-group-vertical > .btn-group:first-child > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.bootstrap-wrapper .btn-group-vertical > .btn-group:last-child > .btn:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.bootstrap-wrapper .btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.bootstrap-wrapper .btn-group-justified .btn { + float: none; + display: table-cell; + width: 1%; +} +.bootstrap-wrapper [data-toggle="buttons"] > .btn > input[type="radio"], +.bootstrap-wrapper [data-toggle="buttons"] > .btn > input[type="checkbox"] { + display: none; +} +.bootstrap-wrapper .input-group { + position: relative; + display: table; + border-collapse: separate; +} +.bootstrap-wrapper .input-group.col { + float: none; + padding-left: 0; + padding-right: 0; +} +.bootstrap-wrapper .input-group .form-control { + width: 100%; + margin-bottom: 0; +} +.bootstrap-wrapper .input-group-lg > .form-control, +.bootstrap-wrapper .input-group-lg > .input-group-addon, +.bootstrap-wrapper .input-group-lg > .input-group-btn > .btn { + height: 45px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.33; + border-radius: 6px; +} +.bootstrap-wrapper select.input-group-lg > .form-control, +.bootstrap-wrapper select.input-group-lg > .input-group-addon, +.bootstrap-wrapper select.input-group-lg > .input-group-btn > .btn { + height: 45px; + line-height: 45px; +} +.bootstrap-wrapper textarea.input-group-lg > .form-control, +.bootstrap-wrapper textarea.input-group-lg > .input-group-addon, +.bootstrap-wrapper textarea.input-group-lg > .input-group-btn > .btn { + height: auto; +} +.bootstrap-wrapper .input-group-sm > .form-control, +.bootstrap-wrapper .input-group-sm > .input-group-addon, +.bootstrap-wrapper .input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.bootstrap-wrapper select.input-group-sm > .form-control, +.bootstrap-wrapper select.input-group-sm > .input-group-addon, +.bootstrap-wrapper select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} +.bootstrap-wrapper textarea.input-group-sm > .form-control, +.bootstrap-wrapper textarea.input-group-sm > .input-group-addon, +.bootstrap-wrapper textarea.input-group-sm > .input-group-btn > .btn { + height: auto; +} +.bootstrap-wrapper .input-group-addon, +.bootstrap-wrapper .input-group-btn, +.bootstrap-wrapper .input-group .form-control { + display: table-cell; +} +.bootstrap-wrapper .input-group-addon:not(:first-child):not(:last-child), +.bootstrap-wrapper .input-group-btn:not(:first-child):not(:last-child), +.bootstrap-wrapper .input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} +.bootstrap-wrapper .input-group-addon, +.bootstrap-wrapper .input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} +.bootstrap-wrapper .input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + text-align: center; + background-color: #eeeeee; + border: 1px solid #cccccc; + border-radius: 4px; +} +.bootstrap-wrapper .input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.bootstrap-wrapper .input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.bootstrap-wrapper .input-group-addon input[type="radio"], +.bootstrap-wrapper .input-group-addon input[type="checkbox"] { + margin-top: 0; +} +.bootstrap-wrapper .input-group .form-control:first-child, +.bootstrap-wrapper .input-group-addon:first-child, +.bootstrap-wrapper .input-group-btn:first-child > .btn, +.bootstrap-wrapper .input-group-btn:first-child > .dropdown-toggle, +.bootstrap-wrapper .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-top-right-radius: 0; +} +.bootstrap-wrapper .input-group-addon:first-child { + border-right: 0; +} +.bootstrap-wrapper .input-group .form-control:last-child, +.bootstrap-wrapper .input-group-addon:last-child, +.bootstrap-wrapper .input-group-btn:last-child > .btn, +.bootstrap-wrapper .input-group-btn:last-child > .dropdown-toggle, +.bootstrap-wrapper .input-group-btn:first-child > .btn:not(:first-child) { + border-bottom-left-radius: 0; + border-top-left-radius: 0; +} +.bootstrap-wrapper .input-group-addon:last-child { + border-left: 0; +} +.bootstrap-wrapper .input-group-btn { + position: relative; + white-space: nowrap; +} +.bootstrap-wrapper .input-group-btn > .btn { + position: relative; +} +.bootstrap-wrapper .input-group-btn > .btn + .btn { + margin-left: -4px; +} +.bootstrap-wrapper .input-group-btn > .btn:hover, +.bootstrap-wrapper .input-group-btn > .btn:active { + z-index: 2; +} +.bootstrap-wrapper .nav { + margin-bottom: 0; + padding-left: 0; + list-style: none; +} +.bootstrap-wrapper .nav:before, +.bootstrap-wrapper .nav:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .nav:after { + clear: both; +} +.bootstrap-wrapper .nav:before, +.bootstrap-wrapper .nav:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .nav:after { + clear: both; +} +.bootstrap-wrapper .nav > li { + position: relative; + display: block; +} +.bootstrap-wrapper .nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} +.bootstrap-wrapper .nav > li > a:hover, +.bootstrap-wrapper .nav > li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.bootstrap-wrapper .nav > li.disabled > a { + color: #999999; +} +.bootstrap-wrapper .nav > li.disabled > a:hover, +.bootstrap-wrapper .nav > li.disabled > a:focus { + color: #999999; + text-decoration: none; + background-color: transparent; + cursor: not-allowed; +} +.bootstrap-wrapper .nav .open > a, +.bootstrap-wrapper .nav .open > a:hover, +.bootstrap-wrapper .nav .open > a:focus { + background-color: #eeeeee; + border-color: #428bca; +} +.bootstrap-wrapper .nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.bootstrap-wrapper .nav > li > a > img { + max-width: none; +} +.bootstrap-wrapper .nav-tabs { + border-bottom: 1px solid #dddddd; +} +.bootstrap-wrapper .nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.bootstrap-wrapper .nav-tabs > li > a { + margin-right: 2px; + line-height: 1.428571429; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} +.bootstrap-wrapper .nav-tabs > li > a:hover { + border-color: #eeeeee #eeeeee #dddddd; +} +.bootstrap-wrapper .nav-tabs > li.active > a, +.bootstrap-wrapper .nav-tabs > li.active > a:hover, +.bootstrap-wrapper .nav-tabs > li.active > a:focus { + color: #555555; + background-color: #ffffff; + border: 1px solid #dddddd; + border-bottom-color: transparent; + cursor: default; +} +.bootstrap-wrapper .nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} +.bootstrap-wrapper .nav-tabs.nav-justified > li { + float: none; +} +.bootstrap-wrapper .nav-tabs.nav-justified > li > a { + text-align: center; +} +@media (min-width: 768px) { + .bootstrap-wrapper .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } +} +.bootstrap-wrapper .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #dddddd; + margin-right: 0; +} +.bootstrap-wrapper .nav-tabs.nav-justified > .active > a { + border-bottom-color: #ffffff; +} +.bootstrap-wrapper .nav-pills > li { + float: left; +} +.bootstrap-wrapper .nav-pills > li > a { + border-radius: 5px; +} +.bootstrap-wrapper .nav-pills > li + li { + margin-left: 2px; +} +.bootstrap-wrapper .nav-pills > li.active > a, +.bootstrap-wrapper .nav-pills > li.active > a:hover, +.bootstrap-wrapper .nav-pills > li.active > a:focus { + color: #ffffff; + background-color: #428bca; +} +.bootstrap-wrapper .nav-stacked > li { + float: none; +} +.bootstrap-wrapper .nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} +.bootstrap-wrapper .nav-justified { + width: 100%; +} +.bootstrap-wrapper .nav-justified > li { + float: none; +} +.bootstrap-wrapper .nav-justified > li > a { + text-align: center; +} +@media (min-width: 768px) { + .bootstrap-wrapper .nav-justified > li { + display: table-cell; + width: 1%; + } +} +.bootstrap-wrapper .nav-tabs-justified { + border-bottom: 0; +} +.bootstrap-wrapper .nav-tabs-justified > li > a { + border-bottom: 1px solid #dddddd; + margin-right: 0; +} +.bootstrap-wrapper .nav-tabs-justified > .active > a { + border-bottom-color: #ffffff; +} +.bootstrap-wrapper .tabbable:before, +.bootstrap-wrapper .tabbable:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .tabbable:after { + clear: both; +} +.bootstrap-wrapper .tabbable:before, +.bootstrap-wrapper .tabbable:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .tabbable:after { + clear: both; +} +.bootstrap-wrapper .tab-content > .tab-pane, +.bootstrap-wrapper .pill-content > .pill-pane { + display: none; +} +.bootstrap-wrapper .tab-content > .active, +.bootstrap-wrapper .pill-content > .active { + display: block; +} +.bootstrap-wrapper .nav .caret { + border-top-color: #428bca; + border-bottom-color: #428bca; +} +.bootstrap-wrapper .nav a:hover .caret { + border-top-color: #2a6496; + border-bottom-color: #2a6496; +} +.bootstrap-wrapper .nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.bootstrap-wrapper .navbar { + position: relative; + z-index: 1000; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} +.bootstrap-wrapper .navbar:before, +.bootstrap-wrapper .navbar:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .navbar:after { + clear: both; +} +.bootstrap-wrapper .navbar:before, +.bootstrap-wrapper .navbar:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .navbar:after { + clear: both; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar { + border-radius: 4px; + } +} +.bootstrap-wrapper .navbar-header:before, +.bootstrap-wrapper .navbar-header:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .navbar-header:after { + clear: both; +} +.bootstrap-wrapper .navbar-header:before, +.bootstrap-wrapper .navbar-header:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .navbar-header:after { + clear: both; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-header { + float: left; + } +} +.bootstrap-wrapper .navbar-collapse { + max-height: 340px; + overflow-x: visible; + padding-right: 15px; + padding-left: 15px; + border-top: 1px solid transparent; + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); + -webkit-overflow-scrolling: touch; +} +.bootstrap-wrapper .navbar-collapse:before, +.bootstrap-wrapper .navbar-collapse:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .navbar-collapse:after { + clear: both; +} +.bootstrap-wrapper .navbar-collapse:before, +.bootstrap-wrapper .navbar-collapse:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .navbar-collapse:after { + clear: both; +} +.bootstrap-wrapper .navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-collapse { + width: auto; + border-top: 0; + box-shadow: none; + } + .bootstrap-wrapper .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .bootstrap-wrapper .navbar-collapse.in { + overflow-y: visible; + } + .bootstrap-wrapper .navbar-collapse .navbar-nav.navbar-left:first-child { + margin-left: -15px; + } + .bootstrap-wrapper .navbar-collapse .navbar-nav.navbar-right:last-child { + margin-right: -15px; + } + .bootstrap-wrapper .navbar-collapse .navbar-text:last-child { + margin-right: 0; + } +} +.bootstrap-wrapper .container > .navbar-header, +.bootstrap-wrapper .container > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .bootstrap-wrapper .container > .navbar-header, + .bootstrap-wrapper .container > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +.bootstrap-wrapper .navbar-static-top { + border-width: 0 0 1px; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-static-top { + border-radius: 0; + } +} +.bootstrap-wrapper .navbar-fixed-top, +.bootstrap-wrapper .navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + border-width: 0 0 1px; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-fixed-top, + .bootstrap-wrapper .navbar-fixed-bottom { + border-radius: 0; + } +} +.bootstrap-wrapper .navbar-fixed-top { + z-index: 1030; + top: 0; +} +.bootstrap-wrapper .navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; +} +.bootstrap-wrapper .navbar-brand { + float: left; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; +} +.bootstrap-wrapper .navbar-brand:hover, +.bootstrap-wrapper .navbar-brand:focus { + text-decoration: none; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar > .container .navbar-brand { + margin-left: -15px; + } +} +.bootstrap-wrapper .navbar-toggle { + position: relative; + float: right; + margin-right: 15px; + padding: 9px 10px; + margin-top: 8px; + margin-bottom: 8px; + background-color: transparent; + border: 1px solid transparent; + border-radius: 4px; +} +.bootstrap-wrapper .navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.bootstrap-wrapper .navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-toggle { + display: none; + } +} +.bootstrap-wrapper .navbar-nav { + margin: 7.5px -15px; +} +.bootstrap-wrapper .navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 767px) { + .bootstrap-wrapper .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + box-shadow: none; + } + .bootstrap-wrapper .navbar-nav .open .dropdown-menu > li > a, + .bootstrap-wrapper .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .bootstrap-wrapper .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .bootstrap-wrapper .navbar-nav .open .dropdown-menu > li > a:hover, + .bootstrap-wrapper .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-nav { + float: left; + margin: 0; + } + .bootstrap-wrapper .navbar-nav > li { + float: left; + } + .bootstrap-wrapper .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-left { + float: left !important; + } + .bootstrap-wrapper .navbar-right { + float: right !important; + } +} +.bootstrap-wrapper .navbar-form { + margin-left: -15px; + margin-right: -15px; + padding: 10px 15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); + margin-top: 8px; + margin-bottom: 8px; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .bootstrap-wrapper .navbar-form .form-control { + display: inline-block; + } + .bootstrap-wrapper .navbar-form .radio, + .bootstrap-wrapper .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + padding-left: 0; + } + .bootstrap-wrapper .navbar-form .radio input[type="radio"], + .bootstrap-wrapper .navbar-form .checkbox input[type="checkbox"] { + float: none; + margin-left: 0; + } +} +@media (max-width: 767px) { + .bootstrap-wrapper .navbar-form .form-group { + margin-bottom: 5px; + } +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-form { + width: auto; + border: 0; + margin-left: 0; + margin-right: 0; + padding-top: 0; + padding-bottom: 0; + -webkit-box-shadow: none; + box-shadow: none; + } +} +.bootstrap-wrapper .navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.bootstrap-wrapper .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.bootstrap-wrapper .navbar-nav.pull-right > li > .dropdown-menu, +.bootstrap-wrapper .navbar-nav > li > .dropdown-menu.pull-right { + left: auto; + right: 0; +} +.bootstrap-wrapper .navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.bootstrap-wrapper .navbar-text { + float: left; + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-text { + margin-left: 15px; + margin-right: 15px; + } +} +.bootstrap-wrapper .navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.bootstrap-wrapper .navbar-default .navbar-brand { + color: #777777; +} +.bootstrap-wrapper .navbar-default .navbar-brand:hover, +.bootstrap-wrapper .navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.bootstrap-wrapper .navbar-default .navbar-text { + color: #777777; +} +.bootstrap-wrapper .navbar-default .navbar-nav > li > a { + color: #777777; +} +.bootstrap-wrapper .navbar-default .navbar-nav > li > a:hover, +.bootstrap-wrapper .navbar-default .navbar-nav > li > a:focus { + color: #333333; + background-color: transparent; +} +.bootstrap-wrapper .navbar-default .navbar-nav > .active > a, +.bootstrap-wrapper .navbar-default .navbar-nav > .active > a:hover, +.bootstrap-wrapper .navbar-default .navbar-nav > .active > a:focus { + color: #555555; + background-color: #e7e7e7; +} +.bootstrap-wrapper .navbar-default .navbar-nav > .disabled > a, +.bootstrap-wrapper .navbar-default .navbar-nav > .disabled > a:hover, +.bootstrap-wrapper .navbar-default .navbar-nav > .disabled > a:focus { + color: #cccccc; + background-color: transparent; +} +.bootstrap-wrapper .navbar-default .navbar-toggle { + border-color: #dddddd; +} +.bootstrap-wrapper .navbar-default .navbar-toggle:hover, +.bootstrap-wrapper .navbar-default .navbar-toggle:focus { + background-color: #dddddd; +} +.bootstrap-wrapper .navbar-default .navbar-toggle .icon-bar { + background-color: #cccccc; +} +.bootstrap-wrapper .navbar-default .navbar-collapse, +.bootstrap-wrapper .navbar-default .navbar-form { + border-color: #e6e6e6; +} +.bootstrap-wrapper .navbar-default .navbar-nav > .dropdown > a:hover .caret, +.bootstrap-wrapper .navbar-default .navbar-nav > .dropdown > a:focus .caret { + border-top-color: #333333; + border-bottom-color: #333333; +} +.bootstrap-wrapper .navbar-default .navbar-nav > .open > a, +.bootstrap-wrapper .navbar-default .navbar-nav > .open > a:hover, +.bootstrap-wrapper .navbar-default .navbar-nav > .open > a:focus { + background-color: #e7e7e7; + color: #555555; +} +.bootstrap-wrapper .navbar-default .navbar-nav > .open > a .caret, +.bootstrap-wrapper .navbar-default .navbar-nav > .open > a:hover .caret, +.bootstrap-wrapper .navbar-default .navbar-nav > .open > a:focus .caret { + border-top-color: #555555; + border-bottom-color: #555555; +} +.bootstrap-wrapper .navbar-default .navbar-nav > .dropdown > a .caret { + border-top-color: #777777; + border-bottom-color: #777777; +} +@media (max-width: 767px) { + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777777; + } + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333333; + background-color: transparent; + } + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555555; + background-color: #e7e7e7; + } + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .bootstrap-wrapper .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #cccccc; + background-color: transparent; + } +} +.bootstrap-wrapper .navbar-default .navbar-link { + color: #777777; +} +.bootstrap-wrapper .navbar-default .navbar-link:hover { + color: #333333; +} +.bootstrap-wrapper .navbar-inverse { + background-color: #222222; + border-color: #080808; +} +.bootstrap-wrapper .navbar-inverse .navbar-brand { + color: #999999; +} +.bootstrap-wrapper .navbar-inverse .navbar-brand:hover, +.bootstrap-wrapper .navbar-inverse .navbar-brand:focus { + color: #ffffff; + background-color: transparent; +} +.bootstrap-wrapper .navbar-inverse .navbar-text { + color: #999999; +} +.bootstrap-wrapper .navbar-inverse .navbar-nav > li > a { + color: #999999; +} +.bootstrap-wrapper .navbar-inverse .navbar-nav > li > a:hover, +.bootstrap-wrapper .navbar-inverse .navbar-nav > li > a:focus { + color: #ffffff; + background-color: transparent; +} +.bootstrap-wrapper .navbar-inverse .navbar-nav > .active > a, +.bootstrap-wrapper .navbar-inverse .navbar-nav > .active > a:hover, +.bootstrap-wrapper .navbar-inverse .navbar-nav > .active > a:focus { + color: #ffffff; + background-color: #080808; +} +.bootstrap-wrapper .navbar-inverse .navbar-nav > .disabled > a, +.bootstrap-wrapper .navbar-inverse .navbar-nav > .disabled > a:hover, +.bootstrap-wrapper .navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444444; + background-color: transparent; +} +.bootstrap-wrapper .navbar-inverse .navbar-toggle { + border-color: #333333; +} +.bootstrap-wrapper .navbar-inverse .navbar-toggle:hover, +.bootstrap-wrapper .navbar-inverse .navbar-toggle:focus { + background-color: #333333; +} +.bootstrap-wrapper .navbar-inverse .navbar-toggle .icon-bar { + background-color: #ffffff; +} +.bootstrap-wrapper .navbar-inverse .navbar-collapse, +.bootstrap-wrapper .navbar-inverse .navbar-form { + border-color: #101010; +} +.bootstrap-wrapper .navbar-inverse .navbar-nav > .open > a, +.bootstrap-wrapper .navbar-inverse .navbar-nav > .open > a:hover, +.bootstrap-wrapper .navbar-inverse .navbar-nav > .open > a:focus { + background-color: #080808; + color: #ffffff; +} +.bootstrap-wrapper .navbar-inverse .navbar-nav > .dropdown > a:hover .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} +.bootstrap-wrapper .navbar-inverse .navbar-nav > .dropdown > a .caret { + border-top-color: #999999; + border-bottom-color: #999999; +} +.bootstrap-wrapper .navbar-inverse .navbar-nav > .open > a .caret, +.bootstrap-wrapper .navbar-inverse .navbar-nav > .open > a:hover .caret, +.bootstrap-wrapper .navbar-inverse .navbar-nav > .open > a:focus .caret { + border-top-color: #ffffff; + border-bottom-color: #ffffff; +} +@media (max-width: 767px) { + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #999999; + } + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #ffffff; + background-color: transparent; + } + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #ffffff; + background-color: #080808; + } + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .bootstrap-wrapper .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444444; + background-color: transparent; + } +} +.bootstrap-wrapper .navbar-inverse .navbar-link { + color: #999999; +} +.bootstrap-wrapper .navbar-inverse .navbar-link:hover { + color: #ffffff; +} +.bootstrap-wrapper .breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} +.bootstrap-wrapper .breadcrumb > li { + display: inline-block; +} +.bootstrap-wrapper .breadcrumb > li + li:before { + content: "/\00a0"; + padding: 0 5px; + color: #cccccc; +} +.bootstrap-wrapper .breadcrumb > .active { + color: #999999; +} +.bootstrap-wrapper .pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} +.bootstrap-wrapper .pagination > li { + display: inline; +} +.bootstrap-wrapper .pagination > li > a, +.bootstrap-wrapper .pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + line-height: 1.428571429; + text-decoration: none; + background-color: #ffffff; + border: 1px solid #dddddd; + margin-left: -1px; +} +.bootstrap-wrapper .pagination > li:first-child > a, +.bootstrap-wrapper .pagination > li:first-child > span { + margin-left: 0; + border-bottom-left-radius: 4px; + border-top-left-radius: 4px; +} +.bootstrap-wrapper .pagination > li:last-child > a, +.bootstrap-wrapper .pagination > li:last-child > span { + border-bottom-right-radius: 4px; + border-top-right-radius: 4px; +} +.bootstrap-wrapper .pagination > li > a:hover, +.bootstrap-wrapper .pagination > li > span:hover, +.bootstrap-wrapper .pagination > li > a:focus, +.bootstrap-wrapper .pagination > li > span:focus { + background-color: #eeeeee; +} +.bootstrap-wrapper .pagination > .active > a, +.bootstrap-wrapper .pagination > .active > span, +.bootstrap-wrapper .pagination > .active > a:hover, +.bootstrap-wrapper .pagination > .active > span:hover, +.bootstrap-wrapper .pagination > .active > a:focus, +.bootstrap-wrapper .pagination > .active > span:focus { + z-index: 2; + color: #ffffff; + background-color: #428bca; + border-color: #428bca; + cursor: default; +} +.bootstrap-wrapper .pagination > .disabled > span, +.bootstrap-wrapper .pagination > .disabled > a, +.bootstrap-wrapper .pagination > .disabled > a:hover, +.bootstrap-wrapper .pagination > .disabled > a:focus { + color: #999999; + background-color: #ffffff; + border-color: #dddddd; + cursor: not-allowed; +} +.bootstrap-wrapper .pagination-lg > li > a, +.bootstrap-wrapper .pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; +} +.bootstrap-wrapper .pagination-lg > li:first-child > a, +.bootstrap-wrapper .pagination-lg > li:first-child > span { + border-bottom-left-radius: 6px; + border-top-left-radius: 6px; +} +.bootstrap-wrapper .pagination-lg > li:last-child > a, +.bootstrap-wrapper .pagination-lg > li:last-child > span { + border-bottom-right-radius: 6px; + border-top-right-radius: 6px; +} +.bootstrap-wrapper .pagination-sm > li > a, +.bootstrap-wrapper .pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; +} +.bootstrap-wrapper .pagination-sm > li:first-child > a, +.bootstrap-wrapper .pagination-sm > li:first-child > span { + border-bottom-left-radius: 3px; + border-top-left-radius: 3px; +} +.bootstrap-wrapper .pagination-sm > li:last-child > a, +.bootstrap-wrapper .pagination-sm > li:last-child > span { + border-bottom-right-radius: 3px; + border-top-right-radius: 3px; +} +.bootstrap-wrapper .pager { + padding-left: 0; + margin: 20px 0; + list-style: none; + text-align: center; +} +.bootstrap-wrapper .pager:before, +.bootstrap-wrapper .pager:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .pager:after { + clear: both; +} +.bootstrap-wrapper .pager:before, +.bootstrap-wrapper .pager:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .pager:after { + clear: both; +} +.bootstrap-wrapper .pager li { + display: inline; +} +.bootstrap-wrapper .pager li > a, +.bootstrap-wrapper .pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 15px; +} +.bootstrap-wrapper .pager li > a:hover, +.bootstrap-wrapper .pager li > a:focus { + text-decoration: none; + background-color: #eeeeee; +} +.bootstrap-wrapper .pager .next > a, +.bootstrap-wrapper .pager .next > span { + float: right; +} +.bootstrap-wrapper .pager .previous > a, +.bootstrap-wrapper .pager .previous > span { + float: left; +} +.bootstrap-wrapper .pager .disabled > a, +.bootstrap-wrapper .pager .disabled > a:hover, +.bootstrap-wrapper .pager .disabled > a:focus, +.bootstrap-wrapper .pager .disabled > span { + color: #999999; + background-color: #ffffff; + cursor: not-allowed; +} +.bootstrap-wrapper .label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #ffffff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em; +} +.bootstrap-wrapper .label[href]:hover, +.bootstrap-wrapper .label[href]:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} +.bootstrap-wrapper .label:empty { + display: none; +} +.bootstrap-wrapper .label-default { + background-color: #999999; +} +.bootstrap-wrapper .label-default[href]:hover, +.bootstrap-wrapper .label-default[href]:focus { + background-color: #808080; +} +.bootstrap-wrapper .label-primary { + background-color: #428bca; +} +.bootstrap-wrapper .label-primary[href]:hover, +.bootstrap-wrapper .label-primary[href]:focus { + background-color: #3071a9; +} +.bootstrap-wrapper .label-success { + background-color: #5cb85c; +} +.bootstrap-wrapper .label-success[href]:hover, +.bootstrap-wrapper .label-success[href]:focus { + background-color: #449d44; +} +.bootstrap-wrapper .label-info { + background-color: #5bc0de; +} +.bootstrap-wrapper .label-info[href]:hover, +.bootstrap-wrapper .label-info[href]:focus { + background-color: #31b0d5; +} +.bootstrap-wrapper .label-warning { + background-color: #f0ad4e; +} +.bootstrap-wrapper .label-warning[href]:hover, +.bootstrap-wrapper .label-warning[href]:focus { + background-color: #ec971f; +} +.bootstrap-wrapper .label-danger { + background-color: #d9534f; +} +.bootstrap-wrapper .label-danger[href]:hover, +.bootstrap-wrapper .label-danger[href]:focus { + background-color: #c9302c; +} +.bootstrap-wrapper .badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + color: #ffffff; + line-height: 1; + vertical-align: baseline; + white-space: nowrap; + text-align: center; + background-color: #999999; + border-radius: 10px; +} +.bootstrap-wrapper .badge:empty { + display: none; +} +.bootstrap-wrapper a.badge:hover, +.bootstrap-wrapper a.badge:focus { + color: #ffffff; + text-decoration: none; + cursor: pointer; +} +.bootstrap-wrapper .btn .badge { + position: relative; + top: -1px; +} +.bootstrap-wrapper a.list-group-item.active > .badge, +.bootstrap-wrapper .nav-pills > .active > a > .badge { + color: #428bca; + background-color: #ffffff; +} +.bootstrap-wrapper .nav-pills > li > a > .badge { + margin-left: 3px; +} +.bootstrap-wrapper .jumbotron { + padding: 30px; + margin-bottom: 30px; + font-size: 21px; + font-weight: 200; + line-height: 2.1428571435; + color: inherit; + background-color: #eeeeee; +} +.bootstrap-wrapper .jumbotron h1 { + line-height: 1; + color: inherit; +} +.bootstrap-wrapper .jumbotron p { + line-height: 1.4; +} +.bootstrap-wrapper .container .jumbotron { + border-radius: 6px; +} +@media screen and (min-width: 768px) { + .bootstrap-wrapper .jumbotron { + padding-top: 48px; + padding-bottom: 48px; + } + .bootstrap-wrapper .container .jumbotron { + padding-left: 60px; + padding-right: 60px; + } + .bootstrap-wrapper .jumbotron h1 { + font-size: 63px; + } +} +.bootstrap-wrapper .thumbnail { + padding: 4px; + line-height: 1.428571429; + background-color: #ffffff; + border: 1px solid #dddddd; + border-radius: 4px; + -webkit-transition: all 0.2s ease-in-out; + transition: all 0.2s ease-in-out; + display: inline-block; + max-width: 100%; + height: auto; + display: block; +} +.bootstrap-wrapper .thumbnail > img { + display: block; + max-width: 100%; + height: auto; +} +.bootstrap-wrapper a.thumbnail:hover, +.bootstrap-wrapper a.thumbnail:focus { + border-color: #428bca; +} +.bootstrap-wrapper .thumbnail > img { + margin-left: auto; + margin-right: auto; +} +.bootstrap-wrapper .thumbnail .caption { + padding: 9px; + color: #333333; +} +.bootstrap-wrapper .alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} +.bootstrap-wrapper .alert h4 { + margin-top: 0; + color: inherit; +} +.bootstrap-wrapper .alert .alert-link { + font-weight: bold; +} +.bootstrap-wrapper .alert > p, +.bootstrap-wrapper .alert > ul { + margin-bottom: 0; +} +.bootstrap-wrapper .alert > p + p { + margin-top: 5px; +} +.bootstrap-wrapper .alert-dismissable { + padding-right: 35px; +} +.bootstrap-wrapper .alert-dismissable .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} +.bootstrap-wrapper .alert-success { + background-color: #dff0d8; + border-color: #d6e9c6; + color: #468847; +} +.bootstrap-wrapper .alert-success hr { + border-top-color: #c9e2b3; +} +.bootstrap-wrapper .alert-success .alert-link { + color: #356635; +} +.bootstrap-wrapper .alert-info { + background-color: #d9edf7; + border-color: #bce8f1; + color: #3a87ad; +} +.bootstrap-wrapper .alert-info hr { + border-top-color: #a6e1ec; +} +.bootstrap-wrapper .alert-info .alert-link { + color: #2d6987; +} +.bootstrap-wrapper .alert-warning { + background-color: #fcf8e3; + border-color: #fbeed5; + color: #c09853; +} +.bootstrap-wrapper .alert-warning hr { + border-top-color: #f8e5be; +} +.bootstrap-wrapper .alert-warning .alert-link { + color: #a47e3c; +} +.bootstrap-wrapper .alert-danger { + background-color: #f2dede; + border-color: #eed3d7; + color: #b94a48; +} +.bootstrap-wrapper .alert-danger hr { + border-top-color: #e6c1c7; +} +.bootstrap-wrapper .alert-danger .alert-link { + color: #953b39; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-moz-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 0 0; + } + to { + background-position: 40px 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.bootstrap-wrapper .progress { + overflow: hidden; + height: 20px; + margin-bottom: 20px; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); +} +.bootstrap-wrapper .progress-bar { + float: left; + width: 0%; + height: 100%; + font-size: 12px; + color: #ffffff; + text-align: center; + background-color: #428bca; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); + -webkit-transition: width 0.6s ease; + transition: width 0.6s ease; +} +.bootstrap-wrapper .progress-striped .progress-bar { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-size: 40px 40px; +} +.bootstrap-wrapper .progress.active .progress-bar { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -moz-animation: progress-bar-stripes 2s linear infinite; + -ms-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.bootstrap-wrapper .progress-bar-success { + background-color: #5cb85c; +} +.bootstrap-wrapper .progress-striped .progress-bar-success { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.bootstrap-wrapper .progress-bar-info { + background-color: #5bc0de; +} +.bootstrap-wrapper .progress-striped .progress-bar-info { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.bootstrap-wrapper .progress-bar-warning { + background-color: #f0ad4e; +} +.bootstrap-wrapper .progress-striped .progress-bar-warning { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.bootstrap-wrapper .progress-bar-danger { + background-color: #d9534f; +} +.bootstrap-wrapper .progress-striped .progress-bar-danger { + background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent)); + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); +} +.bootstrap-wrapper .media, +.bootstrap-wrapper .media-body { + overflow: hidden; + zoom: 1; +} +.bootstrap-wrapper .media, +.bootstrap-wrapper .media .media { + margin-top: 15px; +} +.bootstrap-wrapper .media:first-child { + margin-top: 0; +} +.bootstrap-wrapper .media-object { + display: block; +} +.bootstrap-wrapper .media-heading { + margin: 0 0 5px; +} +.bootstrap-wrapper .media > .pull-left { + margin-right: 10px; +} +.bootstrap-wrapper .media > .pull-right { + margin-left: 10px; +} +.bootstrap-wrapper .media-list { + padding-left: 0; + list-style: none; +} +.bootstrap-wrapper .list-group { + margin-bottom: 20px; + padding-left: 0; +} +.bootstrap-wrapper .list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #ffffff; + border: 1px solid #dddddd; +} +.bootstrap-wrapper .list-group-item:first-child { + border-top-right-radius: 4px; + border-top-left-radius: 4px; +} +.bootstrap-wrapper .list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +.bootstrap-wrapper .list-group-item > .badge { + float: right; +} +.bootstrap-wrapper .list-group-item > .badge + .badge { + margin-right: 5px; +} +.bootstrap-wrapper a.list-group-item { + color: #555555; +} +.bootstrap-wrapper a.list-group-item .list-group-item-heading { + color: #333333; +} +.bootstrap-wrapper a.list-group-item:hover, +.bootstrap-wrapper a.list-group-item:focus { + text-decoration: none; + background-color: #f5f5f5; +} +.bootstrap-wrapper .list-group-item.active, +.bootstrap-wrapper .list-group-item.active:hover, +.bootstrap-wrapper .list-group-item.active:focus { + z-index: 2; + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} +.bootstrap-wrapper .list-group-item.active .list-group-item-heading, +.bootstrap-wrapper .list-group-item.active:hover .list-group-item-heading, +.bootstrap-wrapper .list-group-item.active:focus .list-group-item-heading { + color: inherit; +} +.bootstrap-wrapper .list-group-item.active .list-group-item-text, +.bootstrap-wrapper .list-group-item.active:hover .list-group-item-text, +.bootstrap-wrapper .list-group-item.active:focus .list-group-item-text { + color: #e1edf7; +} +.bootstrap-wrapper .list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} +.bootstrap-wrapper .list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} +.bootstrap-wrapper .panel { + margin-bottom: 20px; + background-color: #ffffff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); +} +.bootstrap-wrapper .panel-body { + padding: 15px; +} +.bootstrap-wrapper .panel-body:before, +.bootstrap-wrapper .panel-body:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .panel-body:after { + clear: both; +} +.bootstrap-wrapper .panel-body:before, +.bootstrap-wrapper .panel-body:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .panel-body:after { + clear: both; +} +.bootstrap-wrapper .panel > .list-group { + margin-bottom: 0; +} +.bootstrap-wrapper .panel > .list-group .list-group-item { + border-width: 1px 0; +} +.bootstrap-wrapper .panel > .list-group .list-group-item:first-child { + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.bootstrap-wrapper .panel > .list-group .list-group-item:last-child { + border-bottom: 0; +} +.bootstrap-wrapper .panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} +.bootstrap-wrapper .panel > .table { + margin-bottom: 0; +} +.bootstrap-wrapper .panel > .panel-body + .table { + border-top: 1px solid #dddddd; +} +.bootstrap-wrapper .panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-right-radius: 3px; + border-top-left-radius: 3px; +} +.bootstrap-wrapper .panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; +} +.bootstrap-wrapper .panel-title > a { + color: inherit; +} +.bootstrap-wrapper .panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #dddddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.bootstrap-wrapper .panel-group .panel { + margin-bottom: 0; + border-radius: 4px; + overflow: hidden; +} +.bootstrap-wrapper .panel-group .panel + .panel { + margin-top: 5px; +} +.bootstrap-wrapper .panel-group .panel-heading { + border-bottom: 0; +} +.bootstrap-wrapper .panel-group .panel-heading + .panel-collapse .panel-body { + border-top: 1px solid #dddddd; +} +.bootstrap-wrapper .panel-group .panel-footer { + border-top: 0; +} +.bootstrap-wrapper .panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #dddddd; +} +.bootstrap-wrapper .panel-default { + border-color: #dddddd; +} +.bootstrap-wrapper .panel-default > .panel-heading { + color: #333333; + background-color: #f5f5f5; + border-color: #dddddd; +} +.bootstrap-wrapper .panel-default > .panel-heading + .panel-collapse .panel-body { + border-top-color: #dddddd; +} +.bootstrap-wrapper .panel-default > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #dddddd; +} +.bootstrap-wrapper .panel-primary { + border-color: #428bca; +} +.bootstrap-wrapper .panel-primary > .panel-heading { + color: #ffffff; + background-color: #428bca; + border-color: #428bca; +} +.bootstrap-wrapper .panel-primary > .panel-heading + .panel-collapse .panel-body { + border-top-color: #428bca; +} +.bootstrap-wrapper .panel-primary > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #428bca; +} +.bootstrap-wrapper .panel-success { + border-color: #d6e9c6; +} +.bootstrap-wrapper .panel-success > .panel-heading { + color: #468847; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.bootstrap-wrapper .panel-success > .panel-heading + .panel-collapse .panel-body { + border-top-color: #d6e9c6; +} +.bootstrap-wrapper .panel-success > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #d6e9c6; +} +.bootstrap-wrapper .panel-warning { + border-color: #fbeed5; +} +.bootstrap-wrapper .panel-warning > .panel-heading { + color: #c09853; + background-color: #fcf8e3; + border-color: #fbeed5; +} +.bootstrap-wrapper .panel-warning > .panel-heading + .panel-collapse .panel-body { + border-top-color: #fbeed5; +} +.bootstrap-wrapper .panel-warning > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #fbeed5; +} +.bootstrap-wrapper .panel-danger { + border-color: #eed3d7; +} +.bootstrap-wrapper .panel-danger > .panel-heading { + color: #b94a48; + background-color: #f2dede; + border-color: #eed3d7; +} +.bootstrap-wrapper .panel-danger > .panel-heading + .panel-collapse .panel-body { + border-top-color: #eed3d7; +} +.bootstrap-wrapper .panel-danger > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #eed3d7; +} +.bootstrap-wrapper .panel-info { + border-color: #bce8f1; +} +.bootstrap-wrapper .panel-info > .panel-heading { + color: #3a87ad; + background-color: #d9edf7; + border-color: #bce8f1; +} +.bootstrap-wrapper .panel-info > .panel-heading + .panel-collapse .panel-body { + border-top-color: #bce8f1; +} +.bootstrap-wrapper .panel-info > .panel-footer + .panel-collapse .panel-body { + border-bottom-color: #bce8f1; +} +.bootstrap-wrapper .well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); +} +.bootstrap-wrapper .well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, 0.15); +} +.bootstrap-wrapper .well-lg { + padding: 24px; + border-radius: 6px; +} +.bootstrap-wrapper .well-sm { + padding: 9px; + border-radius: 3px; +} +.bootstrap-wrapper .close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000000; + text-shadow: 0 1px 0 #ffffff; + opacity: 0.2; + filter: alpha(opacity=20); +} +.bootstrap-wrapper .close:hover, +.bootstrap-wrapper .close:focus { + color: #000000; + text-decoration: none; + cursor: pointer; + opacity: 0.5; + filter: alpha(opacity=50); +} +.bootstrap-wrapper button.close { + padding: 0; + cursor: pointer; + background: transparent; + border: 0; + -webkit-appearance: none; +} +.bootstrap-wrapper .caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px solid #000000; + border-right: 4px solid transparent; + border-left: 4px solid transparent; + border-bottom: 0 dotted; + content: ""; +} +.bootstrap-wrapper .dropdown { + position: relative; +} +.bootstrap-wrapper .dropdown-toggle:focus { + outline: 0; +} +.bootstrap-wrapper .dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + list-style: none; + font-size: 14px; + background-color: #ffffff; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); + background-clip: padding-box; +} +.bootstrap-wrapper .dropdown-menu.pull-right { + right: 0; + left: auto; +} +.bootstrap-wrapper .dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.bootstrap-wrapper .dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.428571429; + color: #333333; + white-space: nowrap; +} +.bootstrap-wrapper .dropdown-menu > li > a:hover, +.bootstrap-wrapper .dropdown-menu > li > a:focus { + text-decoration: none; + color: #ffffff; + background-color: #428bca; +} +.bootstrap-wrapper .dropdown-menu > .active > a, +.bootstrap-wrapper .dropdown-menu > .active > a:hover, +.bootstrap-wrapper .dropdown-menu > .active > a:focus { + color: #ffffff; + text-decoration: none; + outline: 0; + background-color: #428bca; +} +.bootstrap-wrapper .dropdown-menu > .disabled > a, +.bootstrap-wrapper .dropdown-menu > .disabled > a:hover, +.bootstrap-wrapper .dropdown-menu > .disabled > a:focus { + color: #999999; +} +.bootstrap-wrapper .dropdown-menu > .disabled > a:hover, +.bootstrap-wrapper .dropdown-menu > .disabled > a:focus { + text-decoration: none; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); + cursor: not-allowed; +} +.bootstrap-wrapper .open > .dropdown-menu { + display: block; +} +.bootstrap-wrapper .open > a { + outline: 0; +} +.bootstrap-wrapper .dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.428571429; + color: #999999; +} +.bootstrap-wrapper .dropdown-backdrop { + position: fixed; + left: 0; + right: 0; + bottom: 0; + top: 0; + z-index: 990; +} +.bootstrap-wrapper .pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.bootstrap-wrapper .dropup .caret, +.bootstrap-wrapper .navbar-fixed-bottom .dropdown .caret { + border-top: 0 dotted; + border-bottom: 4px solid #000000; + content: ""; +} +.bootstrap-wrapper .dropup .dropdown-menu, +.bootstrap-wrapper .navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 1px; +} +@media (min-width: 768px) { + .bootstrap-wrapper .navbar-right .dropdown-menu { + right: 0; + left: auto; + } +} +.bootstrap-wrapper .tooltip { + position: absolute; + z-index: 1030; + display: block; + visibility: visible; + font-size: 12px; + line-height: 1.4; + opacity: 0; + filter: alpha(opacity=0); +} +.bootstrap-wrapper .tooltip.in { + opacity: 0.9; + filter: alpha(opacity=90); +} +.bootstrap-wrapper .tooltip.top { + margin-top: -3px; + padding: 5px 0; +} +.bootstrap-wrapper .tooltip.right { + margin-left: 3px; + padding: 0 5px; +} +.bootstrap-wrapper .tooltip.bottom { + margin-top: 3px; + padding: 5px 0; +} +.bootstrap-wrapper .tooltip.left { + margin-left: -3px; + padding: 0 5px; +} +.bootstrap-wrapper .tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #ffffff; + text-align: center; + text-decoration: none; + background-color: #000000; + border-radius: 4px; +} +.bootstrap-wrapper .tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.bootstrap-wrapper .tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.bootstrap-wrapper .tooltip.top-left .tooltip-arrow { + bottom: 0; + left: 5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.bootstrap-wrapper .tooltip.top-right .tooltip-arrow { + bottom: 0; + right: 5px; + border-width: 5px 5px 0; + border-top-color: #000000; +} +.bootstrap-wrapper .tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000000; +} +.bootstrap-wrapper .tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000000; +} +.bootstrap-wrapper .tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.bootstrap-wrapper .tooltip.bottom-left .tooltip-arrow { + top: 0; + left: 5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.bootstrap-wrapper .tooltip.bottom-right .tooltip-arrow { + top: 0; + right: 5px; + border-width: 0 5px 5px; + border-bottom-color: #000000; +} +.bootstrap-wrapper .popover { + position: absolute; + top: 0; + left: 0; + z-index: 1010; + display: none; + max-width: 276px; + padding: 1px; + text-align: left; + background-color: #ffffff; + background-clip: padding-box; + border: 1px solid #cccccc; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); + white-space: normal; +} +.bootstrap-wrapper .popover.top { + margin-top: -10px; +} +.bootstrap-wrapper .popover.right { + margin-left: 10px; +} +.bootstrap-wrapper .popover.bottom { + margin-top: 10px; +} +.bootstrap-wrapper .popover.left { + margin-left: -10px; +} +.bootstrap-wrapper .popover-title { + margin: 0; + padding: 8px 14px; + font-size: 14px; + font-weight: normal; + line-height: 18px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} +.bootstrap-wrapper .popover-content { + padding: 9px 14px; +} +.bootstrap-wrapper .popover .arrow, +.bootstrap-wrapper .popover .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.bootstrap-wrapper .popover .arrow { + border-width: 11px; +} +.bootstrap-wrapper .popover .arrow:after { + border-width: 10px; + content: ""; +} +.bootstrap-wrapper .popover.top .arrow { + left: 50%; + margin-left: -11px; + border-bottom-width: 0; + border-top-color: #999999; + border-top-color: rgba(0, 0, 0, 0.25); + bottom: -11px; +} +.bootstrap-wrapper .popover.top .arrow:after { + content: " "; + bottom: 1px; + margin-left: -10px; + border-bottom-width: 0; + border-top-color: #ffffff; +} +.bootstrap-wrapper .popover.right .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-left-width: 0; + border-right-color: #999999; + border-right-color: rgba(0, 0, 0, 0.25); +} +.bootstrap-wrapper .popover.right .arrow:after { + content: " "; + left: 1px; + bottom: -10px; + border-left-width: 0; + border-right-color: #ffffff; +} +.bootstrap-wrapper .popover.bottom .arrow { + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999999; + border-bottom-color: rgba(0, 0, 0, 0.25); + top: -11px; +} +.bootstrap-wrapper .popover.bottom .arrow:after { + content: " "; + top: 1px; + margin-left: -10px; + border-top-width: 0; + border-bottom-color: #ffffff; +} +.bootstrap-wrapper .popover.left .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999999; + border-left-color: rgba(0, 0, 0, 0.25); +} +.bootstrap-wrapper .popover.left .arrow:after { + content: " "; + right: 1px; + border-right-width: 0; + border-left-color: #ffffff; + bottom: -10px; +} +.bootstrap-wrapper .modal-open { + overflow: hidden; +} +.bootstrap-wrapper body.modal-open, +.bootstrap-wrapper .modal-open .navbar-fixed-top, +.bootstrap-wrapper .modal-open .navbar-fixed-bottom { + margin-right: 15px; +} +.bootstrap-wrapper .modal { + display: none; + overflow: auto; + overflow-y: scroll; + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; +} +.bootstrap-wrapper .modal.fade .modal-dialog { + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + transform: translate(0, -25%); + -webkit-transition: -webkit-transform 0.3s ease-out; + -moz-transition: -moz-transform 0.3s ease-out; + -o-transition: -o-transform 0.3s ease-out; + transition: transform 0.3s ease-out; +} +.bootstrap-wrapper .modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + transform: translate(0, 0); +} +.bootstrap-wrapper .modal-dialog { + margin-left: auto; + margin-right: auto; + width: auto; + padding: 10px; + z-index: 1050; +} +.bootstrap-wrapper .modal-content { + position: relative; + background-color: #ffffff; + border: 1px solid #999999; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 6px; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); + background-clip: padding-box; + outline: none; +} +.bootstrap-wrapper .modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; + background-color: #000000; +} +.bootstrap-wrapper .modal-backdrop.fade { + opacity: 0; + filter: alpha(opacity=0); +} +.bootstrap-wrapper .modal-backdrop.in { + opacity: 0.5; + filter: alpha(opacity=50); +} +.bootstrap-wrapper .modal-header { + padding: 15px; + border-bottom: 1px solid #e5e5e5; + min-height: 16.428571429px; +} +.bootstrap-wrapper .modal-header .close { + margin-top: -2px; +} +.bootstrap-wrapper .modal-title { + margin: 0; + line-height: 1.428571429; +} +.bootstrap-wrapper .modal-body { + position: relative; + padding: 20px; +} +.bootstrap-wrapper .modal-footer { + margin-top: 15px; + padding: 19px 20px 20px; + text-align: right; + border-top: 1px solid #e5e5e5; +} +.bootstrap-wrapper .modal-footer:before, +.bootstrap-wrapper .modal-footer:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .modal-footer:after { + clear: both; +} +.bootstrap-wrapper .modal-footer:before, +.bootstrap-wrapper .modal-footer:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .modal-footer:after { + clear: both; +} +.bootstrap-wrapper .modal-footer .btn + .btn { + margin-left: 5px; + margin-bottom: 0; +} +.bootstrap-wrapper .modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.bootstrap-wrapper .modal-footer .btn-block + .btn-block { + margin-left: 0; +} +@media screen and (min-width: 768px) { + .bootstrap-wrapper .modal-dialog { + left: 50%; + right: auto; + width: 600px; + padding-top: 30px; + padding-bottom: 30px; + } + .bootstrap-wrapper .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); + } +} +.bootstrap-wrapper .carousel { + position: relative; +} +.bootstrap-wrapper .carousel-inner { + position: relative; + overflow: hidden; + width: 100%; +} +.bootstrap-wrapper .carousel-inner > .item { + display: none; + position: relative; + -webkit-transition: 0.6s ease-in-out left; + transition: 0.6s ease-in-out left; +} +.bootstrap-wrapper .carousel-inner > .item > img, +.bootstrap-wrapper .carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; + line-height: 1; +} +.bootstrap-wrapper .carousel-inner > .active, +.bootstrap-wrapper .carousel-inner > .next, +.bootstrap-wrapper .carousel-inner > .prev { + display: block; +} +.bootstrap-wrapper .carousel-inner > .active { + left: 0; +} +.bootstrap-wrapper .carousel-inner > .next, +.bootstrap-wrapper .carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.bootstrap-wrapper .carousel-inner > .next { + left: 100%; +} +.bootstrap-wrapper .carousel-inner > .prev { + left: -100%; +} +.bootstrap-wrapper .carousel-inner > .next.left, +.bootstrap-wrapper .carousel-inner > .prev.right { + left: 0; +} +.bootstrap-wrapper .carousel-inner > .active.left { + left: -100%; +} +.bootstrap-wrapper .carousel-inner > .active.right { + left: 100%; +} +.bootstrap-wrapper .carousel-control { + position: absolute; + top: 0; + left: 0; + bottom: 0; + width: 15%; + opacity: 0.5; + filter: alpha(opacity=50); + font-size: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.bootstrap-wrapper .carousel-control.left { + background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%)); + background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); +} +.bootstrap-wrapper .carousel-control.right { + left: auto; + right: 0; + background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); + background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%)); + background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); + background-repeat: repeat-x; + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); +} +.bootstrap-wrapper .carousel-control:hover, +.bootstrap-wrapper .carousel-control:focus { + color: #ffffff; + text-decoration: none; + opacity: 0.9; + filter: alpha(opacity=90); +} +.bootstrap-wrapper .carousel-control .icon-prev, +.bootstrap-wrapper .carousel-control .icon-next, +.bootstrap-wrapper .carousel-control .glyphicon-chevron-left, +.bootstrap-wrapper .carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + left: 50%; + z-index: 5; + display: inline-block; +} +.bootstrap-wrapper .carousel-control .icon-prev, +.bootstrap-wrapper .carousel-control .icon-next { + width: 20px; + height: 20px; + margin-top: -10px; + margin-left: -10px; + font-family: serif; +} +.bootstrap-wrapper .carousel-control .icon-prev:before { + content: '\2039'; +} +.bootstrap-wrapper .carousel-control .icon-next:before { + content: '\203a'; +} +.bootstrap-wrapper .carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + margin-left: -30%; + padding-left: 0; + list-style: none; + text-align: center; +} +.bootstrap-wrapper .carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + border: 1px solid #ffffff; + border-radius: 10px; + cursor: pointer; +} +.bootstrap-wrapper .carousel-indicators .active { + margin: 0; + width: 12px; + height: 12px; + background-color: #ffffff; +} +.bootstrap-wrapper .carousel-caption { + position: absolute; + left: 15%; + right: 15%; + bottom: 20px; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #ffffff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); +} +.bootstrap-wrapper .carousel-caption .btn { + text-shadow: none; +} +@media screen and (min-width: 768px) { + .bootstrap-wrapper .carousel-control .icon-prev, + .bootstrap-wrapper .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -15px; + margin-left: -15px; + font-size: 30px; + } + .bootstrap-wrapper .carousel-caption { + left: 20%; + right: 20%; + padding-bottom: 30px; + } + .bootstrap-wrapper .carousel-indicators { + bottom: 20px; + } +} +.bootstrap-wrapper .clearfix:before, +.bootstrap-wrapper .clearfix:after { + content: " "; + /* 1 */ + display: table; + /* 2 */ +} +.bootstrap-wrapper .clearfix:after { + clear: both; +} +.bootstrap-wrapper .pull-right { + float: right !important; +} +.bootstrap-wrapper .pull-left { + float: left !important; +} +.bootstrap-wrapper .hide { + display: none !important; +} +.bootstrap-wrapper .show { + display: block !important; +} +.bootstrap-wrapper .invisible { + visibility: hidden; +} +.bootstrap-wrapper .text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.bootstrap-wrapper .affix { + position: fixed; +} +@-ms-viewport { + width: device-width; +} +@media screen and (max-width: 400px) { + @-ms-viewport { + width: 320px; + } +} +.bootstrap-wrapper .hidden { + display: none !important; + visibility: hidden !important; +} +.bootstrap-wrapper .visible-xs { + display: none !important; +} +.bootstrap-wrapper tr.visible-xs { + display: none !important; +} +.bootstrap-wrapper th.visible-xs, +.bootstrap-wrapper td.visible-xs { + display: none !important; +} +@media (max-width: 767px) { + .bootstrap-wrapper .visible-xs { + display: block !important; + } + .bootstrap-wrapper tr.visible-xs { + display: table-row !important; + } + .bootstrap-wrapper th.visible-xs, + .bootstrap-wrapper td.visible-xs { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .bootstrap-wrapper .visible-xs.visible-sm { + display: block !important; + } + .bootstrap-wrapper tr.visible-xs.visible-sm { + display: table-row !important; + } + .bootstrap-wrapper th.visible-xs.visible-sm, + .bootstrap-wrapper td.visible-xs.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .bootstrap-wrapper .visible-xs.visible-md { + display: block !important; + } + .bootstrap-wrapper tr.visible-xs.visible-md { + display: table-row !important; + } + .bootstrap-wrapper th.visible-xs.visible-md, + .bootstrap-wrapper td.visible-xs.visible-md { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .visible-xs.visible-lg { + display: block !important; + } + .bootstrap-wrapper tr.visible-xs.visible-lg { + display: table-row !important; + } + .bootstrap-wrapper th.visible-xs.visible-lg, + .bootstrap-wrapper td.visible-xs.visible-lg { + display: table-cell !important; + } +} +.bootstrap-wrapper .visible-sm { + display: none !important; +} +.bootstrap-wrapper tr.visible-sm { + display: none !important; +} +.bootstrap-wrapper th.visible-sm, +.bootstrap-wrapper td.visible-sm { + display: none !important; +} +@media (max-width: 767px) { + .bootstrap-wrapper .visible-sm.visible-xs { + display: block !important; + } + .bootstrap-wrapper tr.visible-sm.visible-xs { + display: table-row !important; + } + .bootstrap-wrapper th.visible-sm.visible-xs, + .bootstrap-wrapper td.visible-sm.visible-xs { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .bootstrap-wrapper .visible-sm { + display: block !important; + } + .bootstrap-wrapper tr.visible-sm { + display: table-row !important; + } + .bootstrap-wrapper th.visible-sm, + .bootstrap-wrapper td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .bootstrap-wrapper .visible-sm.visible-md { + display: block !important; + } + .bootstrap-wrapper tr.visible-sm.visible-md { + display: table-row !important; + } + .bootstrap-wrapper th.visible-sm.visible-md, + .bootstrap-wrapper td.visible-sm.visible-md { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .visible-sm.visible-lg { + display: block !important; + } + .bootstrap-wrapper tr.visible-sm.visible-lg { + display: table-row !important; + } + .bootstrap-wrapper th.visible-sm.visible-lg, + .bootstrap-wrapper td.visible-sm.visible-lg { + display: table-cell !important; + } +} +.bootstrap-wrapper .visible-md { + display: none !important; +} +.bootstrap-wrapper tr.visible-md { + display: none !important; +} +.bootstrap-wrapper th.visible-md, +.bootstrap-wrapper td.visible-md { + display: none !important; +} +@media (max-width: 767px) { + .bootstrap-wrapper .visible-md.visible-xs { + display: block !important; + } + .bootstrap-wrapper tr.visible-md.visible-xs { + display: table-row !important; + } + .bootstrap-wrapper th.visible-md.visible-xs, + .bootstrap-wrapper td.visible-md.visible-xs { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .bootstrap-wrapper .visible-md.visible-sm { + display: block !important; + } + .bootstrap-wrapper tr.visible-md.visible-sm { + display: table-row !important; + } + .bootstrap-wrapper th.visible-md.visible-sm, + .bootstrap-wrapper td.visible-md.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .bootstrap-wrapper .visible-md { + display: block !important; + } + .bootstrap-wrapper tr.visible-md { + display: table-row !important; + } + .bootstrap-wrapper th.visible-md, + .bootstrap-wrapper td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .visible-md.visible-lg { + display: block !important; + } + .bootstrap-wrapper tr.visible-md.visible-lg { + display: table-row !important; + } + .bootstrap-wrapper th.visible-md.visible-lg, + .bootstrap-wrapper td.visible-md.visible-lg { + display: table-cell !important; + } +} +.bootstrap-wrapper .visible-lg { + display: none !important; +} +.bootstrap-wrapper tr.visible-lg { + display: none !important; +} +.bootstrap-wrapper th.visible-lg, +.bootstrap-wrapper td.visible-lg { + display: none !important; +} +@media (max-width: 767px) { + .bootstrap-wrapper .visible-lg.visible-xs { + display: block !important; + } + .bootstrap-wrapper tr.visible-lg.visible-xs { + display: table-row !important; + } + .bootstrap-wrapper th.visible-lg.visible-xs, + .bootstrap-wrapper td.visible-lg.visible-xs { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .bootstrap-wrapper .visible-lg.visible-sm { + display: block !important; + } + .bootstrap-wrapper tr.visible-lg.visible-sm { + display: table-row !important; + } + .bootstrap-wrapper th.visible-lg.visible-sm, + .bootstrap-wrapper td.visible-lg.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .bootstrap-wrapper .visible-lg.visible-md { + display: block !important; + } + .bootstrap-wrapper tr.visible-lg.visible-md { + display: table-row !important; + } + .bootstrap-wrapper th.visible-lg.visible-md, + .bootstrap-wrapper td.visible-lg.visible-md { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .visible-lg { + display: block !important; + } + .bootstrap-wrapper tr.visible-lg { + display: table-row !important; + } + .bootstrap-wrapper th.visible-lg, + .bootstrap-wrapper td.visible-lg { + display: table-cell !important; + } +} +.bootstrap-wrapper .hidden-xs { + display: block !important; +} +.bootstrap-wrapper tr.hidden-xs { + display: table-row !important; +} +.bootstrap-wrapper th.hidden-xs, +.bootstrap-wrapper td.hidden-xs { + display: table-cell !important; +} +@media (max-width: 767px) { + .bootstrap-wrapper .hidden-xs { + display: none !important; + } + .bootstrap-wrapper tr.hidden-xs { + display: none !important; + } + .bootstrap-wrapper th.hidden-xs, + .bootstrap-wrapper td.hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .bootstrap-wrapper .hidden-xs.hidden-sm { + display: none !important; + } + .bootstrap-wrapper tr.hidden-xs.hidden-sm { + display: none !important; + } + .bootstrap-wrapper th.hidden-xs.hidden-sm, + .bootstrap-wrapper td.hidden-xs.hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .bootstrap-wrapper .hidden-xs.hidden-md { + display: none !important; + } + .bootstrap-wrapper tr.hidden-xs.hidden-md { + display: none !important; + } + .bootstrap-wrapper th.hidden-xs.hidden-md, + .bootstrap-wrapper td.hidden-xs.hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .hidden-xs.hidden-lg { + display: none !important; + } + .bootstrap-wrapper tr.hidden-xs.hidden-lg { + display: none !important; + } + .bootstrap-wrapper th.hidden-xs.hidden-lg, + .bootstrap-wrapper td.hidden-xs.hidden-lg { + display: none !important; + } +} +.bootstrap-wrapper .hidden-sm { + display: block !important; +} +.bootstrap-wrapper tr.hidden-sm { + display: table-row !important; +} +.bootstrap-wrapper th.hidden-sm, +.bootstrap-wrapper td.hidden-sm { + display: table-cell !important; +} +@media (max-width: 767px) { + .bootstrap-wrapper .hidden-sm.hidden-xs { + display: none !important; + } + .bootstrap-wrapper tr.hidden-sm.hidden-xs { + display: none !important; + } + .bootstrap-wrapper th.hidden-sm.hidden-xs, + .bootstrap-wrapper td.hidden-sm.hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .bootstrap-wrapper .hidden-sm { + display: none !important; + } + .bootstrap-wrapper tr.hidden-sm { + display: none !important; + } + .bootstrap-wrapper th.hidden-sm, + .bootstrap-wrapper td.hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .bootstrap-wrapper .hidden-sm.hidden-md { + display: none !important; + } + .bootstrap-wrapper tr.hidden-sm.hidden-md { + display: none !important; + } + .bootstrap-wrapper th.hidden-sm.hidden-md, + .bootstrap-wrapper td.hidden-sm.hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .hidden-sm.hidden-lg { + display: none !important; + } + .bootstrap-wrapper tr.hidden-sm.hidden-lg { + display: none !important; + } + .bootstrap-wrapper th.hidden-sm.hidden-lg, + .bootstrap-wrapper td.hidden-sm.hidden-lg { + display: none !important; + } +} +.bootstrap-wrapper .hidden-md { + display: block !important; +} +.bootstrap-wrapper tr.hidden-md { + display: table-row !important; +} +.bootstrap-wrapper th.hidden-md, +.bootstrap-wrapper td.hidden-md { + display: table-cell !important; +} +@media (max-width: 767px) { + .bootstrap-wrapper .hidden-md.hidden-xs { + display: none !important; + } + .bootstrap-wrapper tr.hidden-md.hidden-xs { + display: none !important; + } + .bootstrap-wrapper th.hidden-md.hidden-xs, + .bootstrap-wrapper td.hidden-md.hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .bootstrap-wrapper .hidden-md.hidden-sm { + display: none !important; + } + .bootstrap-wrapper tr.hidden-md.hidden-sm { + display: none !important; + } + .bootstrap-wrapper th.hidden-md.hidden-sm, + .bootstrap-wrapper td.hidden-md.hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .bootstrap-wrapper .hidden-md { + display: none !important; + } + .bootstrap-wrapper tr.hidden-md { + display: none !important; + } + .bootstrap-wrapper th.hidden-md, + .bootstrap-wrapper td.hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .hidden-md.hidden-lg { + display: none !important; + } + .bootstrap-wrapper tr.hidden-md.hidden-lg { + display: none !important; + } + .bootstrap-wrapper th.hidden-md.hidden-lg, + .bootstrap-wrapper td.hidden-md.hidden-lg { + display: none !important; + } +} +.bootstrap-wrapper .hidden-lg { + display: block !important; +} +.bootstrap-wrapper tr.hidden-lg { + display: table-row !important; +} +.bootstrap-wrapper th.hidden-lg, +.bootstrap-wrapper td.hidden-lg { + display: table-cell !important; +} +@media (max-width: 767px) { + .bootstrap-wrapper .hidden-lg.hidden-xs { + display: none !important; + } + .bootstrap-wrapper tr.hidden-lg.hidden-xs { + display: none !important; + } + .bootstrap-wrapper th.hidden-lg.hidden-xs, + .bootstrap-wrapper td.hidden-lg.hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .bootstrap-wrapper .hidden-lg.hidden-sm { + display: none !important; + } + .bootstrap-wrapper tr.hidden-lg.hidden-sm { + display: none !important; + } + .bootstrap-wrapper th.hidden-lg.hidden-sm, + .bootstrap-wrapper td.hidden-lg.hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .bootstrap-wrapper .hidden-lg.hidden-md { + display: none !important; + } + .bootstrap-wrapper tr.hidden-lg.hidden-md { + display: none !important; + } + .bootstrap-wrapper th.hidden-lg.hidden-md, + .bootstrap-wrapper td.hidden-lg.hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .bootstrap-wrapper .hidden-lg { + display: none !important; + } + .bootstrap-wrapper tr.hidden-lg { + display: none !important; + } + .bootstrap-wrapper th.hidden-lg, + .bootstrap-wrapper td.hidden-lg { + display: none !important; + } +} +.bootstrap-wrapper .visible-print { + display: none !important; +} +.bootstrap-wrapper tr.visible-print { + display: none !important; +} +.bootstrap-wrapper th.visible-print, +.bootstrap-wrapper td.visible-print { + display: none !important; +} +@media print { + .bootstrap-wrapper .visible-print { + display: block !important; + } + .bootstrap-wrapper tr.visible-print { + display: table-row !important; + } + .bootstrap-wrapper th.visible-print, + .bootstrap-wrapper td.visible-print { + display: table-cell !important; + } + .bootstrap-wrapper .hidden-print { + display: none !important; + } + .bootstrap-wrapper tr.hidden-print { + display: none !important; + } + .bootstrap-wrapper th.hidden-print, + .bootstrap-wrapper td.hidden-print { + display: none !important; + } +} +.bootstrap-wrapper .fade { + opacity: 0; + -webkit-transition: opacity 0.15s linear; + transition: opacity 0.15s linear; +} +.bootstrap-wrapper .fade.in { + opacity: 1; +} +.bootstrap-wrapper .collapse { + display: none; +} +.bootstrap-wrapper .collapse.in { + display: block; +} +.bootstrap-wrapper .collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition: height 0.35s ease; + transition: height 0.35s ease; +} diff --git a/user_map/static/user_map/css/wrap-bootstrap.less b/user_map/static/user_map/css/wrap-bootstrap.less new file mode 100644 index 0000000..c8bfddc --- /dev/null +++ b/user_map/static/user_map/css/wrap-bootstrap.less @@ -0,0 +1,9 @@ +.bootstrap-wrapper { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.428571429; + color: #333333; + background-color: white; + + @import (less) 'bootstrap.css'; +} diff --git a/user_map/templates/user_map/base.html b/user_map/templates/user_map/base.html index 741e731..ea7b1e8 100644 --- a/user_map/templates/user_map/base.html +++ b/user_map/templates/user_map/base.html @@ -11,15 +11,17 @@ {% block head_resources %} {% leaflet_js %} {% leaflet_css %} + + {% include 'user_map/extra_resource.html' %} + - + - {% endblock head_resources %} @@ -28,11 +30,13 @@ {% include 'user_map/navigation.html' %} - {% block main_content %} - {% endblock main_content %} +