Hello
+diff --git a/content/databases/site.php b/content/databases/site.php index 1e857038..62a08cc0 100644 --- a/content/databases/site.php +++ b/content/databases/site.php @@ -15,6 +15,6 @@ "urlFilters": { "post": "\/post\/", "tag": "\/tag\/", - "page": "\/cms\/other\/" + "page": "\/" } } diff --git a/contributors.txt b/contributors.txt index d16bda0c..2a66e497 100644 --- a/contributors.txt +++ b/contributors.txt @@ -9,8 +9,7 @@ Implementar - Notificaciones - Dashboard, parecido a Nibbleblog, me gusta. - iPhone app -- Bludit -- Case sensitive en la URL ? +- Cloud ————————— @@ -32,6 +31,10 @@ helperUrl:: find . -type f -name "*.php" -print0 | xargs -0 sed -i 's/Text/helperText/g' find . -type f -name "*.php" -print0 | xargs -0 sed -i 's/Url/helperUrl/g' +————————— + +- Las URL son Case sensitive. + ————————— Editando a mano Si editas el slug(directorio), luego de llamar a generator(), el post se pone en draft, toma la fecha actual y no vuelve a modificarse. Se puede forzar a publicado indicando el status: published diff --git a/install.php b/install.php index 49988bb3..21fd2269 100644 --- a/install.php +++ b/install.php @@ -157,7 +157,7 @@ $data = array( 'urlFilters'=>array( 'post'=>'/post/', 'tag'=>'/tag/', - 'page'=>HTML_PATH_ROOT + 'page'=>'/' ) ); diff --git a/kernel/boot/site.php b/kernel/boot/site.php index 9e301fa2..76f61d2f 100644 --- a/kernel/boot/site.php +++ b/kernel/boot/site.php @@ -48,14 +48,8 @@ $Site = new Site(); $Url = new Url(); $Parsedown = new Parsedown(); - $Language = new Language( $Site->locale() ); -$Url->init( $Site->urlFilters() ); - -// Objects shortcuts -$L = $Language; - // HTML PATHs $tmp = dirname(getenv('SCRIPT_NAME')); if($tmp!='/') @@ -66,6 +60,12 @@ else define('HTML_PATH_THEMES', HTML_PATH_ROOT.'themes/'); define('HTML_PATH_THEME', HTML_PATH_ROOT.'themes/'.$Site->theme().'/'); +// Check the URL/Uri. This method needs the constant HTML_PATH_ROOT. +$Url->checkFilters( $Site->urlFilters() ); + +// Objects shortcuts +$L = $Language; + // Boot rules include(PATH_RULES.'70.build_posts.php'); include(PATH_RULES.'70.build_pages.php'); diff --git a/kernel/url.class.php b/kernel/url.class.php index 179796d6..506b2ae9 100644 --- a/kernel/url.class.php +++ b/kernel/url.class.php @@ -9,10 +9,7 @@ class Url private $filters; // Filters for the URI private $notFound; - // Filters may be changed for different languages - // Ex (Spanish): Array('post'=>'/publicacion/', 'tag'=>'/etiqueta/', ....) - // Ex (English): Array('post'=>'/post/', 'tag'=>'/tag/', ....) - public function init($filters) + function __construct() { // Decodes any %## encoding in the given string. Plus symbols ('+') are decoded to a space character. $this->uri = urldecode($_SERVER['REQUEST_URI']); @@ -27,7 +24,13 @@ class Url $this->notFound = false; $this->slug = false; + } + // Filters may be changed for different languages + // Ex (Spanish): Array('post'=>'/publicacion/', 'tag'=>'/etiqueta/', ....) + // Ex (English): Array('post'=>'/post/', 'tag'=>'/tag/', ....) + public function checkFilters($filters) + { $this->filters = $filters; // Check if filtering by post @@ -119,6 +122,9 @@ class Url // ex: http://domain.com/cms/$filter/slug123 => slug123 private function filter_slug($filter) { + if($filter=='/') + $filter = HTML_PATH_ROOT; + $position = helperText::strpos($this->uri, $filter); if($position===false) diff --git a/themes/admin-kube/css/css/font-awesome.css b/themes/admin-kube/css/css/font-awesome.css new file mode 100644 index 00000000..2dcdc220 --- /dev/null +++ b/themes/admin-kube/css/css/font-awesome.css @@ -0,0 +1,1801 @@ +/*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */ +/* FONT PATH + * -------------------------- */ +@font-face { + font-family: 'FontAwesome'; + src: url('../fonts/fontawesome-webfont.eot?v=4.3.0'); + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg'); + font-weight: normal; + font-style: normal; +} +.fa { + display: inline-block; + font: normal normal normal 14px/1 FontAwesome; + font-size: inherit; + text-rendering: auto; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + transform: translate(0, 0); +} +/* makes the font 33% larger relative to the icon container */ +.fa-lg { + font-size: 1.33333333em; + line-height: 0.75em; + vertical-align: -15%; +} +.fa-2x { + font-size: 2em; +} +.fa-3x { + font-size: 3em; +} +.fa-4x { + font-size: 4em; +} +.fa-5x { + font-size: 5em; +} +.fa-fw { + width: 1.28571429em; + text-align: center; +} +.fa-ul { + padding-left: 0; + margin-left: 2.14285714em; + list-style-type: none; +} +.fa-ul > li { + position: relative; +} +.fa-li { + position: absolute; + left: -2.14285714em; + width: 2.14285714em; + top: 0.14285714em; + text-align: center; +} +.fa-li.fa-lg { + left: -1.85714286em; +} +.fa-border { + padding: .2em .25em .15em; + border: solid 0.08em #eeeeee; + border-radius: .1em; +} +.pull-right { + float: right; +} +.pull-left { + float: left; +} +.fa.pull-left { + margin-right: .3em; +} +.fa.pull-right { + margin-left: .3em; +} +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(359deg); + transform: rotate(359deg); + } +} +.fa-rotate-90 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); + -webkit-transform: rotate(90deg); + -ms-transform: rotate(90deg); + transform: rotate(90deg); +} +.fa-rotate-180 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); + -webkit-transform: rotate(180deg); + -ms-transform: rotate(180deg); + transform: rotate(180deg); +} +.fa-rotate-270 { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); + -webkit-transform: rotate(270deg); + -ms-transform: rotate(270deg); + transform: rotate(270deg); +} +.fa-flip-horizontal { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1); + -webkit-transform: scale(-1, 1); + -ms-transform: scale(-1, 1); + transform: scale(-1, 1); +} +.fa-flip-vertical { + filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1); + -webkit-transform: scale(1, -1); + -ms-transform: scale(1, -1); + transform: scale(1, -1); +} +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + filter: none; +} +.fa-stack { + position: relative; + display: inline-block; + width: 2em; + height: 2em; + line-height: 2em; + vertical-align: middle; +} +.fa-stack-1x, +.fa-stack-2x { + position: absolute; + left: 0; + width: 100%; + text-align: center; +} +.fa-stack-1x { + line-height: inherit; +} +.fa-stack-2x { + font-size: 2em; +} +.fa-inverse { + color: #ffffff; +} +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen + readers do not read off random characters that represent icons */ +.fa-glass:before { + content: "\f000"; +} +.fa-music:before { + content: "\f001"; +} +.fa-search:before { + content: "\f002"; +} +.fa-envelope-o:before { + content: "\f003"; +} +.fa-heart:before { + content: "\f004"; +} +.fa-star:before { + content: "\f005"; +} +.fa-star-o:before { + content: "\f006"; +} +.fa-user:before { + content: "\f007"; +} +.fa-film:before { + content: "\f008"; +} +.fa-th-large:before { + content: "\f009"; +} +.fa-th:before { + content: "\f00a"; +} +.fa-th-list:before { + content: "\f00b"; +} +.fa-check:before { + content: "\f00c"; +} +.fa-remove:before, +.fa-close:before, +.fa-times:before { + content: "\f00d"; +} +.fa-search-plus:before { + content: "\f00e"; +} +.fa-search-minus:before { + content: "\f010"; +} +.fa-power-off:before { + content: "\f011"; +} +.fa-signal:before { + content: "\f012"; +} +.fa-gear:before, +.fa-cog:before { + content: "\f013"; +} +.fa-trash-o:before { + content: "\f014"; +} +.fa-home:before { + content: "\f015"; +} +.fa-file-o:before { + content: "\f016"; +} +.fa-clock-o:before { + content: "\f017"; +} +.fa-road:before { + content: "\f018"; +} +.fa-download:before { + content: "\f019"; +} +.fa-arrow-circle-o-down:before { + content: "\f01a"; +} +.fa-arrow-circle-o-up:before { + content: "\f01b"; +} +.fa-inbox:before { + content: "\f01c"; +} +.fa-play-circle-o:before { + content: "\f01d"; +} +.fa-rotate-right:before, +.fa-repeat:before { + content: "\f01e"; +} +.fa-refresh:before { + content: "\f021"; +} +.fa-list-alt:before { + content: "\f022"; +} +.fa-lock:before { + content: "\f023"; +} +.fa-flag:before { + content: "\f024"; +} +.fa-headphones:before { + content: "\f025"; +} +.fa-volume-off:before { + content: "\f026"; +} +.fa-volume-down:before { + content: "\f027"; +} +.fa-volume-up:before { + content: "\f028"; +} +.fa-qrcode:before { + content: "\f029"; +} +.fa-barcode:before { + content: "\f02a"; +} +.fa-tag:before { + content: "\f02b"; +} +.fa-tags:before { + content: "\f02c"; +} +.fa-book:before { + content: "\f02d"; +} +.fa-bookmark:before { + content: "\f02e"; +} +.fa-print:before { + content: "\f02f"; +} +.fa-camera:before { + content: "\f030"; +} +.fa-font:before { + content: "\f031"; +} +.fa-bold:before { + content: "\f032"; +} +.fa-italic:before { + content: "\f033"; +} +.fa-text-height:before { + content: "\f034"; +} +.fa-text-width:before { + content: "\f035"; +} +.fa-align-left:before { + content: "\f036"; +} +.fa-align-center:before { + content: "\f037"; +} +.fa-align-right:before { + content: "\f038"; +} +.fa-align-justify:before { + content: "\f039"; +} +.fa-list:before { + content: "\f03a"; +} +.fa-dedent:before, +.fa-outdent:before { + content: "\f03b"; +} +.fa-indent:before { + content: "\f03c"; +} +.fa-video-camera:before { + content: "\f03d"; +} +.fa-photo:before, +.fa-image:before, +.fa-picture-o:before { + content: "\f03e"; +} +.fa-pencil:before { + content: "\f040"; +} +.fa-map-marker:before { + content: "\f041"; +} +.fa-adjust:before { + content: "\f042"; +} +.fa-tint:before { + content: "\f043"; +} +.fa-edit:before, +.fa-pencil-square-o:before { + content: "\f044"; +} +.fa-share-square-o:before { + content: "\f045"; +} +.fa-check-square-o:before { + content: "\f046"; +} +.fa-arrows:before { + content: "\f047"; +} +.fa-step-backward:before { + content: "\f048"; +} +.fa-fast-backward:before { + content: "\f049"; +} +.fa-backward:before { + content: "\f04a"; +} +.fa-play:before { + content: "\f04b"; +} +.fa-pause:before { + content: "\f04c"; +} +.fa-stop:before { + content: "\f04d"; +} +.fa-forward:before { + content: "\f04e"; +} +.fa-fast-forward:before { + content: "\f050"; +} +.fa-step-forward:before { + content: "\f051"; +} +.fa-eject:before { + content: "\f052"; +} +.fa-chevron-left:before { + content: "\f053"; +} +.fa-chevron-right:before { + content: "\f054"; +} +.fa-plus-circle:before { + content: "\f055"; +} +.fa-minus-circle:before { + content: "\f056"; +} +.fa-times-circle:before { + content: "\f057"; +} +.fa-check-circle:before { + content: "\f058"; +} +.fa-question-circle:before { + content: "\f059"; +} +.fa-info-circle:before { + content: "\f05a"; +} +.fa-crosshairs:before { + content: "\f05b"; +} +.fa-times-circle-o:before { + content: "\f05c"; +} +.fa-check-circle-o:before { + content: "\f05d"; +} +.fa-ban:before { + content: "\f05e"; +} +.fa-arrow-left:before { + content: "\f060"; +} +.fa-arrow-right:before { + content: "\f061"; +} +.fa-arrow-up:before { + content: "\f062"; +} +.fa-arrow-down:before { + content: "\f063"; +} +.fa-mail-forward:before, +.fa-share:before { + content: "\f064"; +} +.fa-expand:before { + content: "\f065"; +} +.fa-compress:before { + content: "\f066"; +} +.fa-plus:before { + content: "\f067"; +} +.fa-minus:before { + content: "\f068"; +} +.fa-asterisk:before { + content: "\f069"; +} +.fa-exclamation-circle:before { + content: "\f06a"; +} +.fa-gift:before { + content: "\f06b"; +} +.fa-leaf:before { + content: "\f06c"; +} +.fa-fire:before { + content: "\f06d"; +} +.fa-eye:before { + content: "\f06e"; +} +.fa-eye-slash:before { + content: "\f070"; +} +.fa-warning:before, +.fa-exclamation-triangle:before { + content: "\f071"; +} +.fa-plane:before { + content: "\f072"; +} +.fa-calendar:before { + content: "\f073"; +} +.fa-random:before { + content: "\f074"; +} +.fa-comment:before { + content: "\f075"; +} +.fa-magnet:before { + content: "\f076"; +} +.fa-chevron-up:before { + content: "\f077"; +} +.fa-chevron-down:before { + content: "\f078"; +} +.fa-retweet:before { + content: "\f079"; +} +.fa-shopping-cart:before { + content: "\f07a"; +} +.fa-folder:before { + content: "\f07b"; +} +.fa-folder-open:before { + content: "\f07c"; +} +.fa-arrows-v:before { + content: "\f07d"; +} +.fa-arrows-h:before { + content: "\f07e"; +} +.fa-bar-chart-o:before, +.fa-bar-chart:before { + content: "\f080"; +} +.fa-twitter-square:before { + content: "\f081"; +} +.fa-facebook-square:before { + content: "\f082"; +} +.fa-camera-retro:before { + content: "\f083"; +} +.fa-key:before { + content: "\f084"; +} +.fa-gears:before, +.fa-cogs:before { + content: "\f085"; +} +.fa-comments:before { + content: "\f086"; +} +.fa-thumbs-o-up:before { + content: "\f087"; +} +.fa-thumbs-o-down:before { + content: "\f088"; +} +.fa-star-half:before { + content: "\f089"; +} +.fa-heart-o:before { + content: "\f08a"; +} +.fa-sign-out:before { + content: "\f08b"; +} +.fa-linkedin-square:before { + content: "\f08c"; +} +.fa-thumb-tack:before { + content: "\f08d"; +} +.fa-external-link:before { + content: "\f08e"; +} +.fa-sign-in:before { + content: "\f090"; +} +.fa-trophy:before { + content: "\f091"; +} +.fa-github-square:before { + content: "\f092"; +} +.fa-upload:before { + content: "\f093"; +} +.fa-lemon-o:before { + content: "\f094"; +} +.fa-phone:before { + content: "\f095"; +} +.fa-square-o:before { + content: "\f096"; +} +.fa-bookmark-o:before { + content: "\f097"; +} +.fa-phone-square:before { + content: "\f098"; +} +.fa-twitter:before { + content: "\f099"; +} +.fa-facebook-f:before, +.fa-facebook:before { + content: "\f09a"; +} +.fa-github:before { + content: "\f09b"; +} +.fa-unlock:before { + content: "\f09c"; +} +.fa-credit-card:before { + content: "\f09d"; +} +.fa-rss:before { + content: "\f09e"; +} +.fa-hdd-o:before { + content: "\f0a0"; +} +.fa-bullhorn:before { + content: "\f0a1"; +} +.fa-bell:before { + content: "\f0f3"; +} +.fa-certificate:before { + content: "\f0a3"; +} +.fa-hand-o-right:before { + content: "\f0a4"; +} +.fa-hand-o-left:before { + content: "\f0a5"; +} +.fa-hand-o-up:before { + content: "\f0a6"; +} +.fa-hand-o-down:before { + content: "\f0a7"; +} +.fa-arrow-circle-left:before { + content: "\f0a8"; +} +.fa-arrow-circle-right:before { + content: "\f0a9"; +} +.fa-arrow-circle-up:before { + content: "\f0aa"; +} +.fa-arrow-circle-down:before { + content: "\f0ab"; +} +.fa-globe:before { + content: "\f0ac"; +} +.fa-wrench:before { + content: "\f0ad"; +} +.fa-tasks:before { + content: "\f0ae"; +} +.fa-filter:before { + content: "\f0b0"; +} +.fa-briefcase:before { + content: "\f0b1"; +} +.fa-arrows-alt:before { + content: "\f0b2"; +} +.fa-group:before, +.fa-users:before { + content: "\f0c0"; +} +.fa-chain:before, +.fa-link:before { + content: "\f0c1"; +} +.fa-cloud:before { + content: "\f0c2"; +} +.fa-flask:before { + content: "\f0c3"; +} +.fa-cut:before, +.fa-scissors:before { + content: "\f0c4"; +} +.fa-copy:before, +.fa-files-o:before { + content: "\f0c5"; +} +.fa-paperclip:before { + content: "\f0c6"; +} +.fa-save:before, +.fa-floppy-o:before { + content: "\f0c7"; +} +.fa-square:before { + content: "\f0c8"; +} +.fa-navicon:before, +.fa-reorder:before, +.fa-bars:before { + content: "\f0c9"; +} +.fa-list-ul:before { + content: "\f0ca"; +} +.fa-list-ol:before { + content: "\f0cb"; +} +.fa-strikethrough:before { + content: "\f0cc"; +} +.fa-underline:before { + content: "\f0cd"; +} +.fa-table:before { + content: "\f0ce"; +} +.fa-magic:before { + content: "\f0d0"; +} +.fa-truck:before { + content: "\f0d1"; +} +.fa-pinterest:before { + content: "\f0d2"; +} +.fa-pinterest-square:before { + content: "\f0d3"; +} +.fa-google-plus-square:before { + content: "\f0d4"; +} +.fa-google-plus:before { + content: "\f0d5"; +} +.fa-money:before { + content: "\f0d6"; +} +.fa-caret-down:before { + content: "\f0d7"; +} +.fa-caret-up:before { + content: "\f0d8"; +} +.fa-caret-left:before { + content: "\f0d9"; +} +.fa-caret-right:before { + content: "\f0da"; +} +.fa-columns:before { + content: "\f0db"; +} +.fa-unsorted:before, +.fa-sort:before { + content: "\f0dc"; +} +.fa-sort-down:before, +.fa-sort-desc:before { + content: "\f0dd"; +} +.fa-sort-up:before, +.fa-sort-asc:before { + content: "\f0de"; +} +.fa-envelope:before { + content: "\f0e0"; +} +.fa-linkedin:before { + content: "\f0e1"; +} +.fa-rotate-left:before, +.fa-undo:before { + content: "\f0e2"; +} +.fa-legal:before, +.fa-gavel:before { + content: "\f0e3"; +} +.fa-dashboard:before, +.fa-tachometer:before { + content: "\f0e4"; +} +.fa-comment-o:before { + content: "\f0e5"; +} +.fa-comments-o:before { + content: "\f0e6"; +} +.fa-flash:before, +.fa-bolt:before { + content: "\f0e7"; +} +.fa-sitemap:before { + content: "\f0e8"; +} +.fa-umbrella:before { + content: "\f0e9"; +} +.fa-paste:before, +.fa-clipboard:before { + content: "\f0ea"; +} +.fa-lightbulb-o:before { + content: "\f0eb"; +} +.fa-exchange:before { + content: "\f0ec"; +} +.fa-cloud-download:before { + content: "\f0ed"; +} +.fa-cloud-upload:before { + content: "\f0ee"; +} +.fa-user-md:before { + content: "\f0f0"; +} +.fa-stethoscope:before { + content: "\f0f1"; +} +.fa-suitcase:before { + content: "\f0f2"; +} +.fa-bell-o:before { + content: "\f0a2"; +} +.fa-coffee:before { + content: "\f0f4"; +} +.fa-cutlery:before { + content: "\f0f5"; +} +.fa-file-text-o:before { + content: "\f0f6"; +} +.fa-building-o:before { + content: "\f0f7"; +} +.fa-hospital-o:before { + content: "\f0f8"; +} +.fa-ambulance:before { + content: "\f0f9"; +} +.fa-medkit:before { + content: "\f0fa"; +} +.fa-fighter-jet:before { + content: "\f0fb"; +} +.fa-beer:before { + content: "\f0fc"; +} +.fa-h-square:before { + content: "\f0fd"; +} +.fa-plus-square:before { + content: "\f0fe"; +} +.fa-angle-double-left:before { + content: "\f100"; +} +.fa-angle-double-right:before { + content: "\f101"; +} +.fa-angle-double-up:before { + content: "\f102"; +} +.fa-angle-double-down:before { + content: "\f103"; +} +.fa-angle-left:before { + content: "\f104"; +} +.fa-angle-right:before { + content: "\f105"; +} +.fa-angle-up:before { + content: "\f106"; +} +.fa-angle-down:before { + content: "\f107"; +} +.fa-desktop:before { + content: "\f108"; +} +.fa-laptop:before { + content: "\f109"; +} +.fa-tablet:before { + content: "\f10a"; +} +.fa-mobile-phone:before, +.fa-mobile:before { + content: "\f10b"; +} +.fa-circle-o:before { + content: "\f10c"; +} +.fa-quote-left:before { + content: "\f10d"; +} +.fa-quote-right:before { + content: "\f10e"; +} +.fa-spinner:before { + content: "\f110"; +} +.fa-circle:before { + content: "\f111"; +} +.fa-mail-reply:before, +.fa-reply:before { + content: "\f112"; +} +.fa-github-alt:before { + content: "\f113"; +} +.fa-folder-o:before { + content: "\f114"; +} +.fa-folder-open-o:before { + content: "\f115"; +} +.fa-smile-o:before { + content: "\f118"; +} +.fa-frown-o:before { + content: "\f119"; +} +.fa-meh-o:before { + content: "\f11a"; +} +.fa-gamepad:before { + content: "\f11b"; +} +.fa-keyboard-o:before { + content: "\f11c"; +} +.fa-flag-o:before { + content: "\f11d"; +} +.fa-flag-checkered:before { + content: "\f11e"; +} +.fa-terminal:before { + content: "\f120"; +} +.fa-code:before { + content: "\f121"; +} +.fa-mail-reply-all:before, +.fa-reply-all:before { + content: "\f122"; +} +.fa-star-half-empty:before, +.fa-star-half-full:before, +.fa-star-half-o:before { + content: "\f123"; +} +.fa-location-arrow:before { + content: "\f124"; +} +.fa-crop:before { + content: "\f125"; +} +.fa-code-fork:before { + content: "\f126"; +} +.fa-unlink:before, +.fa-chain-broken:before { + content: "\f127"; +} +.fa-question:before { + content: "\f128"; +} +.fa-info:before { + content: "\f129"; +} +.fa-exclamation:before { + content: "\f12a"; +} +.fa-superscript:before { + content: "\f12b"; +} +.fa-subscript:before { + content: "\f12c"; +} +.fa-eraser:before { + content: "\f12d"; +} +.fa-puzzle-piece:before { + content: "\f12e"; +} +.fa-microphone:before { + content: "\f130"; +} +.fa-microphone-slash:before { + content: "\f131"; +} +.fa-shield:before { + content: "\f132"; +} +.fa-calendar-o:before { + content: "\f133"; +} +.fa-fire-extinguisher:before { + content: "\f134"; +} +.fa-rocket:before { + content: "\f135"; +} +.fa-maxcdn:before { + content: "\f136"; +} +.fa-chevron-circle-left:before { + content: "\f137"; +} +.fa-chevron-circle-right:before { + content: "\f138"; +} +.fa-chevron-circle-up:before { + content: "\f139"; +} +.fa-chevron-circle-down:before { + content: "\f13a"; +} +.fa-html5:before { + content: "\f13b"; +} +.fa-css3:before { + content: "\f13c"; +} +.fa-anchor:before { + content: "\f13d"; +} +.fa-unlock-alt:before { + content: "\f13e"; +} +.fa-bullseye:before { + content: "\f140"; +} +.fa-ellipsis-h:before { + content: "\f141"; +} +.fa-ellipsis-v:before { + content: "\f142"; +} +.fa-rss-square:before { + content: "\f143"; +} +.fa-play-circle:before { + content: "\f144"; +} +.fa-ticket:before { + content: "\f145"; +} +.fa-minus-square:before { + content: "\f146"; +} +.fa-minus-square-o:before { + content: "\f147"; +} +.fa-level-up:before { + content: "\f148"; +} +.fa-level-down:before { + content: "\f149"; +} +.fa-check-square:before { + content: "\f14a"; +} +.fa-pencil-square:before { + content: "\f14b"; +} +.fa-external-link-square:before { + content: "\f14c"; +} +.fa-share-square:before { + content: "\f14d"; +} +.fa-compass:before { + content: "\f14e"; +} +.fa-toggle-down:before, +.fa-caret-square-o-down:before { + content: "\f150"; +} +.fa-toggle-up:before, +.fa-caret-square-o-up:before { + content: "\f151"; +} +.fa-toggle-right:before, +.fa-caret-square-o-right:before { + content: "\f152"; +} +.fa-euro:before, +.fa-eur:before { + content: "\f153"; +} +.fa-gbp:before { + content: "\f154"; +} +.fa-dollar:before, +.fa-usd:before { + content: "\f155"; +} +.fa-rupee:before, +.fa-inr:before { + content: "\f156"; +} +.fa-cny:before, +.fa-rmb:before, +.fa-yen:before, +.fa-jpy:before { + content: "\f157"; +} +.fa-ruble:before, +.fa-rouble:before, +.fa-rub:before { + content: "\f158"; +} +.fa-won:before, +.fa-krw:before { + content: "\f159"; +} +.fa-bitcoin:before, +.fa-btc:before { + content: "\f15a"; +} +.fa-file:before { + content: "\f15b"; +} +.fa-file-text:before { + content: "\f15c"; +} +.fa-sort-alpha-asc:before { + content: "\f15d"; +} +.fa-sort-alpha-desc:before { + content: "\f15e"; +} +.fa-sort-amount-asc:before { + content: "\f160"; +} +.fa-sort-amount-desc:before { + content: "\f161"; +} +.fa-sort-numeric-asc:before { + content: "\f162"; +} +.fa-sort-numeric-desc:before { + content: "\f163"; +} +.fa-thumbs-up:before { + content: "\f164"; +} +.fa-thumbs-down:before { + content: "\f165"; +} +.fa-youtube-square:before { + content: "\f166"; +} +.fa-youtube:before { + content: "\f167"; +} +.fa-xing:before { + content: "\f168"; +} +.fa-xing-square:before { + content: "\f169"; +} +.fa-youtube-play:before { + content: "\f16a"; +} +.fa-dropbox:before { + content: "\f16b"; +} +.fa-stack-overflow:before { + content: "\f16c"; +} +.fa-instagram:before { + content: "\f16d"; +} +.fa-flickr:before { + content: "\f16e"; +} +.fa-adn:before { + content: "\f170"; +} +.fa-bitbucket:before { + content: "\f171"; +} +.fa-bitbucket-square:before { + content: "\f172"; +} +.fa-tumblr:before { + content: "\f173"; +} +.fa-tumblr-square:before { + content: "\f174"; +} +.fa-long-arrow-down:before { + content: "\f175"; +} +.fa-long-arrow-up:before { + content: "\f176"; +} +.fa-long-arrow-left:before { + content: "\f177"; +} +.fa-long-arrow-right:before { + content: "\f178"; +} +.fa-apple:before { + content: "\f179"; +} +.fa-windows:before { + content: "\f17a"; +} +.fa-android:before { + content: "\f17b"; +} +.fa-linux:before { + content: "\f17c"; +} +.fa-dribbble:before { + content: "\f17d"; +} +.fa-skype:before { + content: "\f17e"; +} +.fa-foursquare:before { + content: "\f180"; +} +.fa-trello:before { + content: "\f181"; +} +.fa-female:before { + content: "\f182"; +} +.fa-male:before { + content: "\f183"; +} +.fa-gittip:before, +.fa-gratipay:before { + content: "\f184"; +} +.fa-sun-o:before { + content: "\f185"; +} +.fa-moon-o:before { + content: "\f186"; +} +.fa-archive:before { + content: "\f187"; +} +.fa-bug:before { + content: "\f188"; +} +.fa-vk:before { + content: "\f189"; +} +.fa-weibo:before { + content: "\f18a"; +} +.fa-renren:before { + content: "\f18b"; +} +.fa-pagelines:before { + content: "\f18c"; +} +.fa-stack-exchange:before { + content: "\f18d"; +} +.fa-arrow-circle-o-right:before { + content: "\f18e"; +} +.fa-arrow-circle-o-left:before { + content: "\f190"; +} +.fa-toggle-left:before, +.fa-caret-square-o-left:before { + content: "\f191"; +} +.fa-dot-circle-o:before { + content: "\f192"; +} +.fa-wheelchair:before { + content: "\f193"; +} +.fa-vimeo-square:before { + content: "\f194"; +} +.fa-turkish-lira:before, +.fa-try:before { + content: "\f195"; +} +.fa-plus-square-o:before { + content: "\f196"; +} +.fa-space-shuttle:before { + content: "\f197"; +} +.fa-slack:before { + content: "\f198"; +} +.fa-envelope-square:before { + content: "\f199"; +} +.fa-wordpress:before { + content: "\f19a"; +} +.fa-openid:before { + content: "\f19b"; +} +.fa-institution:before, +.fa-bank:before, +.fa-university:before { + content: "\f19c"; +} +.fa-mortar-board:before, +.fa-graduation-cap:before { + content: "\f19d"; +} +.fa-yahoo:before { + content: "\f19e"; +} +.fa-google:before { + content: "\f1a0"; +} +.fa-reddit:before { + content: "\f1a1"; +} +.fa-reddit-square:before { + content: "\f1a2"; +} +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} +.fa-stumbleupon:before { + content: "\f1a4"; +} +.fa-delicious:before { + content: "\f1a5"; +} +.fa-digg:before { + content: "\f1a6"; +} +.fa-pied-piper:before { + content: "\f1a7"; +} +.fa-pied-piper-alt:before { + content: "\f1a8"; +} +.fa-drupal:before { + content: "\f1a9"; +} +.fa-joomla:before { + content: "\f1aa"; +} +.fa-language:before { + content: "\f1ab"; +} +.fa-fax:before { + content: "\f1ac"; +} +.fa-building:before { + content: "\f1ad"; +} +.fa-child:before { + content: "\f1ae"; +} +.fa-paw:before { + content: "\f1b0"; +} +.fa-spoon:before { + content: "\f1b1"; +} +.fa-cube:before { + content: "\f1b2"; +} +.fa-cubes:before { + content: "\f1b3"; +} +.fa-behance:before { + content: "\f1b4"; +} +.fa-behance-square:before { + content: "\f1b5"; +} +.fa-steam:before { + content: "\f1b6"; +} +.fa-steam-square:before { + content: "\f1b7"; +} +.fa-recycle:before { + content: "\f1b8"; +} +.fa-automobile:before, +.fa-car:before { + content: "\f1b9"; +} +.fa-cab:before, +.fa-taxi:before { + content: "\f1ba"; +} +.fa-tree:before { + content: "\f1bb"; +} +.fa-spotify:before { + content: "\f1bc"; +} +.fa-deviantart:before { + content: "\f1bd"; +} +.fa-soundcloud:before { + content: "\f1be"; +} +.fa-database:before { + content: "\f1c0"; +} +.fa-file-pdf-o:before { + content: "\f1c1"; +} +.fa-file-word-o:before { + content: "\f1c2"; +} +.fa-file-excel-o:before { + content: "\f1c3"; +} +.fa-file-powerpoint-o:before { + content: "\f1c4"; +} +.fa-file-photo-o:before, +.fa-file-picture-o:before, +.fa-file-image-o:before { + content: "\f1c5"; +} +.fa-file-zip-o:before, +.fa-file-archive-o:before { + content: "\f1c6"; +} +.fa-file-sound-o:before, +.fa-file-audio-o:before { + content: "\f1c7"; +} +.fa-file-movie-o:before, +.fa-file-video-o:before { + content: "\f1c8"; +} +.fa-file-code-o:before { + content: "\f1c9"; +} +.fa-vine:before { + content: "\f1ca"; +} +.fa-codepen:before { + content: "\f1cb"; +} +.fa-jsfiddle:before { + content: "\f1cc"; +} +.fa-life-bouy:before, +.fa-life-buoy:before, +.fa-life-saver:before, +.fa-support:before, +.fa-life-ring:before { + content: "\f1cd"; +} +.fa-circle-o-notch:before { + content: "\f1ce"; +} +.fa-ra:before, +.fa-rebel:before { + content: "\f1d0"; +} +.fa-ge:before, +.fa-empire:before { + content: "\f1d1"; +} +.fa-git-square:before { + content: "\f1d2"; +} +.fa-git:before { + content: "\f1d3"; +} +.fa-hacker-news:before { + content: "\f1d4"; +} +.fa-tencent-weibo:before { + content: "\f1d5"; +} +.fa-qq:before { + content: "\f1d6"; +} +.fa-wechat:before, +.fa-weixin:before { + content: "\f1d7"; +} +.fa-send:before, +.fa-paper-plane:before { + content: "\f1d8"; +} +.fa-send-o:before, +.fa-paper-plane-o:before { + content: "\f1d9"; +} +.fa-history:before { + content: "\f1da"; +} +.fa-genderless:before, +.fa-circle-thin:before { + content: "\f1db"; +} +.fa-header:before { + content: "\f1dc"; +} +.fa-paragraph:before { + content: "\f1dd"; +} +.fa-sliders:before { + content: "\f1de"; +} +.fa-share-alt:before { + content: "\f1e0"; +} +.fa-share-alt-square:before { + content: "\f1e1"; +} +.fa-bomb:before { + content: "\f1e2"; +} +.fa-soccer-ball-o:before, +.fa-futbol-o:before { + content: "\f1e3"; +} +.fa-tty:before { + content: "\f1e4"; +} +.fa-binoculars:before { + content: "\f1e5"; +} +.fa-plug:before { + content: "\f1e6"; +} +.fa-slideshare:before { + content: "\f1e7"; +} +.fa-twitch:before { + content: "\f1e8"; +} +.fa-yelp:before { + content: "\f1e9"; +} +.fa-newspaper-o:before { + content: "\f1ea"; +} +.fa-wifi:before { + content: "\f1eb"; +} +.fa-calculator:before { + content: "\f1ec"; +} +.fa-paypal:before { + content: "\f1ed"; +} +.fa-google-wallet:before { + content: "\f1ee"; +} +.fa-cc-visa:before { + content: "\f1f0"; +} +.fa-cc-mastercard:before { + content: "\f1f1"; +} +.fa-cc-discover:before { + content: "\f1f2"; +} +.fa-cc-amex:before { + content: "\f1f3"; +} +.fa-cc-paypal:before { + content: "\f1f4"; +} +.fa-cc-stripe:before { + content: "\f1f5"; +} +.fa-bell-slash:before { + content: "\f1f6"; +} +.fa-bell-slash-o:before { + content: "\f1f7"; +} +.fa-trash:before { + content: "\f1f8"; +} +.fa-copyright:before { + content: "\f1f9"; +} +.fa-at:before { + content: "\f1fa"; +} +.fa-eyedropper:before { + content: "\f1fb"; +} +.fa-paint-brush:before { + content: "\f1fc"; +} +.fa-birthday-cake:before { + content: "\f1fd"; +} +.fa-area-chart:before { + content: "\f1fe"; +} +.fa-pie-chart:before { + content: "\f200"; +} +.fa-line-chart:before { + content: "\f201"; +} +.fa-lastfm:before { + content: "\f202"; +} +.fa-lastfm-square:before { + content: "\f203"; +} +.fa-toggle-off:before { + content: "\f204"; +} +.fa-toggle-on:before { + content: "\f205"; +} +.fa-bicycle:before { + content: "\f206"; +} +.fa-bus:before { + content: "\f207"; +} +.fa-ioxhost:before { + content: "\f208"; +} +.fa-angellist:before { + content: "\f209"; +} +.fa-cc:before { + content: "\f20a"; +} +.fa-shekel:before, +.fa-sheqel:before, +.fa-ils:before { + content: "\f20b"; +} +.fa-meanpath:before { + content: "\f20c"; +} +.fa-buysellads:before { + content: "\f20d"; +} +.fa-connectdevelop:before { + content: "\f20e"; +} +.fa-dashcube:before { + content: "\f210"; +} +.fa-forumbee:before { + content: "\f211"; +} +.fa-leanpub:before { + content: "\f212"; +} +.fa-sellsy:before { + content: "\f213"; +} +.fa-shirtsinbulk:before { + content: "\f214"; +} +.fa-simplybuilt:before { + content: "\f215"; +} +.fa-skyatlas:before { + content: "\f216"; +} +.fa-cart-plus:before { + content: "\f217"; +} +.fa-cart-arrow-down:before { + content: "\f218"; +} +.fa-diamond:before { + content: "\f219"; +} +.fa-ship:before { + content: "\f21a"; +} +.fa-user-secret:before { + content: "\f21b"; +} +.fa-motorcycle:before { + content: "\f21c"; +} +.fa-street-view:before { + content: "\f21d"; +} +.fa-heartbeat:before { + content: "\f21e"; +} +.fa-venus:before { + content: "\f221"; +} +.fa-mars:before { + content: "\f222"; +} +.fa-mercury:before { + content: "\f223"; +} +.fa-transgender:before { + content: "\f224"; +} +.fa-transgender-alt:before { + content: "\f225"; +} +.fa-venus-double:before { + content: "\f226"; +} +.fa-mars-double:before { + content: "\f227"; +} +.fa-venus-mars:before { + content: "\f228"; +} +.fa-mars-stroke:before { + content: "\f229"; +} +.fa-mars-stroke-v:before { + content: "\f22a"; +} +.fa-mars-stroke-h:before { + content: "\f22b"; +} +.fa-neuter:before { + content: "\f22c"; +} +.fa-facebook-official:before { + content: "\f230"; +} +.fa-pinterest-p:before { + content: "\f231"; +} +.fa-whatsapp:before { + content: "\f232"; +} +.fa-server:before { + content: "\f233"; +} +.fa-user-plus:before { + content: "\f234"; +} +.fa-user-times:before { + content: "\f235"; +} +.fa-hotel:before, +.fa-bed:before { + content: "\f236"; +} +.fa-viacoin:before { + content: "\f237"; +} +.fa-train:before { + content: "\f238"; +} +.fa-subway:before { + content: "\f239"; +} +.fa-medium:before { + content: "\f23a"; +} diff --git a/themes/admin-kube/css/css/font-awesome.min.css b/themes/admin-kube/css/css/font-awesome.min.css new file mode 100644 index 00000000..24fcc04c --- /dev/null +++ b/themes/admin-kube/css/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"} \ No newline at end of file diff --git a/themes/admin-kube/css/default.css b/themes/admin-kube/css/default.css new file mode 100644 index 00000000..c03f6ca4 --- /dev/null +++ b/themes/admin-kube/css/default.css @@ -0,0 +1,65 @@ +html { + overflow-y: scroll; +} + +a { + text-decoration: none; + color: #333; +} + +/* ----------- FONTS AWESOME ----------- */ +.fa-right { + margin-right: 8px; +} + +/* ----------- HEAD ----------- */ +#head { + overflow: auto; + border-top: 10px #f1f1f1 solid; + border-bottom: 1px solid #f1f1f1; + padding: 10px 0; +} + +#head h1 { + font-weight: normal; + float:left; + margin-left: 30px; + margin: 0; + padding: 0; + font-size: 1.3em; +} + +#head ul { + position: relative; + float: right; + margin: 0; + list-style: none; +} + +#head .navbar { + margin: 0; + padding: 0; +} + +/* ----------- SIDEBAR ----------- */ +#sidebar { + overflow: auto; + margin-top: 30px; + margin-left: 30px; +} + +#sidebar ul { + list-style-type: none; + margin: 0; + padding: 0; +} + +#sidebar li { + margin: 25px 0; +} + +/* ----------- CONTENT ----------- */ +#content { + overflow: auto; +} + diff --git a/themes/admin-kube/css/fonts/FontAwesome.otf b/themes/admin-kube/css/fonts/FontAwesome.otf new file mode 100644 index 00000000..f7936cc1 Binary files /dev/null and b/themes/admin-kube/css/fonts/FontAwesome.otf differ diff --git a/themes/admin-kube/css/fonts/fontawesome-webfont.eot b/themes/admin-kube/css/fonts/fontawesome-webfont.eot new file mode 100644 index 00000000..33b2bb80 Binary files /dev/null and b/themes/admin-kube/css/fonts/fontawesome-webfont.eot differ diff --git a/themes/admin-kube/css/fonts/fontawesome-webfont.svg b/themes/admin-kube/css/fonts/fontawesome-webfont.svg new file mode 100644 index 00000000..1ee89d43 --- /dev/null +++ b/themes/admin-kube/css/fonts/fontawesome-webfont.svg @@ -0,0 +1,565 @@ + + + \ No newline at end of file diff --git a/themes/admin-kube/css/fonts/fontawesome-webfont.ttf b/themes/admin-kube/css/fonts/fontawesome-webfont.ttf new file mode 100644 index 00000000..ed9372f8 Binary files /dev/null and b/themes/admin-kube/css/fonts/fontawesome-webfont.ttf differ diff --git a/themes/admin-kube/css/fonts/fontawesome-webfont.woff b/themes/admin-kube/css/fonts/fontawesome-webfont.woff new file mode 100644 index 00000000..8b280b98 Binary files /dev/null and b/themes/admin-kube/css/fonts/fontawesome-webfont.woff differ diff --git a/themes/admin-kube/css/fonts/fontawesome-webfont.woff2 b/themes/admin-kube/css/fonts/fontawesome-webfont.woff2 new file mode 100644 index 00000000..3311d585 Binary files /dev/null and b/themes/admin-kube/css/fonts/fontawesome-webfont.woff2 differ diff --git a/themes/admin-kube/css/kube.css b/themes/admin-kube/css/kube.css new file mode 100644 index 00000000..b2f7ce21 --- /dev/null +++ b/themes/admin-kube/css/kube.css @@ -0,0 +1,3646 @@ +/* + Kube Framework 4 +*/ +/* =Reset +-----------------------------------------------------------------------------*/ +*, +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-family: sans-serif; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; +} +html, +body, +div, +span, +object, +iframe, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +img, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +b, +u, +i, +center, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td, +article, +aside, +canvas, +details, +embed, +figure, +figcaption, +footer, +header, +hgroup, +menu, +nav, +output, +ruby, +section, +summary, +time, +mark, +audio, +video, +h1, +h2, +h3, +h4, +h5, +h6 { + margin: 0; + padding: 0; + border: 0; + outline: 0; + font-size: 100%; + vertical-align: baseline; + background: transparent; +} +a:active, +a:hover { + outline: 0; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +embed, +object, +iframe, +audio, +video, +canvas, +progress, +meter, +output, +textarea { + display: block; +} +audio:not([controls]) { + display: none; + height: 0; +} +/* To prevent some browsers from inserting quotes on q and p */ +blockquote, +q { + quotes: none; +} +blockquote p:before, +blockquote p:after, +q:before, +q:after { + content: ''; + content: none; +} +/* Table reset */ +table { + border-collapse: collapse; + border-spacing: 0; +} +caption, +th, +td { + text-align: left; + vertical-align: top; +} +thead th, +thead td { + font-weight: bold; + vertical-align: bottom; +} +/* Image inside */ +a img, +th img, +td img { + vertical-align: top; +} +button, +input, +select, +textarea { + margin: 0; +} +textarea { + overflow: auto; + vertical-align: top; + resize: vertical; +} +/* Normalize buttons in IE */ +button { + width: auto; + overflow: visible; +} +/* Hand cursor on clickable controls */ +input[type="reset"], +input[type="submit"], +input[type="file"], +input[type="radio"], +input[type="checkbox"], +select, +button { + cursor: pointer; +} +/* Trick with vertical align for radio and checkbox */ +input[type="radio"], +input[type="checkbox"] { + font-size: 110%; + position: relative; + top: -1px; + margin-right: 3px; +} +/* Normalize search fields */ +input[type="search"] { + -webkit-appearance: textfield; +} +input[type="search"]::-webkit-search-decoration, +input[type="search"]::-webkit-search-cancel-button { + -webkit-appearance: none; +} +/* Normalize horizontal line */ +hr { + display: block; + height: 1px; + border: 0; + border-top: 1px solid #ddd; +} +/* Responsive media */ +img, +video, +audio, +embed, +object { + max-width: 100%; +} +img, +video, +embed, +object { + height: auto; +} +embed, +object { + height: 100%; +} +img { + vertical-align: middle; + -ms-interpolation-mode: bicubic; +} +/* =Typography +-----------------------------------------------------------------------------*/ +body { + font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif; + font-size: 0.9375em; + line-height: 1.65em; + background: #ffffff; + color: #222222; +} +/* =Links +-----------------------------------------------------------------------------*/ +a { + color: #134da5; +} +a:focus, +a:hover { + color: #de2c3b; +} +/* =Headings +-----------------------------------------------------------------------------*/ +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif; + font-weight: bold; + color: #000000; + text-rendering: optimizeLegibility; + margin: 0 0 .5em 0; +} +h1, +.h1, +h2, +.h2 { + line-height: 1.1; +} +h3, +.h3, +h4, +.h4 { + line-height: 1.3; +} +h1, +.h1 { + font-size: 2.25em; +} +h2, +.h2 { + font-size: 1.5em; + margin-bottom: .7em; +} +h3, +.h3 { + font-size: 1.3125em; +} +h4, +.h4 { + font-size: 1.125em; +} +h5, +.h5 { + font-size: 1em; +} +h6, +.h6 { + font-size: 0.75em; + text-transform: uppercase; +} +/* =Lead +-----------------------------------------------------------------------------*/ +.lead { + font-size: 1.3125em; + line-height: 1.5; + margin-bottom: 1.0999999999999999em; +} +/* =Line height and margin +-----------------------------------------------------------------------------*/ +p, +ul, +ol, +dl, +dd, +dt, +blockquote, +td, +th { + line-height: 1.65em; +} +ul, +ol, +ul ul, +ol ol, +ul ol, +ol ul { + margin: 0 0 0 3.3em; +} +ul li, +ol li { + text-align: left; +} +ol ol li { + list-style-type: lower-alpha; +} +ol ol ol li { + list-style-type: lower-roman; +} +p, +ul, +ol, +dl, +blockquote, +hr, +pre, +table, +form, +fieldset, +figure, +address { + margin-bottom: 1.65em; +} +/* =Blockquote +-----------------------------------------------------------------------------*/ +blockquote { + position: relative; + font-style: italic; + font-size: 1.125em; + margin-left: 2.4749999999999996em; + padding-left: 1.65em; + border-left: 2px solid #dddddd; +} +blockquote p { + margin-bottom: .5em; +} +blockquote small, +cite { + color: rgba(0, 0, 0, 0.4); + font-style: italic; +} +small, +blockquote cite { + font-size: 12.75px; + line-height: 1; +} +/* =Address +-----------------------------------------------------------------------------*/ +address { + font-style: normal; +} +/* =Definition list +-----------------------------------------------------------------------------*/ +dl dt { + font-weight: bold; +} +dd { + margin-left: 1.65em; +} +/* =Text-level +-----------------------------------------------------------------------------*/ +s, +del { + text-decoration: line-through; +} +abbr[title], +dfn[title] { + border-bottom: 1px dotted #0f0f0f; + cursor: help; +} +strong, +b { + font-weight: bold; +} +em, +i { + font-style: italic; +} +sub, +sup { + font-size: 11.25px; + line-height: 0; + position: relative; +} +sup { + top: -0.5em; +} +sub { + bottom: -0.25em; +} +figcaption { + margin: .3em 0; + font-size: 12.75px; + font-style: italic; +} +ins, +u { + text-decoration: underline; +} +mark { + background-color: #ffc800; + color: #0f0f0f; + text-decoration: none; +} +/* =Code +-----------------------------------------------------------------------------*/ +pre, +code, +kbd, +samp, +var, +output { + font-size: 90%; + font-style: normal; + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +} +pre { + margin-top: 1.65em; + font-size: 100%; + line-height: 1.5; + color: #222222; + overflow: auto; +} +code, +samp, +kbd { + padding: 3px 6px 2px 6px; + display: inline-block; + line-height: 1; + border-radius: 2px; +} +code { + background: #f4f4f4; + border: 1px solid #d4d4d4; +} +pre code { + font-size: 100%; + border: none; + padding: 0; + background: none; + line-height: 1.65em; +} +var { + color: rgba(0, 0, 0, 0.5); +} +samp { + background: #d3e3fb; + border: 1px solid #b2cef8; +} +kbd { + background: #0f0f0f; + color: rgba(255, 255, 255, 0.85); + white-space: nowrap; +} +/* =Form +-----------------------------------------------------------------------------*/ +button:active, +button:focus { + outline: none; +} +textarea, +select { + font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif; + font-size: 1em; + box-shadow: none; +} +textarea, +select[multiple], +select[multiple="multiple"] { + padding: 0.3em 0.35em; + line-height: 1.35em; + width: 100%; +} +input[type="text"], +input[type="password"], +input[type="email"], +input[type="url"], +input[type="phone"], +input[type="tel"], +input[type="number"], +input[type="datetime"], +input[type="date"], +input[type="month"], +input[type="color"], +input[type="time"], +input[type="search"], +input[type="datetime-local"] { + font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif; + font-size: 1em; + box-shadow: none; + padding: 0.3em 0.35em; + line-height: 1.65em; + border-radius: 0; + outline: none; +} +select[multiple], +select[multiple="multiple"], +textarea, +input[type="text"], +input[type="password"], +input[type="email"], +input[type="url"], +input[type="phone"], +input[type="tel"], +input[type="number"], +input[type="datetime"], +input[type="date"], +input[type="month"], +input[type="color"], +input[type="time"], +input[type="search"], +input[type="datetime-local"] { + background: #ffffff; + border: 1px solid #cccccc; + position: relative; + z-index: 2; + -webkit-appearance: none; +} +textarea[disabled], +input[type="text"][disabled], +input[type="password"][disabled], +input[type="email"][disabled], +input[type="url"][disabled], +input[type="phone"][disabled], +input[type="tel"][disabled], +input[type="number"][disabled], +input[type="datetime"][disabled], +input[type="date"][disabled], +input[type="month"][disabled], +input[type="color"][disabled], +input[type="time"][disabled], +input[type="search"][disabled], +input[type="datetime-local"][disabled] { + resize: none; + color: rgba(0, 0, 0, 0.5); +} +select[disabled], +input[type="checkbox"][disabled], +input[type="radio"][disabled] { + cursor: default; +} +input::-moz-focus-inner, +button::-moz-focus-inner { + border: 0; + padding: 0; +} +input[type="range"] { + position: relative; + top: 3px; +} +select { + margin-bottom: 0 !important; +} +fieldset { + padding: 1.65em; + margin-bottom: 1.65em; + border: 1px solid #cccccc; +} +fieldset *:last-child { + margin-bottom: 0 !important; +} +legend { + font-weight: bold; + padding: 0 1em; + margin-left: -1em; +} +/* =Tables +-----------------------------------------------------------------------------*/ +table { + max-width: 100%; + width: 100%; + empty-cells: show; +} +table caption { + text-transform: uppercase; + padding: 0 1.0999999999999999em; + color: rgba(0, 0, 0, 0.4); + font-size: 12.75px; +} +table th, +table td { + border-bottom: 1px solid #eeeeee; + padding: 0.825em 1.0999999999999999em; +} +table tfoot th, +table tfoot td { + color: rgba(0, 0, 0, 0.4); +} +/* =Grid +-----------------------------------------------------------------------------*/ +.units-container:after, +.units-row:after { + content: ""; + display: table; + clear: both; +} +.units-container:after, +.units-row:after { + content: ""; + display: table; + clear: both; +} +.units-container { + /* it's the trick to not collapse padding-top in the child element */ + + padding-top: 1px; + margin-top: -1px; +} +.units-row { + margin-bottom: 1.65em; +} +.width-100, +.unit-100 { + width: 100%; +} +.width-90, +.unit-90 { + width: 90%; +} +.width-80, +.unit-80 { + width: 80%; +} +.width-75, +.unit-75 { + width: 75%; +} +.width-70, +.unit-70 { + width: 70%; +} +.width-66, +.unit-66 { + width: 66.6%; +} +.width-65, +.unit-65 { + width: 65%; +} +.width-60, +.unit-60 { + width: 60%; +} +.width-50, +.unit-50 { + width: 50%; +} +.width-40, +.unit-40 { + width: 40%; +} +.width-35, +.unit-35 { + width: 35%; +} +.width-33, +.unit-33 { + width: 33.3%; +} +.width-30, +.unit-30 { + width: 30%; +} +.width-25, +.unit-25 { + width: 25%; +} +.width-20, +.unit-20 { + width: 20%; +} +.width-10, +.unit-10 { + width: 10%; +} +.units-row .unit-90, +.units-row .unit-80, +.units-row .unit-75, +.units-row .unit-70, +.units-row .unit-66, +.units-row .unit-65, +.units-row .unit-60, +.units-row .unit-50, +.units-row .unit-40, +.units-row .unit-35, +.units-row .unit-33, +.units-row .unit-30, +.units-row .unit-25, +.units-row .unit-20, +.units-row .unit-10 { + float: left; + margin-left: 3%; +} +.units-row .unit-90:first-child, +.units-row .unit-80:first-child, +.units-row .unit-75:first-child, +.units-row .unit-70:first-child, +.units-row .unit-66:first-child, +.units-row .unit-65:first-child, +.units-row .unit-60:first-child, +.units-row .unit-50:first-child, +.units-row .unit-40:first-child, +.units-row .unit-35:first-child, +.units-row .unit-33:first-child, +.units-row .unit-30:first-child, +.units-row .unit-25:first-child, +.units-row .unit-20:first-child, +.units-row .unit-10:first-child { + margin-left: 0; +} +.units-row .unit-90 { + width: 89.7%; +} +.units-row .unit-80 { + width: 79.4%; +} +.units-row .unit-75 { + width: 74.25%; +} +.units-row .unit-70 { + width: 69.1%; +} +.units-row .unit-66 { + width: 65.66666666666666%; +} +.units-row .unit-65 { + width: 65.66666666666666%; +} +.units-row .unit-60 { + width: 58.800000000000004%; +} +.units-row .unit-50 { + width: 48.5%; +} +.units-row .unit-40 { + width: 38.2%; +} +.units-row .unit-35 { + width: 31.333333333333332%; +} +.units-row .unit-33 { + width: 31.333333333333332%; +} +.units-row .unit-30 { + width: 27.9%; +} +.units-row .unit-25 { + width: 22.75%; +} +.units-row .unit-20 { + width: 17.6%; +} +.units-row .unit-10 { + width: 7.3%; +} +.unit-push-90, +.unit-push-80, +.unit-push-75, +.unit-push-70, +.unit-push-66, +.unit-push-65, +.unit-push-60, +.unit-push-50, +.unit-push-40, +.unit-push-35, +.unit-push-33, +.unit-push-30, +.unit-push-25, +.unit-push-20, +.unit-push-10 { + position: relative; +} +.unit-push-90 { + left: 92.7%; +} +.unit-push-80 { + left: 82.4%; +} +.unit-push-75 { + left: 77.25%; +} +.unit-push-70 { + left: 72.1%; +} +.unit-push-66 { + left: 68.66666666666666%; +} +.unit-push-65 { + left: 68.66666666666666%; +} +.unit-push-60 { + left: 61.800000000000004%; +} +.unit-push-50 { + left: 51.5%; +} +.unit-push-40 { + left: 41.2%; +} +.unit-push-35 { + left: 34.33333333333333%; +} +.unit-push-33 { + left: 34.33333333333333%; +} +.unit-push-30 { + left: 30.9%; +} +.unit-push-25 { + left: 25.75%; +} +.unit-push-20 { + left: 20.6%; +} +.unit-push-10 { + left: 10.3%; +} +.units-row .unit-push-right { + float: right; +} +.units-row .unit-role-right { + margin-left: 3%; + float: right; +} +.units-row .unit-role-left { + margin-left: 0; +} +.centered, +.unit-centered { + float: none !important; + margin: 0 auto !important; +} +.unit-padding { + padding: 1.65em; +} +.units-padding .unit-100, +.units-padding .unit-90, +.units-padding .unit-80, +.units-padding .unit-75, +.units-padding .unit-70, +.units-padding .unit-66, +.units-padding .unit-65, +.units-padding .unit-60, +.units-padding .unit-50, +.units-padding .unit-40, +.units-padding .unit-35, +.units-padding .unit-33, +.units-padding .unit-30, +.units-padding .unit-25, +.units-padding .unit-20, +.units-padding .unit-10 { + padding: 1.65em; +} +.units-split .unit-90, +.units-split .unit-80, +.units-split .unit-75, +.units-split .unit-70, +.units-split .unit-66, +.units-split .unit-65, +.units-split .unit-60, +.units-split .unit-50, +.units-split .unit-40, +.units-split .unit-35, +.units-split .unit-33, +.units-split .unit-30, +.units-split .unit-25, +.units-split .unit-20, +.units-split .unit-10 { + margin-left: 0; +} +.units-split .unit-90 { + width: 90%; +} +.units-split .unit-80 { + width: 80%; +} +.units-split .unit-75 { + width: 75%; +} +.units-split .unit-70 { + width: 70%; +} +.units-split .unit-66 { + width: 66.6%; +} +.units-split .unit-65 { + width: 65%; +} +.units-split .unit-60 { + width: 60%; +} +.units-split .unit-50 { + width: 50%; +} +.units-split .unit-40 { + width: 40%; +} +.units-split .unit-35 { + width: 35%; +} +.units-split .unit-33 { + width: 33.3%; +} +.units-split .unit-30 { + width: 30%; +} +.units-split .unit-25 { + width: 25%; +} +.units-split .unit-20 { + width: 20%; +} +.units-split .unit-10 { + width: 10%; +} +/* =Blocks +-----------------------------------------------------------------------------*/ +.blocks-2, +.blocks-3, +.blocks-4, +.blocks-5, +.blocks-6 { + padding-left: 0; + list-style: none; + margin-left: -3%; +} +.blocks-2:after, +.blocks-3:after, +.blocks-4:after, +.blocks-5:after, +.blocks-6:after { + content: ""; + display: table; + clear: both; +} +.blocks-2:after, +.blocks-3:after, +.blocks-4:after, +.blocks-5:after, +.blocks-6:after { + content: ""; + display: table; + clear: both; +} +.blocks-2 > li, +.blocks-3 > li, +.blocks-4 > li, +.blocks-5 > li, +.blocks-6 > li { + height: auto; + float: left; + margin-bottom: 1.65em; + margin-left: 3%; +} +.blocks-2 > li ul, +.blocks-3 > li ul, +.blocks-4 > li ul, +.blocks-5 > li ul, +.blocks-6 > li ul { + list-style-type: disc; +} +.blocks-2 > li ul ul, +.blocks-3 > li ul ul, +.blocks-4 > li ul ul, +.blocks-5 > li ul ul, +.blocks-6 > li ul ul { + list-style-type: circle; +} +.blocks-2 > li li, +.blocks-3 > li li, +.blocks-4 > li li, +.blocks-5 > li li, +.blocks-6 > li li { + float: none; + margin: 0; +} +.blocks-2 > li { + width: 47%; +} +.blocks-3 > li { + width: 30.333333333333332%; +} +.blocks-4 > li { + width: 22%; +} +.blocks-5 > li { + width: 17%; +} +.blocks-6 > li { + width: 13.666666666666666%; +} +.block-first { + clear: both; +} +/* =Tables +-----------------------------------------------------------------------------*/ +table.table-bordered td, +table.table-bordered th { + border: 1px solid #eeeeee; +} +table.table-simple td, +table.table-simple th, +table.table-simple caption { + border: none; + padding-left: 0; +} +table.table-flat td, +table.table-flat th, +table.table-flat caption { + border: none; + padding: 0; +} +table.table-stroked td, +table.table-stroked th { + border-bottom: 1px solid #eeeeee; +} +table.table-stripped tbody tr:nth-child(odd) td { + background: #f8f8f8; +} +table.table-hovered tbody tr:hover td { + background-color: #f4f4f4; +} +/* Responsive Tables */ +.table-container { + width: 100%; + overflow: auto; + margin-bottom: 1.65em; +} +.table-container table { + margin-bottom: 0; +} +.table-container::-webkit-scrollbar { + -webkit-appearance: none; + width: 14px; + height: 14px; +} +.table-container::-webkit-scrollbar-thumb { + border-radius: 8px; + border: 3px solid #fff; + background-color: rgba(0, 0, 0, 0.3); +} +/* =Forms +-----------------------------------------------------------------------------*/ +.forms .btn, +.forms input[type="submit"].btn, +.forms button, +.forms input[type="submit"], +.forms input[type="reset"] { + padding: 0.3625em 1.3em; +} +.forms .btn-outline { + padding: 0.3em 1.3em; +} +.forms .btn-outline.bold { + padding: 0.2375em 1.3em; +} +.forms label { + display: block; + margin-bottom: 1.0999999999999999em; +} +.forms input[type="text"], +.forms input[type="password"], +.forms input[type="email"], +.forms input[type="url"], +.forms input[type="phone"], +.forms input[type="tel"], +.forms input[type="number"], +.forms input[type="datetime"], +.forms input[type="date"], +.forms input[type="month"], +.forms input[type="color"], +.forms input[type="time"], +.forms input[type="search"], +.forms input[type="range"], +.forms input[type="file"], +.forms input[type="datetime-local"], +.forms textarea, +.forms select { + display: block; +} +.forms-inline input[type="text"], +.forms-inline-list input[type="text"], +.forms-inline input[type="password"], +.forms-inline-list input[type="password"], +.forms-inline input[type="email"], +.forms-inline-list input[type="email"], +.forms-inline input[type="url"], +.forms-inline-list input[type="url"], +.forms-inline input[type="phone"], +.forms-inline-list input[type="phone"], +.forms-inline input[type="tel"], +.forms-inline-list input[type="tel"], +.forms-inline input[type="number"], +.forms-inline-list input[type="number"], +.forms-inline input[type="datetime"], +.forms-inline-list input[type="datetime"], +.forms-inline input[type="date"], +.forms-inline-list input[type="date"], +.forms-inline input[type="month"], +.forms-inline-list input[type="month"], +.forms-inline input[type="color"], +.forms-inline-list input[type="color"], +.forms-inline input[type="time"], +.forms-inline-list input[type="time"], +.forms-inline input[type="search"], +.forms-inline-list input[type="search"], +.forms-inline input[type="range"], +.forms-inline-list input[type="range"], +.forms-inline input[type="file"], +.forms-inline-list input[type="file"], +.forms-inline input[type="datetime-local"], +.forms-inline-list input[type="datetime-local"], +.forms-inline textarea, +.forms-inline-list textarea, +.forms-inline select, +.forms-inline-list select { + display: inline-block; +} +.forms-list, +.forms-inline, +.forms-inline-list { + margin: 0; + padding: 0; + margin-bottom: 1.0999999999999999em; + list-style: none; +} +.forms-list label, +.forms-inline label, +.forms-inline-list li, +.forms-inline-list li label { + display: inline-block; + margin-bottom: 0; +} +.forms-inline-list li label { + margin-right: 0.825em; +} +.forms-inline-list li { + margin-bottom: 3px; +} +.forms-list li { + margin-bottom: 6px; +} +.forms-desc { + margin-top: 4px; + color: rgba(0, 0, 0, 0.4); + font-size: 12.75px; + line-height: 1.4em; +} +input[type="text"], +input[type="password"], +input[type="email"], +input[type="url"], +input[type="phone"], +input[type="tel"], +input[type="number"], +input[type="datetime"], +input[type="date"], +input[type="month"], +input[type="color"], +input[type="time"], +input[type="search"], +input[type="datetime-local"], +textarea { + -moz-transition: border ease 0.5s; + transition: border ease 0.5s; +} +/* States */ +.error, +.success { + font-weight: normal; + font-size: 12.75px; +} +input.input-error, +textarea.input-error, +select.input-error, +.input-error { + border-color: #de2c3b; + box-shadow: 0 0 0 2px rgba(222, 44, 59, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset; +} +input.input-success, +textarea.input-success, +select.input-success, +.input-success { + border-color: #2c9f42; + box-shadow: 0 0 0 2px rgba(44, 159, 66, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset; +} +input.input-gray, +textarea.input-gray, +select.input-gray, +.input-gray { + border-color: #b3b6b7; + box-shadow: 0 0 0 2px rgba(179, 182, 183, 0.4), 0 1px 2px rgba(0, 0, 0, 0.2) inset; +} +input[type="text"]:focus, +input[type="password"]:focus, +input[type="email"]:focus, +input[type="url"]:focus, +input[type="phone"]:focus, +input[type="tel"]:focus, +input[type="number"]:focus, +input[type="datetime"]:focus, +input[type="date"]:focus, +input[type="month"]:focus, +input[type="color"]:focus, +input[type="time"]:focus, +input[type="search"]:focus, +input[type="datetime-local"]:focus, +textarea:focus { + outline: none; + border-color: #2575ed; + box-shadow: 0 0 0 2px rgba(37, 117, 237, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2) inset; +} +/* + Search +*/ +input.input-search, +input[type="search"] { + padding-right: .5em; + padding-left: .5em; + margin-bottom: 0; + border-radius: 15px; +} +input.input-on-black { + border: 1px solid rgba(255, 255, 255, 0.1); + background: rgba(255, 255, 255, 0.35); +} +input.input-on-black::-webkit-input-placeholder { + color: rgba(255, 255, 255, 0.6); +} +input.input-on-black::-moz-placeholder { + color: rgba(255, 255, 255, 0.6); +} +input.input-on-black:focus, +input.input-on-black.active { + border: 1px solid #fff; + background: #fff; + box-shadow: none; +} +input.input-on-black:focus::-webkit-input-placeholder, +input.input-on-black.active::-webkit-input-placeholder { + color: #aaa; +} +input.input-on-black:focus::-moz-placeholder, +input.input-on-black.active::-moz-placeholder { + color: #aaa; +} +/* Sizes */ +input.input-big { + font-size: 18px; +} +input.input-small { + font-size: 12.75px; +} +input.input-smaller { + font-size: 11.25px; +} +/* Append & Prepend */ +.input-groups { + display: table !important; +} +.input-groups input { + width: 100%; +} +.input-groups input, +.input-groups .input-append, +.input-groups .input-prepend, +.input-groups .btn-append { + display: table-cell !important; +} +.input-groups .btn-append, +.input-groups .input-append, +.input-groups .input-prepend { + width: 1%; + vertical-align: middle; +} +.input-groups .input-append, +.input-groups .input-prepend { + background-color: #f4f4f4; + border: 1px solid #d4d4d4; + margin: 0; + padding: .45em .75em .15em .75em; + color: rgba(0, 0, 0, 0.6); + line-height: 1.65em; + font-size: 12.75px; + white-space: nowrap; +} +.input-groups .input-prepend { + border-right: none; +} +.input-groups .input-append { + position: relative; + z-index: 1; + border-left: none; +} +.input-groups .btn-append .btn { + display: block; + height: auto; + border-radius: 0 2px 2px 0; +} +/* =Navs +-----------------------------------------------------------------------------*/ +/* NavBar */ +.navbar { + font-size: 105%; + margin-bottom: 1.65em; +} +.navbar:after { + content: ""; + display: table; + clear: both; +} +.navbar:after { + content: ""; + display: table; + clear: both; +} +.navbar.navbar-left { + float: left; +} +.navbar.navbar-right { + float: right; +} +.navbar ul { + list-style: none; + margin: 0; +} +.navbar ul:after { + content: ""; + display: table; + clear: both; +} +.navbar ul:after { + content: ""; + display: table; + clear: both; +} +.navbar li { + float: left; + margin-right: 1.65em; +} +.navbar.navbar-right li { + margin-right: 0; + margin-left: 1.65em; +} +.navbar a, +.navbar span { + display: block; + text-decoration: none; +} +.navbar a:hover { + color: #de2c3b; + text-decoration: underline; +} +.navbar li.active a, +.navbar span { + text-decoration: none; + cursor: text; + color: rgba(0, 0, 0, 0.4); +} +.navigation-toggle { + display: none; + text-transform: uppercase; + position: relative; + color: #0f0f0f; + background-color: #ffffff; +} +.navigation-toggle:after { + position: absolute; + z-index: 1; + top: 50%; + margin-top: -12px; + left: 10px; + content: "\2630"; + font-size: 24px; + line-height: 1; +} +.navigation-toggle.navigation-toggle-black { + background-color: #0f0f0f; + color: #ffffff; +} +.navigation-toggle.navigation-toggle-show { + margin-bottom: 1.65em; +} +.navigation-toggle span { + position: relative; + z-index: 2; + cursor: pointer; + display: block; + padding: 10px 20px 10px 40px; +} +.navigation-fixed { + position: fixed; + top: 0; + left: 0; + z-index: 101; +} +/* Pills */ +.navbar-pills a, +.navbar-pills span { + padding: 0.825em 1.65em; +} +.navbar-pills a:hover { + color: #0f0f0f; + background: #eee; +} +.navbar-pills li.active a, +.navbar-pills span { + text-decoration: none; + cursor: text; + color: rgba(0, 0, 0, 0.4); + background: #eee; +} +.navbar-pills li { + margin-right: 1px; +} +.navbar-pills.navbar-right li { + margin-left: 1px; +} +/* Fullwidth */ +.fullwidth ul { + width: 100%; +} +.fullwidth li { + float: none !important; + margin: 0; + display: table-cell; + width: 1%; + text-align: center; +} +.fullwidth li a, +.fullwidth li span { + display: block; +} +/* Vertical */ +.nav { + margin-bottom: 1.65em; +} +.nav ul { + list-style: none; + margin: 0; +} +.nav ul li ul { + margin-left: 2em; + font-size: .95em; +} +.nav a, +.nav span { + display: block; + padding: .5em 0; +} +.nav a { + color: #0f0f0f; + text-decoration: none; +} +.nav a:hover { + color: #de2c3b; + text-decoration: underline; +} +.nav li.active a, +.nav span { + text-decoration: none; + cursor: text; + color: rgba(0, 0, 0, 0.4); +} +.nav i.fa { + width: 1.65em; +} +/* Stacked */ +.nav-stacked li { + margin-bottom: 1px; +} +.nav-stacked a, +.nav-stacked span { + padding: .6em .7em; +} +.nav-stacked a { + background: #f6f6f6; +} +.nav-stacked a:hover { + color: #000; + background: #eee; +} +.nav-stacked li.active a, +.nav-stacked span { + background: #ffffff; + text-decoration: none; + cursor: text; + color: rgba(0, 0, 0, 0.3); +} +/* Stats */ +.nav-stats li { + position: relative; +} +.nav-stats a, +.nav-stats span { + padding-right: 50px; +} +.nav-stats sup, +.nav-stats .badge { + position: absolute; + top: 50%; + right: 0; +} +.nav-stats sup { + color: rgba(0, 0, 0, 0.4); +} +.nav-stats .badge { + margin-top: -8px; +} +/* =Tabs +-----------------------------------------------------------------------------*/ +.nav-tabs { + border-bottom: 1px solid #e3e3e3; + margin-bottom: 1.65em; +} +.nav-tabs:after { + content: ""; + display: table; + clear: both; +} +.nav-tabs:after { + content: ""; + display: table; + clear: both; +} +.nav-tabs ul { + list-style: none; + margin: 0; +} +.nav-tabs li { + float: left; + margin-right: 2px; +} +.nav-tabs a, +.nav-tabs span { + display: block; + line-height: 1; + padding: 0.825em 1.65em; + border: 1px solid transparent; +} +.nav-tabs a { + color: rgba(0, 0, 0, 0.5); + text-decoration: none; +} +.nav-tabs a:focus, +.nav-tabs a:hover { + color: #0f0f0f; + text-decoration: underline; + background-color: #eee; +} +.nav-tabs li.active a, +.nav-tabs span { + color: #0f0f0f; + background: #fff; + position: relative; + border: 1px solid #ddd; + border-bottom: 1px solid #fff; + bottom: -1px; + cursor: default; + text-decoration: none; +} +/* =Breadcrumbs +-----------------------------------------------------------------------------*/ +.breadcrumbs { + margin-bottom: 1.65em; +} +.breadcrumbs:after { + content: ""; + display: table; + clear: both; +} +.breadcrumbs:after { + content: ""; + display: table; + clear: both; +} +.breadcrumbs ul { + font-size: .9em; + color: rgba(0, 0, 0, 0.4); + list-style: none; + margin: 0; +} +.breadcrumbs ul:after { + content: ""; + display: table; + clear: both; +} +.breadcrumbs ul:after { + content: ""; + display: table; + clear: both; +} +.breadcrumbs li { + float: left; + margin-right: 5px; +} +.breadcrumbs li + li:before { + content: " > "; + color: #aaa; + font-size: 12px; + margin: 0 7px 0 5px; + position: relative; + top: -1px; +} +.breadcrumbs.breadcrumbs-path li + li:before { + content: " / "; + top: 0; +} +.breadcrumbs a { + color: #0f0f0f; + text-decoration: none; +} +.breadcrumbs a:hover { + color: #0f0f0f; + text-decoration: underline; +} +.breadcrumbs li.active a, +.breadcrumbs span, +.breadcrumbs li.active a:hover { + text-decoration: none; + cursor: text; + color: rgba(0, 0, 0, 0.4); +} +/* =Pagination +-----------------------------------------------------------------------------*/ +.pagination { + position: relative; + left: -9px; + margin-left: 0; + list-style: none; +} +.pagination:after { + content: ""; + display: table; + clear: both; +} +.pagination:after { + content: ""; + display: table; + clear: both; +} +.pagination li { + float: left; + margin-right: 2px; +} +.pagination a, +.pagination span { + display: block; + padding: 7px 9px; + line-height: 1; + border-radius: 2px; + color: #0f0f0f; + text-decoration: none; +} +.pagination span, +.pagination li.active a, +.pagination li.active a:hover { + color: #ffffff; + background-color: #0f0f0f; + cursor: text; +} +.pagination a:focus, +.pagination a:hover { + text-decoration: none; + background-color: #0f0f0f; + color: #fff; +} +/* =Buttons +-----------------------------------------------------------------------------*/ +.btn, +input[type="submit"].btn { + display: inline-block; + vertical-align: top; + font-family: "Helvetica Neue", Helvetica, Tahoma, sans-serif; + font-size: 1em; + font-weight: 400; + line-height: 1.65em; + text-align: center; + text-decoration: none; + color: #222222; + -webkit-appearance: none; + outline: none; + margin: 0; + border: none; + border-radius: 2px; + box-shadow: none; + cursor: pointer; + background: #e0e3e5; + padding: 0.55em 2.5em; +} +.btn:hover, +input[type="submit"].btn:hover { + color: rgba(0, 0, 0, 0.5); + background: #b3b6b7; +} +.btn::-moz-focus-inner { + border: 0; + padding: 0; +} +.btn-big, +input[type="submit"].btn-big { + font-size: 18px; +} +.btn-small, +input[type="submit"].btn-small { + font-size: 12.75px; +} +.btn-smaller, +input[type="submit"].btn-smaller { + font-size: 11.25px; + vertical-align: baseline; +} +.btn-round { + border-radius: 15px; +} +.btn-outline, +input[type="submit"].btn-outline { + background: none; + padding: 0.48750000000000004em 2.5em; + border: 1px solid #0f0f0f; +} +.btn-outline:hover, +input[type="submit"].btn-outline:hover { + border-color: #b3b6b7; +} +.btn-outline.btn-active { + padding: 0.55em 2.5em; +} +.btn-outline.bold { + border-width: 2px; + padding: 0.42500000000000004em 2.5em; +} +.btn-active, +.btn[disabled], +.btn-disabled { + background: none; + background: #b3b6b7; + color: rgba(0, 0, 0, 0.5); +} +.btn-active:hover, +.btn[disabled]:hover, +.btn-disabled:hover { + color: rgba(0, 0, 0, 0.5); + background: #b3b6b7; +} +.btn-active { + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4) inset; +} +.btn-outline.btn[disabled], +.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(0, 0, 0, 0.3); + border: 1px solid rgba(0, 0, 0, 0.1); +} +.btn-outline.btn-active { + background: none; + color: rgba(0, 0, 0, 0.4); + border: none; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset; +} +.btn[disabled], +.btn-disabled { + cursor: default; + box-shadow: none; +} +.btn-blue, +input[type="submit"].btn-blue { + color: rgba(255, 255, 255, 0.9); + background: #2575ed; +} +.btn-blue:hover, +input[type="submit"].btn-blue:hover { + color: rgba(255, 255, 255, 0.6); + background: #1a52a5; +} +.btn-blue.btn-active, +input[type="submit"].btn-blue.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; +} +.btn-blue.btn-active, +input[type="submit"].btn-blue.btn-active, +.btn-blue.btn-disabled, +input[type="submit"].btn-blue.btn-disabled, +.btn-blue.btn[disabled], +input[type="submit"].btn-blue.btn[disabled] { + color: rgba(255, 255, 255, 0.5); + background: #1a52a5; +} +.btn-blue.btn-active:hover, +input[type="submit"].btn-blue.btn-active:hover, +.btn-blue.btn-disabled:hover, +input[type="submit"].btn-blue.btn-disabled:hover, +.btn-blue.btn[disabled]:hover, +input[type="submit"].btn-blue.btn[disabled]:hover { + color: rgba(255, 255, 255, 0.5); +} +.btn-blue.btn-outline, +input[type="submit"].btn-blue.btn-outline { + background: none; + border-color: #2575ed; + color: #2575ed; +} +.btn-blue.btn-outline:hover, +input[type="submit"].btn-blue.btn-outline:hover { + color: rgba(255, 255, 255, 0.9); + background: #2575ed; +} +.btn-blue.btn-outline.btn[disabled], +input[type="submit"].btn-blue.btn-outline.btn[disabled], +.btn-blue.btn-outline.btn-disabled, +input[type="submit"].btn-blue.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(37, 117, 237, 0.4); + border: 1px solid rgba(37, 117, 237, 0.3); +} +.btn-blue.btn-outline.btn-active, +input[type="submit"].btn-blue.btn-outline.btn-active { + background: none; + color: rgba(37, 117, 237, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(26, 82, 165, 0.6) inset; +} +.btn-blue:hover, +input[type="submit"].btn-blue:hover { + color: rgba(255, 255, 255, 0.6); + background: #1a52a5; +} +.btn-blue.btn-active, +input[type="submit"].btn-blue.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; +} +.btn-blue.btn-active, +input[type="submit"].btn-blue.btn-active, +.btn-blue.btn-disabled, +input[type="submit"].btn-blue.btn-disabled, +.btn-blue.btn[disabled], +input[type="submit"].btn-blue.btn[disabled] { + color: rgba(255, 255, 255, 0.5); + background: #1a52a5; +} +.btn-blue.btn-active:hover, +input[type="submit"].btn-blue.btn-active:hover, +.btn-blue.btn-disabled:hover, +input[type="submit"].btn-blue.btn-disabled:hover, +.btn-blue.btn[disabled]:hover, +input[type="submit"].btn-blue.btn[disabled]:hover { + color: rgba(255, 255, 255, 0.5); +} +.btn-blue.btn-outline, +input[type="submit"].btn-blue.btn-outline { + background: none; + border-color: #2575ed; + color: #2575ed; +} +.btn-blue.btn-outline:hover, +input[type="submit"].btn-blue.btn-outline:hover { + color: rgba(255, 255, 255, 0.9); + background: #2575ed; +} +.btn-blue.btn-outline.btn[disabled], +input[type="submit"].btn-blue.btn-outline.btn[disabled], +.btn-blue.btn-outline.btn-disabled, +input[type="submit"].btn-blue.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(37, 117, 237, 0.4); + border: 1px solid rgba(37, 117, 237, 0.3); +} +.btn-blue.btn-outline.btn-active, +input[type="submit"].btn-blue.btn-outline.btn-active { + background: none; + color: rgba(37, 117, 237, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(26, 82, 165, 0.6) inset; +} +.btn-red, +input[type="submit"].btn-red { + color: rgba(255, 255, 255, 0.9); + background: #de2c3b; +} +.btn-red:hover, +input[type="submit"].btn-red:hover { + color: rgba(255, 255, 255, 0.6); + background: #b2232f; +} +.btn-red.btn-active, +input[type="submit"].btn-red.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; +} +.btn-red.btn-active, +input[type="submit"].btn-red.btn-active, +.btn-red.btn-disabled, +input[type="submit"].btn-red.btn-disabled, +.btn-red.btn[disabled], +input[type="submit"].btn-red.btn[disabled] { + color: rgba(255, 255, 255, 0.5); + background: #b2232f; +} +.btn-red.btn-active:hover, +input[type="submit"].btn-red.btn-active:hover, +.btn-red.btn-disabled:hover, +input[type="submit"].btn-red.btn-disabled:hover, +.btn-red.btn[disabled]:hover, +input[type="submit"].btn-red.btn[disabled]:hover { + color: rgba(255, 255, 255, 0.5); +} +.btn-red.btn-outline, +input[type="submit"].btn-red.btn-outline { + background: none; + border-color: #de2c3b; + color: #de2c3b; +} +.btn-red.btn-outline:hover, +input[type="submit"].btn-red.btn-outline:hover { + color: rgba(255, 255, 255, 0.9); + background: #de2c3b; +} +.btn-red.btn-outline.btn[disabled], +input[type="submit"].btn-red.btn-outline.btn[disabled], +.btn-red.btn-outline.btn-disabled, +input[type="submit"].btn-red.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(222, 44, 59, 0.4); + border: 1px solid rgba(222, 44, 59, 0.3); +} +.btn-red.btn-outline.btn-active, +input[type="submit"].btn-red.btn-outline.btn-active { + background: none; + color: rgba(222, 44, 59, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(178, 35, 47, 0.6) inset; +} +.btn-red:hover, +input[type="submit"].btn-red:hover { + color: rgba(255, 255, 255, 0.6); + background: #b2232f; +} +.btn-red.btn-active, +input[type="submit"].btn-red.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; +} +.btn-red.btn-active, +input[type="submit"].btn-red.btn-active, +.btn-red.btn-disabled, +input[type="submit"].btn-red.btn-disabled, +.btn-red.btn[disabled], +input[type="submit"].btn-red.btn[disabled] { + color: rgba(255, 255, 255, 0.5); + background: #b2232f; +} +.btn-red.btn-active:hover, +input[type="submit"].btn-red.btn-active:hover, +.btn-red.btn-disabled:hover, +input[type="submit"].btn-red.btn-disabled:hover, +.btn-red.btn[disabled]:hover, +input[type="submit"].btn-red.btn[disabled]:hover { + color: rgba(255, 255, 255, 0.5); +} +.btn-red.btn-outline, +input[type="submit"].btn-red.btn-outline { + background: none; + border-color: #de2c3b; + color: #de2c3b; +} +.btn-red.btn-outline:hover, +input[type="submit"].btn-red.btn-outline:hover { + color: rgba(255, 255, 255, 0.9); + background: #de2c3b; +} +.btn-red.btn-outline.btn[disabled], +input[type="submit"].btn-red.btn-outline.btn[disabled], +.btn-red.btn-outline.btn-disabled, +input[type="submit"].btn-red.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(222, 44, 59, 0.4); + border: 1px solid rgba(222, 44, 59, 0.3); +} +.btn-red.btn-outline.btn-active, +input[type="submit"].btn-red.btn-outline.btn-active { + background: none; + color: rgba(222, 44, 59, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(178, 35, 47, 0.6) inset; +} +.btn-green, +input[type="submit"].btn-green { + color: rgba(255, 255, 255, 0.9); + background: #2c9f42; +} +.btn-green:hover, +input[type="submit"].btn-green:hover { + color: rgba(255, 255, 255, 0.6); + background: #237f35; +} +.btn-green.btn-active, +input[type="submit"].btn-green.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; +} +.btn-green.btn-active, +input[type="submit"].btn-green.btn-active, +.btn-green.btn-disabled, +input[type="submit"].btn-green.btn-disabled, +.btn-green.btn[disabled], +input[type="submit"].btn-green.btn[disabled] { + color: rgba(255, 255, 255, 0.5); + background: #237f35; +} +.btn-green.btn-active:hover, +input[type="submit"].btn-green.btn-active:hover, +.btn-green.btn-disabled:hover, +input[type="submit"].btn-green.btn-disabled:hover, +.btn-green.btn[disabled]:hover, +input[type="submit"].btn-green.btn[disabled]:hover { + color: rgba(255, 255, 255, 0.5); +} +.btn-green.btn-outline, +input[type="submit"].btn-green.btn-outline { + background: none; + border-color: #2c9f42; + color: #2c9f42; +} +.btn-green.btn-outline:hover, +input[type="submit"].btn-green.btn-outline:hover { + color: rgba(255, 255, 255, 0.9); + background: #2c9f42; +} +.btn-green.btn-outline.btn[disabled], +input[type="submit"].btn-green.btn-outline.btn[disabled], +.btn-green.btn-outline.btn-disabled, +input[type="submit"].btn-green.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(44, 159, 66, 0.4); + border: 1px solid rgba(44, 159, 66, 0.3); +} +.btn-green.btn-outline.btn-active, +input[type="submit"].btn-green.btn-outline.btn-active { + background: none; + color: rgba(44, 159, 66, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(35, 127, 53, 0.6) inset; +} +.btn-green:hover, +input[type="submit"].btn-green:hover { + color: rgba(255, 255, 255, 0.6); + background: #237f35; +} +.btn-green.btn-active, +input[type="submit"].btn-green.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; +} +.btn-green.btn-active, +input[type="submit"].btn-green.btn-active, +.btn-green.btn-disabled, +input[type="submit"].btn-green.btn-disabled, +.btn-green.btn[disabled], +input[type="submit"].btn-green.btn[disabled] { + color: rgba(255, 255, 255, 0.5); + background: #237f35; +} +.btn-green.btn-active:hover, +input[type="submit"].btn-green.btn-active:hover, +.btn-green.btn-disabled:hover, +input[type="submit"].btn-green.btn-disabled:hover, +.btn-green.btn[disabled]:hover, +input[type="submit"].btn-green.btn[disabled]:hover { + color: rgba(255, 255, 255, 0.5); +} +.btn-green.btn-outline, +input[type="submit"].btn-green.btn-outline { + background: none; + border-color: #2c9f42; + color: #2c9f42; +} +.btn-green.btn-outline:hover, +input[type="submit"].btn-green.btn-outline:hover { + color: rgba(255, 255, 255, 0.9); + background: #2c9f42; +} +.btn-green.btn-outline.btn[disabled], +input[type="submit"].btn-green.btn-outline.btn[disabled], +.btn-green.btn-outline.btn-disabled, +input[type="submit"].btn-green.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(44, 159, 66, 0.4); + border: 1px solid rgba(44, 159, 66, 0.3); +} +.btn-green.btn-outline.btn-active, +input[type="submit"].btn-green.btn-outline.btn-active { + background: none; + color: rgba(44, 159, 66, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(35, 127, 53, 0.6) inset; +} +.btn-black, +input[type="submit"].btn-black { + color: rgba(255, 255, 255, 0.9); + background: #0f0f0f; +} +.btn-black:hover, +input[type="submit"].btn-black:hover { + color: rgba(255, 255, 255, 0.6); + background: #363738; +} +.btn-black.btn-active, +input[type="submit"].btn-black.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) inset; +} +.btn-black.btn-active, +input[type="submit"].btn-black.btn-active, +.btn-black.btn-disabled, +input[type="submit"].btn-black.btn-disabled, +.btn-black.btn[disabled], +input[type="submit"].btn-black.btn[disabled] { + color: rgba(255, 255, 255, 0.5); + background: #363738; +} +.btn-black.btn-active:hover, +input[type="submit"].btn-black.btn-active:hover, +.btn-black.btn-disabled:hover, +input[type="submit"].btn-black.btn-disabled:hover, +.btn-black.btn[disabled]:hover, +input[type="submit"].btn-black.btn[disabled]:hover { + color: rgba(255, 255, 255, 0.5); +} +.btn-black.btn-outline, +input[type="submit"].btn-black.btn-outline { + background: none; + border-color: #0f0f0f; + color: #0f0f0f; +} +.btn-black.btn-outline:hover, +input[type="submit"].btn-black.btn-outline:hover { + color: rgba(255, 255, 255, 0.9); + background: #0f0f0f; +} +.btn-black.btn-outline.btn[disabled], +input[type="submit"].btn-black.btn-outline.btn[disabled], +.btn-black.btn-outline.btn-disabled, +input[type="submit"].btn-black.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(15, 15, 15, 0.4); + border: 1px solid rgba(15, 15, 15, 0.3); +} +.btn-black.btn-outline.btn-active, +input[type="submit"].btn-black.btn-outline.btn-active { + background: none; + color: rgba(15, 15, 15, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(54, 55, 56, 0.6) inset; +} +.btn-black:hover, +input[type="submit"].btn-black:hover { + color: rgba(255, 255, 255, 0.6); + background: #363738; +} +.btn-black.btn-active, +input[type="submit"].btn-black.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.7) inset; +} +.btn-black.btn-active, +input[type="submit"].btn-black.btn-active, +.btn-black.btn-disabled, +input[type="submit"].btn-black.btn-disabled, +.btn-black.btn[disabled], +input[type="submit"].btn-black.btn[disabled] { + color: rgba(255, 255, 255, 0.5); + background: #363738; +} +.btn-black.btn-active:hover, +input[type="submit"].btn-black.btn-active:hover, +.btn-black.btn-disabled:hover, +input[type="submit"].btn-black.btn-disabled:hover, +.btn-black.btn[disabled]:hover, +input[type="submit"].btn-black.btn[disabled]:hover { + color: rgba(255, 255, 255, 0.5); +} +.btn-black.btn-outline, +input[type="submit"].btn-black.btn-outline { + background: none; + border-color: #0f0f0f; + color: #0f0f0f; +} +.btn-black.btn-outline:hover, +input[type="submit"].btn-black.btn-outline:hover { + color: rgba(255, 255, 255, 0.9); + background: #0f0f0f; +} +.btn-black.btn-outline.btn[disabled], +input[type="submit"].btn-black.btn-outline.btn[disabled], +.btn-black.btn-outline.btn-disabled, +input[type="submit"].btn-black.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(15, 15, 15, 0.4); + border: 1px solid rgba(15, 15, 15, 0.3); +} +.btn-black.btn-outline.btn-active, +input[type="submit"].btn-black.btn-outline.btn-active { + background: none; + color: rgba(15, 15, 15, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(54, 55, 56, 0.6) inset; +} +.btn-yellow, +input[type="submit"].btn-yellow { + color: rgba(0, 0, 0, 0.9); + background: #ffc800; +} +.btn-yellow:hover, +input[type="submit"].btn-yellow:hover { + color: rgba(0, 0, 0, 0.6); + background: #cca000; +} +.btn-yellow.btn-active, +input[type="submit"].btn-yellow.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; +} +.btn-yellow.btn-active, +input[type="submit"].btn-yellow.btn-active, +.btn-yellow.btn-disabled, +input[type="submit"].btn-yellow.btn-disabled, +.btn-yellow.btn[disabled], +input[type="submit"].btn-yellow.btn[disabled] { + color: rgba(0, 0, 0, 0.5); + background: #cca000; +} +.btn-yellow.btn-active:hover, +input[type="submit"].btn-yellow.btn-active:hover, +.btn-yellow.btn-disabled:hover, +input[type="submit"].btn-yellow.btn-disabled:hover, +.btn-yellow.btn[disabled]:hover, +input[type="submit"].btn-yellow.btn[disabled]:hover { + color: rgba(0, 0, 0, 0.5); +} +.btn-yellow.btn-outline, +input[type="submit"].btn-yellow.btn-outline { + background: none; + border-color: #ffc800; + color: #ffc800; +} +.btn-yellow.btn-outline:hover, +input[type="submit"].btn-yellow.btn-outline:hover { + color: rgba(0, 0, 0, 0.9); + background: #ffc800; +} +.btn-yellow.btn-outline.btn[disabled], +input[type="submit"].btn-yellow.btn-outline.btn[disabled], +.btn-yellow.btn-outline.btn-disabled, +input[type="submit"].btn-yellow.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(255, 200, 0, 0.4); + border: 1px solid rgba(255, 200, 0, 0.3); +} +.btn-yellow.btn-outline.btn-active, +input[type="submit"].btn-yellow.btn-outline.btn-active { + background: none; + color: rgba(255, 200, 0, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(204, 160, 0, 0.6) inset; +} +.btn-yellow:hover, +input[type="submit"].btn-yellow:hover { + color: rgba(0, 0, 0, 0.6); + background: #cca000; +} +.btn-yellow.btn-active, +input[type="submit"].btn-yellow.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset; +} +.btn-yellow.btn-active, +input[type="submit"].btn-yellow.btn-active, +.btn-yellow.btn-disabled, +input[type="submit"].btn-yellow.btn-disabled, +.btn-yellow.btn[disabled], +input[type="submit"].btn-yellow.btn[disabled] { + color: rgba(0, 0, 0, 0.5); + background: #cca000; +} +.btn-yellow.btn-active:hover, +input[type="submit"].btn-yellow.btn-active:hover, +.btn-yellow.btn-disabled:hover, +input[type="submit"].btn-yellow.btn-disabled:hover, +.btn-yellow.btn[disabled]:hover, +input[type="submit"].btn-yellow.btn[disabled]:hover { + color: rgba(0, 0, 0, 0.5); +} +.btn-yellow.btn-outline, +input[type="submit"].btn-yellow.btn-outline { + background: none; + border-color: #ffc800; + color: #ffc800; +} +.btn-yellow.btn-outline:hover, +input[type="submit"].btn-yellow.btn-outline:hover { + color: rgba(0, 0, 0, 0.9); + background: #ffc800; +} +.btn-yellow.btn-outline.btn[disabled], +input[type="submit"].btn-yellow.btn-outline.btn[disabled], +.btn-yellow.btn-outline.btn-disabled, +input[type="submit"].btn-yellow.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(255, 200, 0, 0.4); + border: 1px solid rgba(255, 200, 0, 0.3); +} +.btn-yellow.btn-outline.btn-active, +input[type="submit"].btn-yellow.btn-outline.btn-active { + background: none; + color: rgba(255, 200, 0, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(204, 160, 0, 0.6) inset; +} +.btn-white, +input[type="submit"].btn-white { + color: rgba(0, 0, 0, 0.9); + background: #ffffff; +} +.btn-white:hover, +input[type="submit"].btn-white:hover { + color: rgba(0, 0, 0, 0.6); + background: #ededed; +} +.btn-white.btn-active, +input[type="submit"].btn-white.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset; +} +.btn-white.btn-active, +input[type="submit"].btn-white.btn-active, +.btn-white.btn-disabled, +input[type="submit"].btn-white.btn-disabled, +.btn-white.btn[disabled], +input[type="submit"].btn-white.btn[disabled] { + color: rgba(0, 0, 0, 0.5); + background: #ededed; +} +.btn-white.btn-active:hover, +input[type="submit"].btn-white.btn-active:hover, +.btn-white.btn-disabled:hover, +input[type="submit"].btn-white.btn-disabled:hover, +.btn-white.btn[disabled]:hover, +input[type="submit"].btn-white.btn[disabled]:hover { + color: rgba(0, 0, 0, 0.5); +} +.btn-white.btn-outline, +input[type="submit"].btn-white.btn-outline { + background: none; + border-color: #ffffff; + color: #ffffff; +} +.btn-white.btn-outline:hover, +input[type="submit"].btn-white.btn-outline:hover { + color: rgba(0, 0, 0, 0.9); + background: #ffffff; +} +.btn-white.btn-outline.btn[disabled], +input[type="submit"].btn-white.btn-outline.btn[disabled], +.btn-white.btn-outline.btn-disabled, +input[type="submit"].btn-white.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(255, 255, 255, 0.4); + border: 1px solid rgba(255, 255, 255, 0.3); +} +.btn-white.btn-outline.btn-active, +input[type="submit"].btn-white.btn-outline.btn-active { + background: none; + color: rgba(255, 255, 255, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(237, 237, 237, 0.6) inset; +} +.btn-white:hover, +input[type="submit"].btn-white:hover { + color: rgba(0, 0, 0, 0.6); + background: #ededed; +} +.btn-white.btn-active, +input[type="submit"].btn-white.btn-active { + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) inset; +} +.btn-white.btn-active, +input[type="submit"].btn-white.btn-active, +.btn-white.btn-disabled, +input[type="submit"].btn-white.btn-disabled, +.btn-white.btn[disabled], +input[type="submit"].btn-white.btn[disabled] { + color: rgba(0, 0, 0, 0.5); + background: #ededed; +} +.btn-white.btn-active:hover, +input[type="submit"].btn-white.btn-active:hover, +.btn-white.btn-disabled:hover, +input[type="submit"].btn-white.btn-disabled:hover, +.btn-white.btn[disabled]:hover, +input[type="submit"].btn-white.btn[disabled]:hover { + color: rgba(0, 0, 0, 0.5); +} +.btn-white.btn-outline, +input[type="submit"].btn-white.btn-outline { + background: none; + border-color: #ffffff; + color: #ffffff; +} +.btn-white.btn-outline:hover, +input[type="submit"].btn-white.btn-outline:hover { + color: rgba(0, 0, 0, 0.9); + background: #ffffff; +} +.btn-white.btn-outline.btn[disabled], +input[type="submit"].btn-white.btn-outline.btn[disabled], +.btn-white.btn-outline.btn-disabled, +input[type="submit"].btn-white.btn-outline.btn-disabled { + background: none; + box-shadow: none; + color: rgba(255, 255, 255, 0.4); + border: 1px solid rgba(255, 255, 255, 0.3); +} +.btn-white.btn-outline.btn-active, +input[type="submit"].btn-white.btn-outline.btn-active { + background: none; + color: rgba(255, 255, 255, 0.6); + border: none; + box-shadow: 0 1px 3px rgba(237, 237, 237, 0.6) inset; +} +.btn-white.btn-outline.btn-active { + box-shadow: none; + border: 1px solid rgba(255, 255, 255, 0.3); + padding: 0.48750000000000004em 2.5em; +} +/* + Buttons Group +*/ +.btn-single, +.btn-group { + display: inline-block; + margin-right: 2px; + vertical-align: bottom; +} +.btn-single:after, +.btn-group:after { + content: ""; + display: table; + clear: both; +} +.btn-single:after, +.btn-group:after { + content: ""; + display: table; + clear: both; +} +.btn-single > .btn, +.btn-single > input, +.btn-group > .btn, +.btn-group > input { + float: left; + border-radius: 0; + margin-left: -1px; +} +.btn-single > .btn { + border-radius: 2px; +} +.btn-group > .btn:first-child { + border-radius: 2px 0 0 2px; +} +.btn-group > .btn:last-child { + border-radius: 0 2px 2px 0; +} +.btn-group > .btn.btn-round:first-child, +.btn-group > .input-search:first-child { + border-radius: 15px 0 0 15px; +} +.btn-group > .btn.btn-round:last-child, +.btn-group > .input-search:last-child { + border-radius: 0 15px 15px 0; +} +/* =Notifications +-----------------------------------------------------------------------------*/ +.tools-alert { + padding: 12px 15px; + background: #f7f8f8; + color: #0f0f0f; + margin-bottom: 1.65em; +} +.tools-message { + display: none; + position: fixed; + z-index: 100; + top: 10px; + right: 10px; + max-width: 350px; + line-height: 1.5; + font-size: 95%; + padding: 12px 15px; + color: #0f0f0f; + background: #e0e3e5; +} +.tools-message ul { + margin: 0; + list-style: none; +} +.tools-message-black, +.tools-message-blue, +.tools-message-red, +.tools-message-green { + color: rgba(255, 255, 255, 0.95); +} +.tools-message-black { + background: #0f0f0f; +} +.tools-message-blue { + background: #2575ed; +} +.tools-message-red { + background: #de2c3b; +} +.tools-message-yellow { + background: #ffc800; +} +.tools-message-green { + background: #2c9f42; +} +.tools-alert-black { + background: #dadada; +} +.tools-alert-blue { + background: #d3e3fb; +} +.tools-alert-red { + background: #f8d5d8; +} +.tools-alert-yellow { + background: #fff4cc; +} +.tools-alert-green { + background: #d5ecd9; +} +/* =Labels +-----------------------------------------------------------------------------*/ +.label, +.badge { + background: #e0e3e5; + font-size: 12.75px; + display: inline-block; + line-height: 1; + padding: 4px 7px 3px 7px; + color: #0f0f0f; + text-align: center; + font-weight: normal; + text-transform: uppercase; +} +.label-outline { + background: none; + border: 1px solid #0f0f0f; + padding: 3px 6px 2px 6px; +} +.badge { + border-radius: 15px; +} +.badge-small { + font-size: 11.25px; + padding: 3px 5px; +} +.label-black, +.label-blue, +.label-red, +.label-green, +.badge-black, +.badge-blue, +.badge-red, +.badge-green { + color: #ffffff; +} +.label-black, +.badge-black { + background: #0f0f0f; +} +.label-blue, +.badge-blue { + background: #2575ed; +} +.label-red, +.badge-red { + background: #de2c3b; +} +.label-green, +.badge-green { + background: #2c9f42; +} +.label-yellow, +.badge-yellow { + background: #ffc800; +} +.label-white, +.badge-white { + background: #ffffff; +} +.label-black.label-outline, +.label-blue.label-outline, +.label-red.label-outline, +.label-green.label-outline, +.label-yellow.label-outline, +.label-white.label-outline { + background: none; + color: #0f0f0f; +} +.label-blue.label-outline { + border-color: #2575ed; + color: #2575ed; +} +.label-red.label-outline { + border-color: #de2c3b; + color: #de2c3b; +} +.label-green.label-outline { + border-color: #2c9f42; + color: #2c9f42; +} +.label-yellow.label-outline { + border-color: #ffc800; + color: #ffc800; +} +.label-white.label-outline { + border-color: #ffffff; + color: #ffffff; +} +/* =Progress +-----------------------------------------------------------------------------*/ +#tools-progress { + position: fixed; + top: 0; + left: 0; + width: 100%; + z-index: 1000000; + height: 10px; +} +#tools-progress span { + display: block; + width: 100%; + height: 100%; + background-color: #1a52a5; + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent); + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; + background-size: 40px 40px; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +/* =Accordion +-----------------------------------------------------------------------------*/ +.accordion-title { + position: relative; + display: block; + margin: 0; + margin-bottom: 2px; + padding: 12px 50px 12px 18px; + color: #000; + text-decoration: none; + font-weight: normal; + font-size: 0.9375em; + line-height: 1,4em; + background: #f7f8f8; + cursor: pointer; + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.accordion-title.accordion-title-opened { + margin-bottom: 0; + font-weight: bold; + background: #f0f1f2; +} +.accordion-title a, +.accordion-title:hover { + color: #000; + text-decoration: none; +} +.accordion-panel { + padding: 1.65em; + margin-bottom: 10px; +} +.accordion-toggle { + position: absolute; + top: 50%; + margin-top: -8px; + right: 20px; + padding: 0; + font-size: 0; + line-height: 1; +} +.accordion-toggle-closed { + background: #000; + width: 1px; + height: 15px; + margin-left: 1px; +} +.accordion-toggle-closed:before { + position: absolute; + top: 7px; + left: -7px; + content: ""; + width: 15px; + height: 1px; + background: #000; +} +.accordion-toggle-opened:before { + position: absolute; + top: 7px; + left: -8px; + content: ""; + width: 15px; + height: 1px; + background: #000; +} +/* =Filterbox +-----------------------------------------------------------------------------*/ +.filterbox { + position: relative; +} +.filterbox input { + padding-right: 30px; +} +.filterbox span { + position: absolute; + z-index: 2; + top: 0; + right: 1px; + width: 26px; + height: 100%; + cursor: pointer; +} +.filterbox span:after { + content: ""; + display: inline-block; + position: relative; + top: 50%; + margin-left: 8px; + margin-top: -21px; + width: 0; + height: 0; + vertical-align: middle; + border-top: 5px solid rgba(0, 0, 0, 0.6); + border-right: 5px solid transparent; + border-left: 5px solid transparent; +} +.filterbox-list { + z-index: 1000; + position: absolute; + left: 0; + display: none; + margin: 0; + list-style: none; + background: #fff; + width: 100%; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); + max-height: 250px; + overflow: auto; +} +.filterbox-list li { + padding: 4px 10px; + color: #000; + cursor: pointer; +} +.filterbox-list li:hover { + background: #f0f1f2; +} +.filterbox-list li.active { + background: #2575ed; + color: #fff; +} +/* =Tooltip +-----------------------------------------------------------------------------*/ +.tooltip { + position: absolute; + z-index: 10000; + display: inline-block; + color: #fff; + padding: 2px 10px; + font-size: 12.75px; + line-height: 1.5em; + max-width: 250px; + background: #0f0f0f; +} +.tooltip-theme-red { + background: #de2c3b; +} +.tooltip-theme-blue { + background: #2575ed; +} +.tooltip-theme-green { + background: #2c9f42; +} +.tooltip-theme-yellow { + background: #ffc800; +} +.tooltip-theme-white { + background: #ffffff; +} +.tooltip-theme-yellow, +.tooltip-theme-white { + color: #000; +} +/* =Dropdown +-----------------------------------------------------------------------------*/ +.dropdown { + display: none; + position: absolute; + z-index: 102; + top: 0; + right: 0; + width: 250px; + color: #0f0f0f; + background: #ffffff; + box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3); + overflow: auto; +} +.dropdown section { + max-height: 250px; + overflow: auto; + padding: 20px; +} +.dropdown footer { + padding: 20px; +} +ul.dropdown { + max-height: 300px; + list-style: none; + margin: 0; + line-height: 1.5; + font-size: 95%; + padding: 0; +} +ul.dropdown a { + display: block; + padding: 7px 15px; + text-decoration: none; + color: #0f0f0f; +} +ul.dropdown a:hover { + background: #eee; +} +ul.dropdown li.divider { + border-bottom: 1px solid #e2e2e2; +} +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: .3em; + vertical-align: middle; + border-top: 5px solid; + border-right: 5px solid transparent; + border-left: 5px solid transparent; +} +.caret.caret-up { + border-top: 0; + border-bottom: 4px solid; +} +/* =Livesearch +-----------------------------------------------------------------------------*/ +.livesearch-box { + position: relative; + display: inline-block; + width: 100%; +} +.livesearch-box input { + padding-left: 30px; +} +.livesearch-box .close { + position: absolute; + top: .2em; + right: 5px; + z-index: 2; + padding: 4px 6px; + line-height: 1; + font-size: 20px; + cursor: pointer; + color: #000000; + text-decoration: none; + filter: alpha(opacity=50); + -moz-opacity: 0.5; + opacity: 0.5; +} +.livesearch-box .close:before { + content: '\00D7'; +} +.livesearch-box .close:hover { + filter: alpha(opacity=100); + -moz-opacity: 1; + opacity: 1; +} +.livesearch-box .close:before { + content: '\00D7'; +} +.livesearch-box .close:hover { + filter: alpha(opacity=100); + -moz-opacity: 1; + opacity: 1; +} +.livesearch-icon { + position: absolute; + top: 53%; + left: 10px; + z-index: 2; +} +.livesearch-icon:before, +.livesearch-icon:after { + content: ""; + position: absolute; + top: 50%; + left: 0; + margin: -8px 0 0; + background: rgba(0, 0, 0, 0.5); +} +.livesearch-icon:before { + width: 10px; + height: 10px; + border: 2px solid rgba(0, 0, 0, 0.5); + background: transparent; + border-radius: 12px; +} +.livesearch-icon:after { + left: 10px; + width: 2px; + height: 7px; + margin-top: 0; + -webkit-transform: rotate(-45deg); + -moz-transform: rotate(-45deg); + -ms-transform: rotate(-45deg); + -o-transform: rotate(-45deg); + transform: rotate(-45deg); +} +/* =Upload +-----------------------------------------------------------------------------*/ +.tools-droparea { + position: relative; + overflow: hidden; + padding: 80px 20px; + border: 3px dashed rgba(0, 0, 0, 0.1); +} +.tools-droparea.drag-hover { + background: rgba(200, 222, 250, 0.75); +} +.tools-droparea.drag-drop { + background: rgba(250, 248, 200, 0.5); +} +.tools-droparea-placeholder { + text-align: center; + font-size: 11px; + color: rgba(0, 0, 0, 0.5); +} +/* =Autocomplete +-----------------------------------------------------------------------------*/ +.autocomplete { + position: absolute; + z-index: 1000; + left: 0; + display: none; + margin: 0; + list-style: none; + background: #fff; + width: 250px; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); + max-height: 250px; + overflow: auto; +} +.autocomplete a { + padding: 4px 10px; + color: #000; + display: block; + text-decoration: none; +} +.autocomplete a:hover { + background: #f0f1f2; +} +.autocomplete a.active { + background: #2575ed; + color: #fff; +} +/* =Modal +-----------------------------------------------------------------------------*/ +#modal-overlay { + position: fixed; + top: 0; + left: 0; + margin: auto; + overflow: auto; + width: 100%; + height: 100%; + background-color: #000 !important; + filter: alpha(opacity=30); + -moz-opacity: 0.3; + opacity: 0.3; + z-index: 100; +} +.modal-blur { + -webkit-filter: blur(3px); + -moz-filter: blur(3px); + -ms-filter: blur(3px); + filter: blur(3px); +} +.modal-box { + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + overflow-x: hidden; + overflow-y: auto; + z-index: 101; +} +.modal { + position: relative; + margin: auto; + margin-bottom: 20px; + padding: 0; + background: #fff; + color: #000; + box-shadow: 0 1px 70px rgba(0, 0, 0, 0.5); +} +.modal header { + padding: 30px 40px 5px 40px; + font-size: 18px; + font-weight: bold; +} +.modal section { + padding: 30px 40px 50px 40px; +} +.modal footer button { + width: 100%; + border-radius: 0; +} +.modal-close { + position: absolute; + top: 8px; + right: 12px; + width: 30px; + height: 30px; + text-align: right; + color: #bbb; + font-size: 30px; + font-weight: 300; + cursor: pointer; +} +.modal-close:hover { + color: #000; +} +/* =Helpers +-----------------------------------------------------------------------------*/ +.group:after { + content: ""; + display: table; + clear: both; +} +.group:after { + content: ""; + display: table; + clear: both; +} +.hide { + display: none; +} +.highlight { + background-color: #f7f3e2; +} +.big { + font-size: 18px; +} +.small { + font-size: 12.75px; +} +.smaller { + font-size: 11.25px; +} +.nowrap, +.nowrap td { + white-space: nowrap; +} +.req, +.required { + font-weight: normal; + color: #de2c3b; +} +.error { + color: #de2c3b; +} +.success { + color: #2c9f42; +} +.text-centered { + text-align: center; +} +.text-right { + text-align: right; +} +.last { + margin-right: 0 !important; +} +.pause { + margin-bottom: 0.825em !important; +} +.end { + margin-bottom: 0 !important; +} +.normal { + font-weight: normal; +} +.light { + font-weight: 300; +} +.bold { + font-weight: bold; +} +.italic { + font-style: italic; +} +.left { + float: left; +} +.right { + float: right; +} +.upper { + text-transform: uppercase; +} +.list-flat { + margin-left: 0; + list-style: none; +} +.color-black { + color: #0f0f0f; +} +.color-white { + color: #ffffff; +} +/* Colors */ +.color-gray-10 { + color: rgba(0, 0, 0, 0.1); +} +.color-gray-20 { + color: rgba(0, 0, 0, 0.2); +} +.color-gray-30 { + color: rgba(0, 0, 0, 0.3); +} +.color-gray-40 { + color: rgba(0, 0, 0, 0.4); +} +.color-gray-50 { + color: rgba(0, 0, 0, 0.5); +} +.color-gray-60 { + color: rgba(0, 0, 0, 0.6); +} +.color-gray-70 { + color: rgba(0, 0, 0, 0.7); +} +.color-gray-80 { + color: rgba(0, 0, 0, 0.8); +} +.color-gray-90 { + color: rgba(0, 0, 0, 0.9); +} +.color-white-10 { + color: rgba(255, 255, 255, 0.1); +} +.color-white-20 { + color: rgba(255, 255, 255, 0.2); +} +.color-white-30 { + color: rgba(255, 255, 255, 0.3); +} +.color-white-40 { + color: rgba(255, 255, 255, 0.4); +} +.color-white-50 { + color: rgba(255, 255, 255, 0.5); +} +.color-white-60 { + color: rgba(255, 255, 255, 0.6); +} +.color-white-70 { + color: rgba(255, 255, 255, 0.7); +} +.color-white-80 { + color: rgba(255, 255, 255, 0.8); +} +.color-white-90 { + color: rgba(255, 255, 255, 0.9); +} +/* Responsive embedded objects */ +.video-wrapper { + height: 0; + padding-bottom: 56.25%; + position: relative; + margin-bottom: 1.65em; +} +.video-wrapper iframe, +.video-wrapper object, +.video-wrapper embed { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +/* =Responsive +-----------------------------------------------------------------------------*/ +@media only screen and (max-width: 767px) { + .left, + .right { + float: none; + } + .hide-on-mobile { + display: none; + } +} +/* string content */ +.str { + color: #dd1144; +} +/* a keyword */ +.kwd { + color: #333333; +} +/* a comment */ +.com { + color: #999988; +} +/* a type name */ +.typ { + color: #445588; +} +/* a literal value */ +.lit { + color: #445588; +} +/* punctuation */ +.pun { + color: #888; +} +/* lisp open bracket */ +.opn { + color: #333333; +} +/* lisp close bracket */ +.clo { + color: #333333; +} +/* a markup tag name */ +.tag { + color: #367ac3; +} +/* a markup attribute name */ +.atn { + color: #51a7c9; +} +/* a markup attribute value */ +.atv { + color: #709c1a; +} +/* a declaration */ +.dec { + color: #666; +} +/* a variable name */ +.var { + color: teal; +} +/* a function name */ +.fun { + color: #990000; +} +.linenums ol li { + list-style-type: none; + counter-increment: list; + position: relative; +} +.linenums ol li:after { + content: counter(list); + position: absolute; + left: -3.3em; + border-right: 1px solid #e5e5e5; + padding-right: 9px; + width: 2.45em; + text-align: right; + color: rgba(0, 0, 0, 0.3); + font-size: 12px; +} +/* =Grid Responsive +-----------------------------------------------------------------------------*/ +@media only screen and (max-width: 767px) { + .mobile-width-100 { + width: 100%; + } + .units-row .unit-90, + .units-row .unit-80, + .units-row .unit-75, + .units-row .unit-70, + .units-row .unit-66, + .units-row .unit-65, + .units-row .unit-60, + .units-row .unit-50, + .units-row .unit-40, + .units-row .unit-35, + .units-row .unit-33, + .units-row .unit-30, + .units-row .unit-25, + .units-row .unit-20, + .units-row .unit-10 { + width: 100%; + float: none; + margin-left: 0; + margin-bottom: 1.65em; + } + .unit-push-90, + .unit-push-80, + .unit-push-75, + .unit-push-70, + .unit-push-66, + .unit-push-65, + .unit-push-60, + .unit-push-50, + .unit-push-40, + .unit-push-35, + .unit-push-33, + .unit-push-30, + .unit-push-25, + .unit-push-20, + .unit-push-10 { + left: 0; + } + .units-row .unit-push-right { + float: none; + } + .units-mobile-50 .unit-90, + .units-mobile-50 .unit-80, + .units-mobile-50 .unit-75, + .units-mobile-50 .unit-70, + .units-mobile-50 .unit-66, + .units-mobile-50 .unit-65, + .units-mobile-50 .unit-60, + .units-mobile-50 .unit-40, + .units-mobile-50 .unit-30, + .units-mobile-50 .unit-35, + .units-mobile-50 .unit-33, + .units-mobile-50 .unit-25, + .units-mobile-50 .unit-20, + .units-mobile-50 .unit-10 { + float: left; + margin-left: 3%; + width: 48.5%; + } + .units-mobile-50 .unit-90:first-child, + .units-mobile-50 .unit-80:first-child, + .units-mobile-50 .unit-75:first-child, + .units-mobile-50 .unit-70:first-child, + .units-mobile-50 .unit-66:first-child, + .units-mobile-50 .unit-65:first-child, + .units-mobile-50 .unit-60:first-child, + .units-mobile-50 .unit-40:first-child, + .units-mobile-50 .unit-35:first-child, + .units-mobile-50 .unit-30:first-child, + .units-mobile-50 .unit-33:first-child, + .units-mobile-50 .unit-25:first-child, + .units-mobile-50 .unit-20:first-child, + .units-mobile-50 .unit-10:first-child { + margin-left: 0; + } +} +/* =Blocks Responsive +-----------------------------------------------------------------------------*/ +@media only screen and (max-width: 767px) { + .blocks-2, + .blocks-3, + .blocks-4, + .blocks-5, + .blocks-6 { + margin-left: 0; + margin-bottom: 1.65em; + } + .blocks-2 > li, + .blocks-3 > li, + .blocks-4 > li, + .blocks-5 > li, + .blocks-6 > li { + float: none; + margin-left: 0; + width: 100%; + } + .blocks-mobile-50 > li, + .blocks-mobile-33 > li { + float: left; + margin-left: 3%; + } + .blocks-mobile-33, + .blocks-mobile-50 { + margin-left: -3%; + } + .blocks-mobile-50 > li { + width: 47%; + } + .blocks-mobile-33 > li { + width: 30.333333333333332%; + } +} +/* =Typography Responsive +-----------------------------------------------------------------------------*/ +/* Portrait tablet to landscape and desktop */ +@media (min-width: 768px) and (max-width: 979px) { + h1 { + font-size: 2.25em; + line-height: 1.125; + } + h2 { + font-size: 1.5em; + line-height: 1.25; + } + h3 { + font-size: 1.3125em; + line-height: 1.25; + } + h4 { + font-size: 1.125em; + line-height: 1.22222222; + } + h5 { + font-size: 1em; + } + h6 { + font-size: 0.75em; + } +} +/* Landscape phone to portrait tablet */ +@media (max-width: 767px) { + h1 { + font-size: 2.25em; + line-height: 1.25; + } + h2 { + font-size: 1.5em; + line-height: 1.15384615; + } + h3 { + font-size: 1.3125em; + line-height: 1.13636364; + } + h4 { + font-size: 1.125em; + line-height: 1.11111111; + } + h5 { + font-size: 1em; + } + h6 { + font-size: 0.75em; + } + .lead { + font-size: 1.2em; + } + ul, + ol, + ul ul, + ol ol, + ul ol, + ol ul { + margin-left: 1.65em; + } + blockquote { + margin-left: 0; + } +} +/* =Navigation Responsive +-----------------------------------------------------------------------------*/ +@media only screen and (max-width: 767px) { + .navbar.navbar-left, + .navbar.navbar-right, + .navbar li, + .navbar.navbar-left li, + .navbar.navbar-right li { + float: none; + text-align: left; + width: auto; + } + .navbar li, + .navbar.navbar-right li { + margin-left: 0; + margin-right: 0; + } + .fullwidth ul, + .fullwidth li { + width: auto; + } + .fullwidth li { + display: block; + } +} +/* =Forms Responsive +-----------------------------------------------------------------------------*/ +@media only screen and (max-width: 767px) { + .forms-list label { + display: inline-block; + } +} +@media print { + * { + text-shadow: none !important; + color: #000 !important; + background: transparent !important; + box-shadow: none !important; + font-size: 12pt; + } + .h1, + h1 { + font-size: 36pt; + } + .h2, + h2 { + font-size: 24pt; + } + .h3, + h3 { + font-size: 18pt; + } + .h4, + h4 { + font-size: 14pt; + } + .h5, + h5 { + font-size: 12pt; + } + .h6, + h6 { + font-size: 12pt; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + a[href^="javascript:"]:after, + a[href^="#"]:after { + content: ""; + } + pre, + blockquote { + page-break-inside: avoid; + } + blockquote { + border: none; + font-style: italic; + } + img { + max-width: 100% !important; + } + select { + background: #fff !important; + } +} diff --git a/themes/admin-kube/css/kube.min.css b/themes/admin-kube/css/kube.min.css new file mode 100644 index 00000000..57e8ad48 --- /dev/null +++ b/themes/admin-kube/css/kube.min.css @@ -0,0 +1 @@ +*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}html,body,div,span,object,iframe,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,h1,h2,h3,h4,h5,h6{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}a:active,a:hover{outline:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,embed,object,iframe,audio,video,canvas,progress,meter,output,textarea{display:block}audio:not([controls]){display:none;height:0}blockquote,q{quotes:none}blockquote p:before,blockquote p:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}caption,th,td{text-align:left;vertical-align:top}thead th,thead td{font-weight:bold;vertical-align:bottom}a img,th img,td img{vertical-align:top}button,input,select,textarea{margin:0}textarea{overflow:auto;vertical-align:top;resize:vertical}button{width:auto;overflow:visible}input[type="reset"],input[type="submit"],input[type="file"],input[type="radio"],input[type="checkbox"],select,button{cursor:pointer}input[type="radio"],input[type="checkbox"]{font-size:110%;position:relative;top:-1px;margin-right:3px}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}hr{display:block;height:1px;border:0;border-top:1px solid #ddd}img,video,audio,embed,object{max-width:100%}img,video,embed,object{height:auto}embed,object{height:100%}img{vertical-align:middle;-ms-interpolation-mode:bicubic}body{font-family:"Helvetica Neue",Helvetica,Tahoma,sans-serif;font-size:.9375em;line-height:1.65em;background:#fff;color:#222}a{color:#134da5}a:focus,a:hover{color:#de2c3b}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Tahoma,sans-serif;font-weight:bold;color:#000;text-rendering:optimizeLegibility;margin:0 0 .5em 0}h1,.h1,h2,.h2{line-height:1.1}h3,.h3,h4,.h4{line-height:1.3}h1,.h1{font-size:2.25em}h2,.h2{font-size:1.5em;margin-bottom:.7em}h3,.h3{font-size:1.3125em}h4,.h4{font-size:1.125em}h5,.h5{font-size:1em}h6,.h6{font-size:.75em;text-transform:uppercase}.lead{font-size:1.3125em;line-height:1.5;margin-bottom:1.0999999999999999em}p,ul,ol,dl,dd,dt,blockquote,td,th{line-height:1.65em}ul,ol,ul ul,ol ol,ul ol,ol ul{margin:0 0 0 3.3em}ul li,ol li{text-align:left}ol ol li{list-style-type:lower-alpha}ol ol ol li{list-style-type:lower-roman}p,ul,ol,dl,blockquote,hr,pre,table,form,fieldset,figure,address{margin-bottom:1.65em}blockquote{position:relative;font-style:italic;font-size:1.125em;margin-left:2.4749999999999996em;padding-left:1.65em;border-left:2px solid #ddd}blockquote p{margin-bottom:.5em}blockquote small,cite{color:rgba(0,0,0,0.4);font-style:italic}small,blockquote cite{font-size:12.75px;line-height:1}address{font-style:normal}dl dt{font-weight:bold}dd{margin-left:1.65em}s,del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted #0f0f0f;cursor:help}strong,b{font-weight:bold}em,i{font-style:italic}sub,sup{font-size:11.25px;line-height:0;position:relative}sup{top:-0.5em}sub{bottom:-0.25em}figcaption{margin:.3em 0;font-size:12.75px;font-style:italic}ins,u{text-decoration:underline}mark{background-color:#ffc800;color:#0f0f0f;text-decoration:none}pre,code,kbd,samp,var,output{font-size:90%;font-style:normal;font-family:Menlo,Monaco,Consolas,"Courier New",monospace}pre{margin-top:1.65em;font-size:100%;line-height:1.5;color:#222;overflow:auto}code,samp,kbd{padding:3px 6px 2px 6px;display:inline-block;line-height:1;border-radius:2px}code{background:#f4f4f4;border:1px solid #d4d4d4}pre code{font-size:100%;border:0;padding:0;background:0;line-height:1.65em}var{color:rgba(0,0,0,0.5)}samp{background:#d3e3fb;border:1px solid #b2cef8}kbd{background:#0f0f0f;color:rgba(255,255,255,0.85);white-space:nowrap}button:active,button:focus{outline:0}textarea,select{font-family:"Helvetica Neue",Helvetica,Tahoma,sans-serif;font-size:1em;box-shadow:none}textarea,select[multiple],select[multiple="multiple"]{padding:.3em .35em;line-height:1.35em;width:100%}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="phone"],input[type="tel"],input[type="number"],input[type="datetime"],input[type="date"],input[type="month"],input[type="color"],input[type="time"],input[type="search"],input[type="datetime-local"]{font-family:"Helvetica Neue",Helvetica,Tahoma,sans-serif;font-size:1em;box-shadow:none;padding:.3em .35em;line-height:1.65em;border-radius:0;outline:0}select[multiple],select[multiple="multiple"],textarea,input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="phone"],input[type="tel"],input[type="number"],input[type="datetime"],input[type="date"],input[type="month"],input[type="color"],input[type="time"],input[type="search"],input[type="datetime-local"]{background:#fff;border:1px solid #ccc;position:relative;z-index:2;-webkit-appearance:none}textarea[disabled],input[type="text"][disabled],input[type="password"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="phone"][disabled],input[type="tel"][disabled],input[type="number"][disabled],input[type="datetime"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="color"][disabled],input[type="time"][disabled],input[type="search"][disabled],input[type="datetime-local"][disabled]{resize:none;color:rgba(0,0,0,0.5)}select[disabled],input[type="checkbox"][disabled],input[type="radio"][disabled]{cursor:default}input::-moz-focus-inner,button::-moz-focus-inner{border:0;padding:0}input[type="range"]{position:relative;top:3px}select{margin-bottom:0!important}fieldset{padding:1.65em;margin-bottom:1.65em;border:1px solid #ccc}fieldset *:last-child{margin-bottom:0!important}legend{font-weight:bold;padding:0 1em;margin-left:-1em}table{max-width:100%;width:100%;empty-cells:show}table caption{text-transform:uppercase;padding:0 1.0999999999999999em;color:rgba(0,0,0,0.4);font-size:12.75px}table th,table td{border-bottom:1px solid #eee;padding:.825em 1.0999999999999999em}table tfoot th,table tfoot td{color:rgba(0,0,0,0.4)}.units-container:after,.units-row:after{content:"";display:table;clear:both}.units-container:after,.units-row:after{content:"";display:table;clear:both}.units-container{padding-top:1px;margin-top:-1px}.units-row{margin-bottom:1.65em}.width-100,.unit-100{width:100%}.width-90,.unit-90{width:90%}.width-80,.unit-80{width:80%}.width-75,.unit-75{width:75%}.width-70,.unit-70{width:70%}.width-66,.unit-66{width:66.6%}.width-65,.unit-65{width:65%}.width-60,.unit-60{width:60%}.width-50,.unit-50{width:50%}.width-40,.unit-40{width:40%}.width-35,.unit-35{width:35%}.width-33,.unit-33{width:33.3%}.width-30,.unit-30{width:30%}.width-25,.unit-25{width:25%}.width-20,.unit-20{width:20%}.width-10,.unit-10{width:10%}.units-row .unit-90,.units-row .unit-80,.units-row .unit-75,.units-row .unit-70,.units-row .unit-66,.units-row .unit-65,.units-row .unit-60,.units-row .unit-50,.units-row .unit-40,.units-row .unit-35,.units-row .unit-33,.units-row .unit-30,.units-row .unit-25,.units-row .unit-20,.units-row .unit-10{float:left;margin-left:3%}.units-row .unit-90:first-child,.units-row .unit-80:first-child,.units-row .unit-75:first-child,.units-row .unit-70:first-child,.units-row .unit-66:first-child,.units-row .unit-65:first-child,.units-row .unit-60:first-child,.units-row .unit-50:first-child,.units-row .unit-40:first-child,.units-row .unit-35:first-child,.units-row .unit-33:first-child,.units-row .unit-30:first-child,.units-row .unit-25:first-child,.units-row .unit-20:first-child,.units-row .unit-10:first-child{margin-left:0}.units-row .unit-90{width:89.7%}.units-row .unit-80{width:79.4%}.units-row .unit-75{width:74.25%}.units-row .unit-70{width:69.1%}.units-row .unit-66{width:65.66666666666666%}.units-row .unit-65{width:65.66666666666666%}.units-row .unit-60{width:58.800000000000004%}.units-row .unit-50{width:48.5%}.units-row .unit-40{width:38.2%}.units-row .unit-35{width:31.333333333333332%}.units-row .unit-33{width:31.333333333333332%}.units-row .unit-30{width:27.9%}.units-row .unit-25{width:22.75%}.units-row .unit-20{width:17.6%}.units-row .unit-10{width:7.3%}.unit-push-90,.unit-push-80,.unit-push-75,.unit-push-70,.unit-push-66,.unit-push-65,.unit-push-60,.unit-push-50,.unit-push-40,.unit-push-35,.unit-push-33,.unit-push-30,.unit-push-25,.unit-push-20,.unit-push-10{position:relative}.unit-push-90{left:92.7%}.unit-push-80{left:82.4%}.unit-push-75{left:77.25%}.unit-push-70{left:72.1%}.unit-push-66{left:68.66666666666666%}.unit-push-65{left:68.66666666666666%}.unit-push-60{left:61.800000000000004%}.unit-push-50{left:51.5%}.unit-push-40{left:41.2%}.unit-push-35{left:34.33333333333333%}.unit-push-33{left:34.33333333333333%}.unit-push-30{left:30.9%}.unit-push-25{left:25.75%}.unit-push-20{left:20.6%}.unit-push-10{left:10.3%}.units-row .unit-push-right{float:right}.units-row .unit-role-right{margin-left:3%;float:right}.units-row .unit-role-left{margin-left:0}.centered,.unit-centered{float:none!important;margin:0 auto!important}.unit-padding{padding:1.65em}.units-padding .unit-100,.units-padding .unit-90,.units-padding .unit-80,.units-padding .unit-75,.units-padding .unit-70,.units-padding .unit-66,.units-padding .unit-65,.units-padding .unit-60,.units-padding .unit-50,.units-padding .unit-40,.units-padding .unit-35,.units-padding .unit-33,.units-padding .unit-30,.units-padding .unit-25,.units-padding .unit-20,.units-padding .unit-10{padding:1.65em}.units-split .unit-90,.units-split .unit-80,.units-split .unit-75,.units-split .unit-70,.units-split .unit-66,.units-split .unit-65,.units-split .unit-60,.units-split .unit-50,.units-split .unit-40,.units-split .unit-35,.units-split .unit-33,.units-split .unit-30,.units-split .unit-25,.units-split .unit-20,.units-split .unit-10{margin-left:0}.units-split .unit-90{width:90%}.units-split .unit-80{width:80%}.units-split .unit-75{width:75%}.units-split .unit-70{width:70%}.units-split .unit-66{width:66.6%}.units-split .unit-65{width:65%}.units-split .unit-60{width:60%}.units-split .unit-50{width:50%}.units-split .unit-40{width:40%}.units-split .unit-35{width:35%}.units-split .unit-33{width:33.3%}.units-split .unit-30{width:30%}.units-split .unit-25{width:25%}.units-split .unit-20{width:20%}.units-split .unit-10{width:10%}.blocks-2,.blocks-3,.blocks-4,.blocks-5,.blocks-6{padding-left:0;list-style:none;margin-left:-3%}.blocks-2:after,.blocks-3:after,.blocks-4:after,.blocks-5:after,.blocks-6:after{content:"";display:table;clear:both}.blocks-2:after,.blocks-3:after,.blocks-4:after,.blocks-5:after,.blocks-6:after{content:"";display:table;clear:both}.blocks-2>li,.blocks-3>li,.blocks-4>li,.blocks-5>li,.blocks-6>li{height:auto;float:left;margin-bottom:1.65em;margin-left:3%}.blocks-2>li ul,.blocks-3>li ul,.blocks-4>li ul,.blocks-5>li ul,.blocks-6>li ul{list-style-type:disc}.blocks-2>li ul ul,.blocks-3>li ul ul,.blocks-4>li ul ul,.blocks-5>li ul ul,.blocks-6>li ul ul{list-style-type:circle}.blocks-2>li li,.blocks-3>li li,.blocks-4>li li,.blocks-5>li li,.blocks-6>li li{float:none;margin:0}.blocks-2>li{width:47%}.blocks-3>li{width:30.333333333333332%}.blocks-4>li{width:22%}.blocks-5>li{width:17%}.blocks-6>li{width:13.666666666666666%}.block-first{clear:both}table.table-bordered td,table.table-bordered th{border:1px solid #eee}table.table-simple td,table.table-simple th,table.table-simple caption{border:0;padding-left:0}table.table-flat td,table.table-flat th,table.table-flat caption{border:0;padding:0}table.table-stroked td,table.table-stroked th{border-bottom:1px solid #eee}table.table-stripped tbody tr:nth-child(odd) td{background:#f8f8f8}table.table-hovered tbody tr:hover td{background-color:#f4f4f4}.table-container{width:100%;overflow:auto;margin-bottom:1.65em}.table-container table{margin-bottom:0}.table-container::-webkit-scrollbar{-webkit-appearance:none;width:14px;height:14px}.table-container::-webkit-scrollbar-thumb{border-radius:8px;border:3px solid #fff;background-color:rgba(0,0,0,0.3)}.forms .btn,.forms input[type="submit"].btn,.forms button,.forms input[type="submit"],.forms input[type="reset"]{padding:.3625em 1.3em}.forms .btn-outline{padding:.3em 1.3em}.forms .btn-outline.bold{padding:.2375em 1.3em}.forms label{display:block;margin-bottom:1.0999999999999999em}.forms input[type="text"],.forms input[type="password"],.forms input[type="email"],.forms input[type="url"],.forms input[type="phone"],.forms input[type="tel"],.forms input[type="number"],.forms input[type="datetime"],.forms input[type="date"],.forms input[type="month"],.forms input[type="color"],.forms input[type="time"],.forms input[type="search"],.forms input[type="range"],.forms input[type="file"],.forms input[type="datetime-local"],.forms textarea,.forms select{display:block}.forms-inline input[type="text"],.forms-inline-list input[type="text"],.forms-inline input[type="password"],.forms-inline-list input[type="password"],.forms-inline input[type="email"],.forms-inline-list input[type="email"],.forms-inline input[type="url"],.forms-inline-list input[type="url"],.forms-inline input[type="phone"],.forms-inline-list input[type="phone"],.forms-inline input[type="tel"],.forms-inline-list input[type="tel"],.forms-inline input[type="number"],.forms-inline-list input[type="number"],.forms-inline input[type="datetime"],.forms-inline-list input[type="datetime"],.forms-inline input[type="date"],.forms-inline-list input[type="date"],.forms-inline input[type="month"],.forms-inline-list input[type="month"],.forms-inline input[type="color"],.forms-inline-list input[type="color"],.forms-inline input[type="time"],.forms-inline-list input[type="time"],.forms-inline input[type="search"],.forms-inline-list input[type="search"],.forms-inline input[type="range"],.forms-inline-list input[type="range"],.forms-inline input[type="file"],.forms-inline-list input[type="file"],.forms-inline input[type="datetime-local"],.forms-inline-list input[type="datetime-local"],.forms-inline textarea,.forms-inline-list textarea,.forms-inline select,.forms-inline-list select{display:inline-block}.forms-list,.forms-inline,.forms-inline-list{margin:0;padding:0;margin-bottom:1.0999999999999999em;list-style:none}.forms-list label,.forms-inline label,.forms-inline-list li,.forms-inline-list li label{display:inline-block;margin-bottom:0}.forms-inline-list li label{margin-right:.825em}.forms-inline-list li{margin-bottom:3px}.forms-list li{margin-bottom:6px}.forms-desc{margin-top:4px;color:rgba(0,0,0,0.4);font-size:12.75px;line-height:1.4em}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="phone"],input[type="tel"],input[type="number"],input[type="datetime"],input[type="date"],input[type="month"],input[type="color"],input[type="time"],input[type="search"],input[type="datetime-local"],textarea{-moz-transition:border ease .5s;transition:border ease .5s}.error,.success{font-weight:normal;font-size:12.75px}input.input-error,textarea.input-error,select.input-error,.input-error{border-color:#de2c3b;box-shadow:0 0 0 2px rgba(222,44,59,0.3),0 1px 2px rgba(0,0,0,0.2) inset}input.input-success,textarea.input-success,select.input-success,.input-success{border-color:#2c9f42;box-shadow:0 0 0 2px rgba(44,159,66,0.3),0 1px 2px rgba(0,0,0,0.2) inset}input.input-gray,textarea.input-gray,select.input-gray,.input-gray{border-color:#b3b6b7;box-shadow:0 0 0 2px rgba(179,182,183,0.4),0 1px 2px rgba(0,0,0,0.2) inset}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="phone"]:focus,input[type="tel"]:focus,input[type="number"]:focus,input[type="datetime"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="color"]:focus,input[type="time"]:focus,input[type="search"]:focus,input[type="datetime-local"]:focus,textarea:focus{outline:0;border-color:#2575ed;box-shadow:0 0 0 2px rgba(37,117,237,0.3),0 1px 2px rgba(0,0,0,0.2) inset}input.input-search,input[type="search"]{padding-right:.5em;padding-left:.5em;margin-bottom:0;border-radius:15px}input.input-on-black{border:1px solid rgba(255,255,255,0.1);background:rgba(255,255,255,0.35)}input.input-on-black::-webkit-input-placeholder{color:rgba(255,255,255,0.6)}input.input-on-black::-moz-placeholder{color:rgba(255,255,255,0.6)}input.input-on-black:focus,input.input-on-black.active{border:1px solid #fff;background:#fff;box-shadow:none}input.input-on-black:focus::-webkit-input-placeholder,input.input-on-black.active::-webkit-input-placeholder{color:#aaa}input.input-on-black:focus::-moz-placeholder,input.input-on-black.active::-moz-placeholder{color:#aaa}input.input-big{font-size:18px}input.input-small{font-size:12.75px}input.input-smaller{font-size:11.25px}.input-groups{display:table!important}.input-groups input{width:100%}.input-groups input,.input-groups .input-append,.input-groups .input-prepend,.input-groups .btn-append{display:table-cell!important}.input-groups .btn-append,.input-groups .input-append,.input-groups .input-prepend{width:1%;vertical-align:middle}.input-groups .input-append,.input-groups .input-prepend{background-color:#f4f4f4;border:1px solid #d4d4d4;margin:0;padding:.45em .75em .15em .75em;color:rgba(0,0,0,0.6);line-height:1.65em;font-size:12.75px;white-space:nowrap}.input-groups .input-prepend{border-right:0}.input-groups .input-append{position:relative;z-index:1;border-left:none}.input-groups .btn-append .btn{display:block;height:auto;border-radius:0 2px 2px 0}.navbar{font-size:105%;margin-bottom:1.65em}.navbar:after{content:"";display:table;clear:both}.navbar:after{content:"";display:table;clear:both}.navbar.navbar-left{float:left}.navbar.navbar-right{float:right}.navbar ul{list-style:none;margin:0}.navbar ul:after{content:"";display:table;clear:both}.navbar ul:after{content:"";display:table;clear:both}.navbar li{float:left;margin-right:1.65em}.navbar.navbar-right li{margin-right:0;margin-left:1.65em}.navbar a,.navbar span{display:block;text-decoration:none}.navbar a:hover{color:#de2c3b;text-decoration:underline}.navbar li.active a,.navbar span{text-decoration:none;cursor:text;color:rgba(0,0,0,0.4)}.navigation-toggle{display:none;text-transform:uppercase;position:relative;color:#0f0f0f;background-color:#fff}.navigation-toggle:after{position:absolute;z-index:1;top:50%;margin-top:-12px;left:10px;content:"\2630";font-size:24px;line-height:1}.navigation-toggle.navigation-toggle-black{background-color:#0f0f0f;color:#fff}.navigation-toggle.navigation-toggle-show{margin-bottom:1.65em}.navigation-toggle span{position:relative;z-index:2;cursor:pointer;display:block;padding:10px 20px 10px 40px}.navigation-fixed{position:fixed;top:0;left:0;z-index:101}.navbar-pills a,.navbar-pills span{padding:.825em 1.65em}.navbar-pills a:hover{color:#0f0f0f;background:#eee}.navbar-pills li.active a,.navbar-pills span{text-decoration:none;cursor:text;color:rgba(0,0,0,0.4);background:#eee}.navbar-pills li{margin-right:1px}.navbar-pills.navbar-right li{margin-left:1px}.fullwidth ul{width:100%}.fullwidth li{float:none!important;margin:0;display:table-cell;width:1%;text-align:center}.fullwidth li a,.fullwidth li span{display:block}.nav{margin-bottom:1.65em}.nav ul{list-style:none;margin:0}.nav ul li ul{margin-left:2em;font-size:.95em}.nav a,.nav span{display:block;padding:.5em 0}.nav a{color:#0f0f0f;text-decoration:none}.nav a:hover{color:#de2c3b;text-decoration:underline}.nav li.active a,.nav span{text-decoration:none;cursor:text;color:rgba(0,0,0,0.4)}.nav i.fa{width:1.65em}.nav-stacked li{margin-bottom:1px}.nav-stacked a,.nav-stacked span{padding:.6em .7em}.nav-stacked a{background:#f6f6f6}.nav-stacked a:hover{color:#000;background:#eee}.nav-stacked li.active a,.nav-stacked span{background:#fff;text-decoration:none;cursor:text;color:rgba(0,0,0,0.3)}.nav-stats li{position:relative}.nav-stats a,.nav-stats span{padding-right:50px}.nav-stats sup,.nav-stats .badge{position:absolute;top:50%;right:0}.nav-stats sup{color:rgba(0,0,0,0.4)}.nav-stats .badge{margin-top:-8px}.nav-tabs{border-bottom:1px solid #e3e3e3;margin-bottom:1.65em}.nav-tabs:after{content:"";display:table;clear:both}.nav-tabs:after{content:"";display:table;clear:both}.nav-tabs ul{list-style:none;margin:0}.nav-tabs li{float:left;margin-right:2px}.nav-tabs a,.nav-tabs span{display:block;line-height:1;padding:.825em 1.65em;border:1px solid transparent}.nav-tabs a{color:rgba(0,0,0,0.5);text-decoration:none}.nav-tabs a:focus,.nav-tabs a:hover{color:#0f0f0f;text-decoration:underline;background-color:#eee}.nav-tabs li.active a,.nav-tabs span{color:#0f0f0f;background:#fff;position:relative;border:1px solid #ddd;border-bottom:1px solid #fff;bottom:-1px;cursor:default;text-decoration:none}.breadcrumbs{margin-bottom:1.65em}.breadcrumbs:after{content:"";display:table;clear:both}.breadcrumbs:after{content:"";display:table;clear:both}.breadcrumbs ul{font-size:.9em;color:rgba(0,0,0,0.4);list-style:none;margin:0}.breadcrumbs ul:after{content:"";display:table;clear:both}.breadcrumbs ul:after{content:"";display:table;clear:both}.breadcrumbs li{float:left;margin-right:5px}.breadcrumbs li+li:before{content:" > ";color:#aaa;font-size:12px;margin:0 7px 0 5px;position:relative;top:-1px}.breadcrumbs.breadcrumbs-path li+li:before{content:" / ";top:0}.breadcrumbs a{color:#0f0f0f;text-decoration:none}.breadcrumbs a:hover{color:#0f0f0f;text-decoration:underline}.breadcrumbs li.active a,.breadcrumbs span,.breadcrumbs li.active a:hover{text-decoration:none;cursor:text;color:rgba(0,0,0,0.4)}.pagination{position:relative;left:-9px;margin-left:0;list-style:none}.pagination:after{content:"";display:table;clear:both}.pagination:after{content:"";display:table;clear:both}.pagination li{float:left;margin-right:2px}.pagination a,.pagination span{display:block;padding:7px 9px;line-height:1;border-radius:2px;color:#0f0f0f;text-decoration:none}.pagination span,.pagination li.active a,.pagination li.active a:hover{color:#fff;background-color:#0f0f0f;cursor:text}.pagination a:focus,.pagination a:hover{text-decoration:none;background-color:#0f0f0f;color:#fff}.btn,input[type="submit"].btn{display:inline-block;vertical-align:top;font-family:"Helvetica Neue",Helvetica,Tahoma,sans-serif;font-size:1em;font-weight:400;line-height:1.65em;text-align:center;text-decoration:none;color:#222;-webkit-appearance:none;outline:0;margin:0;border:0;border-radius:2px;box-shadow:none;cursor:pointer;background:#e0e3e5;padding:.55em 2.5em}.btn:hover,input[type="submit"].btn:hover{color:rgba(0,0,0,0.5);background:#b3b6b7}.btn::-moz-focus-inner{border:0;padding:0}.btn-big,input[type="submit"].btn-big{font-size:18px}.btn-small,input[type="submit"].btn-small{font-size:12.75px}.btn-smaller,input[type="submit"].btn-smaller{font-size:11.25px;vertical-align:baseline}.btn-round{border-radius:15px}.btn-outline,input[type="submit"].btn-outline{background:0;padding:.48750000000000004em 2.5em;border:1px solid #0f0f0f}.btn-outline:hover,input[type="submit"].btn-outline:hover{border-color:#b3b6b7}.btn-outline.btn-active{padding:.55em 2.5em}.btn-outline.bold{border-width:2px;padding:.42500000000000004em 2.5em}.btn-active,.btn[disabled],.btn-disabled{background:0;background:#b3b6b7;color:rgba(0,0,0,0.5)}.btn-active:hover,.btn[disabled]:hover,.btn-disabled:hover{color:rgba(0,0,0,0.5);background:#b3b6b7}.btn-active{box-shadow:0 1px 3px rgba(0,0,0,0.4) inset}.btn-outline.btn[disabled],.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(0,0,0,0.3);border:1px solid rgba(0,0,0,0.1)}.btn-outline.btn-active{background:0;color:rgba(0,0,0,0.4);border:0;box-shadow:0 1px 3px rgba(0,0,0,0.2) inset}.btn[disabled],.btn-disabled{cursor:default;box-shadow:none}.btn-blue,input[type="submit"].btn-blue{color:rgba(255,255,255,0.9);background:#2575ed}.btn-blue:hover,input[type="submit"].btn-blue:hover{color:rgba(255,255,255,0.6);background:#1a52a5}.btn-blue.btn-active,input[type="submit"].btn-blue.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.5) inset}.btn-blue.btn-active,input[type="submit"].btn-blue.btn-active,.btn-blue.btn-disabled,input[type="submit"].btn-blue.btn-disabled,.btn-blue.btn[disabled],input[type="submit"].btn-blue.btn[disabled]{color:rgba(255,255,255,0.5);background:#1a52a5}.btn-blue.btn-active:hover,input[type="submit"].btn-blue.btn-active:hover,.btn-blue.btn-disabled:hover,input[type="submit"].btn-blue.btn-disabled:hover,.btn-blue.btn[disabled]:hover,input[type="submit"].btn-blue.btn[disabled]:hover{color:rgba(255,255,255,0.5)}.btn-blue.btn-outline,input[type="submit"].btn-blue.btn-outline{background:0;border-color:#2575ed;color:#2575ed}.btn-blue.btn-outline:hover,input[type="submit"].btn-blue.btn-outline:hover{color:rgba(255,255,255,0.9);background:#2575ed}.btn-blue.btn-outline.btn[disabled],input[type="submit"].btn-blue.btn-outline.btn[disabled],.btn-blue.btn-outline.btn-disabled,input[type="submit"].btn-blue.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(37,117,237,0.4);border:1px solid rgba(37,117,237,0.3)}.btn-blue.btn-outline.btn-active,input[type="submit"].btn-blue.btn-outline.btn-active{background:0;color:rgba(37,117,237,0.6);border:0;box-shadow:0 1px 3px rgba(26,82,165,0.6) inset}.btn-blue:hover,input[type="submit"].btn-blue:hover{color:rgba(255,255,255,0.6);background:#1a52a5}.btn-blue.btn-active,input[type="submit"].btn-blue.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.5) inset}.btn-blue.btn-active,input[type="submit"].btn-blue.btn-active,.btn-blue.btn-disabled,input[type="submit"].btn-blue.btn-disabled,.btn-blue.btn[disabled],input[type="submit"].btn-blue.btn[disabled]{color:rgba(255,255,255,0.5);background:#1a52a5}.btn-blue.btn-active:hover,input[type="submit"].btn-blue.btn-active:hover,.btn-blue.btn-disabled:hover,input[type="submit"].btn-blue.btn-disabled:hover,.btn-blue.btn[disabled]:hover,input[type="submit"].btn-blue.btn[disabled]:hover{color:rgba(255,255,255,0.5)}.btn-blue.btn-outline,input[type="submit"].btn-blue.btn-outline{background:0;border-color:#2575ed;color:#2575ed}.btn-blue.btn-outline:hover,input[type="submit"].btn-blue.btn-outline:hover{color:rgba(255,255,255,0.9);background:#2575ed}.btn-blue.btn-outline.btn[disabled],input[type="submit"].btn-blue.btn-outline.btn[disabled],.btn-blue.btn-outline.btn-disabled,input[type="submit"].btn-blue.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(37,117,237,0.4);border:1px solid rgba(37,117,237,0.3)}.btn-blue.btn-outline.btn-active,input[type="submit"].btn-blue.btn-outline.btn-active{background:0;color:rgba(37,117,237,0.6);border:0;box-shadow:0 1px 3px rgba(26,82,165,0.6) inset}.btn-red,input[type="submit"].btn-red{color:rgba(255,255,255,0.9);background:#de2c3b}.btn-red:hover,input[type="submit"].btn-red:hover{color:rgba(255,255,255,0.6);background:#b2232f}.btn-red.btn-active,input[type="submit"].btn-red.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.5) inset}.btn-red.btn-active,input[type="submit"].btn-red.btn-active,.btn-red.btn-disabled,input[type="submit"].btn-red.btn-disabled,.btn-red.btn[disabled],input[type="submit"].btn-red.btn[disabled]{color:rgba(255,255,255,0.5);background:#b2232f}.btn-red.btn-active:hover,input[type="submit"].btn-red.btn-active:hover,.btn-red.btn-disabled:hover,input[type="submit"].btn-red.btn-disabled:hover,.btn-red.btn[disabled]:hover,input[type="submit"].btn-red.btn[disabled]:hover{color:rgba(255,255,255,0.5)}.btn-red.btn-outline,input[type="submit"].btn-red.btn-outline{background:0;border-color:#de2c3b;color:#de2c3b}.btn-red.btn-outline:hover,input[type="submit"].btn-red.btn-outline:hover{color:rgba(255,255,255,0.9);background:#de2c3b}.btn-red.btn-outline.btn[disabled],input[type="submit"].btn-red.btn-outline.btn[disabled],.btn-red.btn-outline.btn-disabled,input[type="submit"].btn-red.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(222,44,59,0.4);border:1px solid rgba(222,44,59,0.3)}.btn-red.btn-outline.btn-active,input[type="submit"].btn-red.btn-outline.btn-active{background:0;color:rgba(222,44,59,0.6);border:0;box-shadow:0 1px 3px rgba(178,35,47,0.6) inset}.btn-red:hover,input[type="submit"].btn-red:hover{color:rgba(255,255,255,0.6);background:#b2232f}.btn-red.btn-active,input[type="submit"].btn-red.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.5) inset}.btn-red.btn-active,input[type="submit"].btn-red.btn-active,.btn-red.btn-disabled,input[type="submit"].btn-red.btn-disabled,.btn-red.btn[disabled],input[type="submit"].btn-red.btn[disabled]{color:rgba(255,255,255,0.5);background:#b2232f}.btn-red.btn-active:hover,input[type="submit"].btn-red.btn-active:hover,.btn-red.btn-disabled:hover,input[type="submit"].btn-red.btn-disabled:hover,.btn-red.btn[disabled]:hover,input[type="submit"].btn-red.btn[disabled]:hover{color:rgba(255,255,255,0.5)}.btn-red.btn-outline,input[type="submit"].btn-red.btn-outline{background:0;border-color:#de2c3b;color:#de2c3b}.btn-red.btn-outline:hover,input[type="submit"].btn-red.btn-outline:hover{color:rgba(255,255,255,0.9);background:#de2c3b}.btn-red.btn-outline.btn[disabled],input[type="submit"].btn-red.btn-outline.btn[disabled],.btn-red.btn-outline.btn-disabled,input[type="submit"].btn-red.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(222,44,59,0.4);border:1px solid rgba(222,44,59,0.3)}.btn-red.btn-outline.btn-active,input[type="submit"].btn-red.btn-outline.btn-active{background:0;color:rgba(222,44,59,0.6);border:0;box-shadow:0 1px 3px rgba(178,35,47,0.6) inset}.btn-green,input[type="submit"].btn-green{color:rgba(255,255,255,0.9);background:#2c9f42}.btn-green:hover,input[type="submit"].btn-green:hover{color:rgba(255,255,255,0.6);background:#237f35}.btn-green.btn-active,input[type="submit"].btn-green.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.5) inset}.btn-green.btn-active,input[type="submit"].btn-green.btn-active,.btn-green.btn-disabled,input[type="submit"].btn-green.btn-disabled,.btn-green.btn[disabled],input[type="submit"].btn-green.btn[disabled]{color:rgba(255,255,255,0.5);background:#237f35}.btn-green.btn-active:hover,input[type="submit"].btn-green.btn-active:hover,.btn-green.btn-disabled:hover,input[type="submit"].btn-green.btn-disabled:hover,.btn-green.btn[disabled]:hover,input[type="submit"].btn-green.btn[disabled]:hover{color:rgba(255,255,255,0.5)}.btn-green.btn-outline,input[type="submit"].btn-green.btn-outline{background:0;border-color:#2c9f42;color:#2c9f42}.btn-green.btn-outline:hover,input[type="submit"].btn-green.btn-outline:hover{color:rgba(255,255,255,0.9);background:#2c9f42}.btn-green.btn-outline.btn[disabled],input[type="submit"].btn-green.btn-outline.btn[disabled],.btn-green.btn-outline.btn-disabled,input[type="submit"].btn-green.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(44,159,66,0.4);border:1px solid rgba(44,159,66,0.3)}.btn-green.btn-outline.btn-active,input[type="submit"].btn-green.btn-outline.btn-active{background:0;color:rgba(44,159,66,0.6);border:0;box-shadow:0 1px 3px rgba(35,127,53,0.6) inset}.btn-green:hover,input[type="submit"].btn-green:hover{color:rgba(255,255,255,0.6);background:#237f35}.btn-green.btn-active,input[type="submit"].btn-green.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.5) inset}.btn-green.btn-active,input[type="submit"].btn-green.btn-active,.btn-green.btn-disabled,input[type="submit"].btn-green.btn-disabled,.btn-green.btn[disabled],input[type="submit"].btn-green.btn[disabled]{color:rgba(255,255,255,0.5);background:#237f35}.btn-green.btn-active:hover,input[type="submit"].btn-green.btn-active:hover,.btn-green.btn-disabled:hover,input[type="submit"].btn-green.btn-disabled:hover,.btn-green.btn[disabled]:hover,input[type="submit"].btn-green.btn[disabled]:hover{color:rgba(255,255,255,0.5)}.btn-green.btn-outline,input[type="submit"].btn-green.btn-outline{background:0;border-color:#2c9f42;color:#2c9f42}.btn-green.btn-outline:hover,input[type="submit"].btn-green.btn-outline:hover{color:rgba(255,255,255,0.9);background:#2c9f42}.btn-green.btn-outline.btn[disabled],input[type="submit"].btn-green.btn-outline.btn[disabled],.btn-green.btn-outline.btn-disabled,input[type="submit"].btn-green.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(44,159,66,0.4);border:1px solid rgba(44,159,66,0.3)}.btn-green.btn-outline.btn-active,input[type="submit"].btn-green.btn-outline.btn-active{background:0;color:rgba(44,159,66,0.6);border:0;box-shadow:0 1px 3px rgba(35,127,53,0.6) inset}.btn-black,input[type="submit"].btn-black{color:rgba(255,255,255,0.9);background:#0f0f0f}.btn-black:hover,input[type="submit"].btn-black:hover{color:rgba(255,255,255,0.6);background:#363738}.btn-black.btn-active,input[type="submit"].btn-black.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.7) inset}.btn-black.btn-active,input[type="submit"].btn-black.btn-active,.btn-black.btn-disabled,input[type="submit"].btn-black.btn-disabled,.btn-black.btn[disabled],input[type="submit"].btn-black.btn[disabled]{color:rgba(255,255,255,0.5);background:#363738}.btn-black.btn-active:hover,input[type="submit"].btn-black.btn-active:hover,.btn-black.btn-disabled:hover,input[type="submit"].btn-black.btn-disabled:hover,.btn-black.btn[disabled]:hover,input[type="submit"].btn-black.btn[disabled]:hover{color:rgba(255,255,255,0.5)}.btn-black.btn-outline,input[type="submit"].btn-black.btn-outline{background:0;border-color:#0f0f0f;color:#0f0f0f}.btn-black.btn-outline:hover,input[type="submit"].btn-black.btn-outline:hover{color:rgba(255,255,255,0.9);background:#0f0f0f}.btn-black.btn-outline.btn[disabled],input[type="submit"].btn-black.btn-outline.btn[disabled],.btn-black.btn-outline.btn-disabled,input[type="submit"].btn-black.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(15,15,15,0.4);border:1px solid rgba(15,15,15,0.3)}.btn-black.btn-outline.btn-active,input[type="submit"].btn-black.btn-outline.btn-active{background:0;color:rgba(15,15,15,0.6);border:0;box-shadow:0 1px 3px rgba(54,55,56,0.6) inset}.btn-black:hover,input[type="submit"].btn-black:hover{color:rgba(255,255,255,0.6);background:#363738}.btn-black.btn-active,input[type="submit"].btn-black.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.7) inset}.btn-black.btn-active,input[type="submit"].btn-black.btn-active,.btn-black.btn-disabled,input[type="submit"].btn-black.btn-disabled,.btn-black.btn[disabled],input[type="submit"].btn-black.btn[disabled]{color:rgba(255,255,255,0.5);background:#363738}.btn-black.btn-active:hover,input[type="submit"].btn-black.btn-active:hover,.btn-black.btn-disabled:hover,input[type="submit"].btn-black.btn-disabled:hover,.btn-black.btn[disabled]:hover,input[type="submit"].btn-black.btn[disabled]:hover{color:rgba(255,255,255,0.5)}.btn-black.btn-outline,input[type="submit"].btn-black.btn-outline{background:0;border-color:#0f0f0f;color:#0f0f0f}.btn-black.btn-outline:hover,input[type="submit"].btn-black.btn-outline:hover{color:rgba(255,255,255,0.9);background:#0f0f0f}.btn-black.btn-outline.btn[disabled],input[type="submit"].btn-black.btn-outline.btn[disabled],.btn-black.btn-outline.btn-disabled,input[type="submit"].btn-black.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(15,15,15,0.4);border:1px solid rgba(15,15,15,0.3)}.btn-black.btn-outline.btn-active,input[type="submit"].btn-black.btn-outline.btn-active{background:0;color:rgba(15,15,15,0.6);border:0;box-shadow:0 1px 3px rgba(54,55,56,0.6) inset}.btn-yellow,input[type="submit"].btn-yellow{color:rgba(0,0,0,0.9);background:#ffc800}.btn-yellow:hover,input[type="submit"].btn-yellow:hover{color:rgba(0,0,0,0.6);background:#cca000}.btn-yellow.btn-active,input[type="submit"].btn-yellow.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.5) inset}.btn-yellow.btn-active,input[type="submit"].btn-yellow.btn-active,.btn-yellow.btn-disabled,input[type="submit"].btn-yellow.btn-disabled,.btn-yellow.btn[disabled],input[type="submit"].btn-yellow.btn[disabled]{color:rgba(0,0,0,0.5);background:#cca000}.btn-yellow.btn-active:hover,input[type="submit"].btn-yellow.btn-active:hover,.btn-yellow.btn-disabled:hover,input[type="submit"].btn-yellow.btn-disabled:hover,.btn-yellow.btn[disabled]:hover,input[type="submit"].btn-yellow.btn[disabled]:hover{color:rgba(0,0,0,0.5)}.btn-yellow.btn-outline,input[type="submit"].btn-yellow.btn-outline{background:0;border-color:#ffc800;color:#ffc800}.btn-yellow.btn-outline:hover,input[type="submit"].btn-yellow.btn-outline:hover{color:rgba(0,0,0,0.9);background:#ffc800}.btn-yellow.btn-outline.btn[disabled],input[type="submit"].btn-yellow.btn-outline.btn[disabled],.btn-yellow.btn-outline.btn-disabled,input[type="submit"].btn-yellow.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(255,200,0,0.4);border:1px solid rgba(255,200,0,0.3)}.btn-yellow.btn-outline.btn-active,input[type="submit"].btn-yellow.btn-outline.btn-active{background:0;color:rgba(255,200,0,0.6);border:0;box-shadow:0 1px 3px rgba(204,160,0,0.6) inset}.btn-yellow:hover,input[type="submit"].btn-yellow:hover{color:rgba(0,0,0,0.6);background:#cca000}.btn-yellow.btn-active,input[type="submit"].btn-yellow.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.5) inset}.btn-yellow.btn-active,input[type="submit"].btn-yellow.btn-active,.btn-yellow.btn-disabled,input[type="submit"].btn-yellow.btn-disabled,.btn-yellow.btn[disabled],input[type="submit"].btn-yellow.btn[disabled]{color:rgba(0,0,0,0.5);background:#cca000}.btn-yellow.btn-active:hover,input[type="submit"].btn-yellow.btn-active:hover,.btn-yellow.btn-disabled:hover,input[type="submit"].btn-yellow.btn-disabled:hover,.btn-yellow.btn[disabled]:hover,input[type="submit"].btn-yellow.btn[disabled]:hover{color:rgba(0,0,0,0.5)}.btn-yellow.btn-outline,input[type="submit"].btn-yellow.btn-outline{background:0;border-color:#ffc800;color:#ffc800}.btn-yellow.btn-outline:hover,input[type="submit"].btn-yellow.btn-outline:hover{color:rgba(0,0,0,0.9);background:#ffc800}.btn-yellow.btn-outline.btn[disabled],input[type="submit"].btn-yellow.btn-outline.btn[disabled],.btn-yellow.btn-outline.btn-disabled,input[type="submit"].btn-yellow.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(255,200,0,0.4);border:1px solid rgba(255,200,0,0.3)}.btn-yellow.btn-outline.btn-active,input[type="submit"].btn-yellow.btn-outline.btn-active{background:0;color:rgba(255,200,0,0.6);border:0;box-shadow:0 1px 3px rgba(204,160,0,0.6) inset}.btn-white,input[type="submit"].btn-white{color:rgba(0,0,0,0.9);background:#fff}.btn-white:hover,input[type="submit"].btn-white:hover{color:rgba(0,0,0,0.6);background:#ededed}.btn-white.btn-active,input[type="submit"].btn-white.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.2) inset}.btn-white.btn-active,input[type="submit"].btn-white.btn-active,.btn-white.btn-disabled,input[type="submit"].btn-white.btn-disabled,.btn-white.btn[disabled],input[type="submit"].btn-white.btn[disabled]{color:rgba(0,0,0,0.5);background:#ededed}.btn-white.btn-active:hover,input[type="submit"].btn-white.btn-active:hover,.btn-white.btn-disabled:hover,input[type="submit"].btn-white.btn-disabled:hover,.btn-white.btn[disabled]:hover,input[type="submit"].btn-white.btn[disabled]:hover{color:rgba(0,0,0,0.5)}.btn-white.btn-outline,input[type="submit"].btn-white.btn-outline{background:0;border-color:#fff;color:#fff}.btn-white.btn-outline:hover,input[type="submit"].btn-white.btn-outline:hover{color:rgba(0,0,0,0.9);background:#fff}.btn-white.btn-outline.btn[disabled],input[type="submit"].btn-white.btn-outline.btn[disabled],.btn-white.btn-outline.btn-disabled,input[type="submit"].btn-white.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(255,255,255,0.4);border:1px solid rgba(255,255,255,0.3)}.btn-white.btn-outline.btn-active,input[type="submit"].btn-white.btn-outline.btn-active{background:0;color:rgba(255,255,255,0.6);border:0;box-shadow:0 1px 3px rgba(237,237,237,0.6) inset}.btn-white:hover,input[type="submit"].btn-white:hover{color:rgba(0,0,0,0.6);background:#ededed}.btn-white.btn-active,input[type="submit"].btn-white.btn-active{box-shadow:0 1px 4px rgba(0,0,0,0.2) inset}.btn-white.btn-active,input[type="submit"].btn-white.btn-active,.btn-white.btn-disabled,input[type="submit"].btn-white.btn-disabled,.btn-white.btn[disabled],input[type="submit"].btn-white.btn[disabled]{color:rgba(0,0,0,0.5);background:#ededed}.btn-white.btn-active:hover,input[type="submit"].btn-white.btn-active:hover,.btn-white.btn-disabled:hover,input[type="submit"].btn-white.btn-disabled:hover,.btn-white.btn[disabled]:hover,input[type="submit"].btn-white.btn[disabled]:hover{color:rgba(0,0,0,0.5)}.btn-white.btn-outline,input[type="submit"].btn-white.btn-outline{background:0;border-color:#fff;color:#fff}.btn-white.btn-outline:hover,input[type="submit"].btn-white.btn-outline:hover{color:rgba(0,0,0,0.9);background:#fff}.btn-white.btn-outline.btn[disabled],input[type="submit"].btn-white.btn-outline.btn[disabled],.btn-white.btn-outline.btn-disabled,input[type="submit"].btn-white.btn-outline.btn-disabled{background:0;box-shadow:none;color:rgba(255,255,255,0.4);border:1px solid rgba(255,255,255,0.3)}.btn-white.btn-outline.btn-active,input[type="submit"].btn-white.btn-outline.btn-active{background:0;color:rgba(255,255,255,0.6);border:0;box-shadow:0 1px 3px rgba(237,237,237,0.6) inset}.btn-white.btn-outline.btn-active{box-shadow:none;border:1px solid rgba(255,255,255,0.3);padding:.48750000000000004em 2.5em}.btn-single,.btn-group{display:inline-block;margin-right:2px;vertical-align:bottom}.btn-single:after,.btn-group:after{content:"";display:table;clear:both}.btn-single:after,.btn-group:after{content:"";display:table;clear:both}.btn-single>.btn,.btn-single>input,.btn-group>.btn,.btn-group>input{float:left;border-radius:0;margin-left:-1px}.btn-single>.btn{border-radius:2px}.btn-group>.btn:first-child{border-radius:2px 0 0 2px}.btn-group>.btn:last-child{border-radius:0 2px 2px 0}.btn-group>.btn.btn-round:first-child,.btn-group>.input-search:first-child{border-radius:15px 0 0 15px}.btn-group>.btn.btn-round:last-child,.btn-group>.input-search:last-child{border-radius:0 15px 15px 0}.tools-alert{padding:12px 15px;background:#f7f8f8;color:#0f0f0f;margin-bottom:1.65em}.tools-message{display:none;position:fixed;z-index:100;top:10px;right:10px;max-width:350px;line-height:1.5;font-size:95%;padding:12px 15px;color:#0f0f0f;background:#e0e3e5}.tools-message ul{margin:0;list-style:none}.tools-message-black,.tools-message-blue,.tools-message-red,.tools-message-green{color:rgba(255,255,255,0.95)}.tools-message-black{background:#0f0f0f}.tools-message-blue{background:#2575ed}.tools-message-red{background:#de2c3b}.tools-message-yellow{background:#ffc800}.tools-message-green{background:#2c9f42}.tools-alert-black{background:#dadada}.tools-alert-blue{background:#d3e3fb}.tools-alert-red{background:#f8d5d8}.tools-alert-yellow{background:#fff4cc}.tools-alert-green{background:#d5ecd9}.label,.badge{background:#e0e3e5;font-size:12.75px;display:inline-block;line-height:1;padding:4px 7px 3px 7px;color:#0f0f0f;text-align:center;font-weight:normal;text-transform:uppercase}.label-outline{background:0;border:1px solid #0f0f0f;padding:3px 6px 2px 6px}.badge{border-radius:15px}.badge-small{font-size:11.25px;padding:3px 5px}.label-black,.label-blue,.label-red,.label-green,.badge-black,.badge-blue,.badge-red,.badge-green{color:#fff}.label-black,.badge-black{background:#0f0f0f}.label-blue,.badge-blue{background:#2575ed}.label-red,.badge-red{background:#de2c3b}.label-green,.badge-green{background:#2c9f42}.label-yellow,.badge-yellow{background:#ffc800}.label-white,.badge-white{background:#fff}.label-black.label-outline,.label-blue.label-outline,.label-red.label-outline,.label-green.label-outline,.label-yellow.label-outline,.label-white.label-outline{background:0;color:#0f0f0f}.label-blue.label-outline{border-color:#2575ed;color:#2575ed}.label-red.label-outline{border-color:#de2c3b;color:#de2c3b}.label-green.label-outline{border-color:#2c9f42;color:#2c9f42}.label-yellow.label-outline{border-color:#ffc800;color:#ffc800}.label-white.label-outline{border-color:#fff;color:#fff}#tools-progress{position:fixed;top:0;left:0;width:100%;z-index:1000000;height:10px}#tools-progress span{display:block;width:100%;height:100%;background-color:#1a52a5;background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,0.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.2) 50%,rgba(255,255,255,0.2) 75%,transparent 75%,transparent);-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite;background-size:40px 40px}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.accordion-title{position:relative;display:block;margin:0;margin-bottom:2px;padding:12px 50px 12px 18px;color:#000;text-decoration:none;font-weight:normal;font-size:.9375em;line-height:1,4em;background:#f7f8f8;cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.accordion-title.accordion-title-opened{margin-bottom:0;font-weight:bold;background:#f0f1f2}.accordion-title a,.accordion-title:hover{color:#000;text-decoration:none}.accordion-panel{padding:1.65em;margin-bottom:10px}.accordion-toggle{position:absolute;top:50%;margin-top:-8px;right:20px;padding:0;font-size:0;line-height:1}.accordion-toggle-closed{background:#000;width:1px;height:15px;margin-left:1px}.accordion-toggle-closed:before{position:absolute;top:7px;left:-7px;content:"";width:15px;height:1px;background:#000}.accordion-toggle-opened:before{position:absolute;top:7px;left:-8px;content:"";width:15px;height:1px;background:#000}.filterbox{position:relative}.filterbox input{padding-right:30px}.filterbox span{position:absolute;z-index:2;top:0;right:1px;width:26px;height:100%;cursor:pointer}.filterbox span:after{content:"";display:inline-block;position:relative;top:50%;margin-left:8px;margin-top:-21px;width:0;height:0;vertical-align:middle;border-top:5px solid rgba(0,0,0,0.6);border-right:5px solid transparent;border-left:5px solid transparent}.filterbox-list{z-index:1000;position:absolute;left:0;display:none;margin:0;list-style:none;background:#fff;width:100%;box-shadow:0 1px 3px rgba(0,0,0,0.2);max-height:250px;overflow:auto}.filterbox-list li{padding:4px 10px;color:#000;cursor:pointer}.filterbox-list li:hover{background:#f0f1f2}.filterbox-list li.active{background:#2575ed;color:#fff}.tooltip{position:absolute;z-index:10000;display:inline-block;color:#fff;padding:2px 10px;font-size:12.75px;line-height:1.5em;max-width:250px;background:#0f0f0f}.tooltip-theme-red{background:#de2c3b}.tooltip-theme-blue{background:#2575ed}.tooltip-theme-green{background:#2c9f42}.tooltip-theme-yellow{background:#ffc800}.tooltip-theme-white{background:#fff}.tooltip-theme-yellow,.tooltip-theme-white{color:#000}.dropdown{display:none;position:absolute;z-index:102;top:0;right:0;width:250px;color:#0f0f0f;background:#fff;box-shadow:0 1px 5px rgba(0,0,0,0.3);overflow:auto}.dropdown section{max-height:250px;overflow:auto;padding:20px}.dropdown footer{padding:20px}ul.dropdown{max-height:300px;list-style:none;margin:0;line-height:1.5;font-size:95%;padding:0}ul.dropdown a{display:block;padding:7px 15px;text-decoration:none;color:#0f0f0f}ul.dropdown a:hover{background:#eee}ul.dropdown li.divider{border-bottom:1px solid #e2e2e2}.caret{display:inline-block;width:0;height:0;margin-left:.3em;vertical-align:middle;border-top:5px solid;border-right:5px solid transparent;border-left:5px solid transparent}.caret.caret-up{border-top:0;border-bottom:4px solid}.livesearch-box{position:relative;display:inline-block;width:100%}.livesearch-box input{padding-left:30px}.livesearch-box .close{position:absolute;top:.2em;right:5px;z-index:2;padding:4px 6px;line-height:1;font-size:20px;cursor:pointer;color:#000;text-decoration:none;filter:alpha(opacity=50);-moz-opacity:.5;opacity:.5}.livesearch-box .close:before{content:'\00D7'}.livesearch-box .close:hover{filter:alpha(opacity=100);-moz-opacity:1;opacity:1}.livesearch-box .close:before{content:'\00D7'}.livesearch-box .close:hover{filter:alpha(opacity=100);-moz-opacity:1;opacity:1}.livesearch-icon{position:absolute;top:53%;left:10px;z-index:2}.livesearch-icon:before,.livesearch-icon:after{content:"";position:absolute;top:50%;left:0;margin:-8px 0 0;background:rgba(0,0,0,0.5)}.livesearch-icon:before{width:10px;height:10px;border:2px solid rgba(0,0,0,0.5);background:transparent;border-radius:12px}.livesearch-icon:after{left:10px;width:2px;height:7px;margin-top:0;-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}.tools-droparea{position:relative;overflow:hidden;padding:80px 20px;border:3px dashed rgba(0,0,0,0.1)}.tools-droparea.drag-hover{background:rgba(200,222,250,0.75)}.tools-droparea.drag-drop{background:rgba(250,248,200,0.5)}.tools-droparea-placeholder{text-align:center;font-size:11px;color:rgba(0,0,0,0.5)}.autocomplete{position:absolute;z-index:1000;left:0;display:none;margin:0;list-style:none;background:#fff;width:250px;box-shadow:0 1px 3px rgba(0,0,0,0.2);max-height:250px;overflow:auto}.autocomplete a{padding:4px 10px;color:#000;display:block;text-decoration:none}.autocomplete a:hover{background:#f0f1f2}.autocomplete a.active{background:#2575ed;color:#fff}#modal-overlay{position:fixed;top:0;left:0;margin:auto;overflow:auto;width:100%;height:100%;background-color:#000!important;filter:alpha(opacity=30);-moz-opacity:.3;opacity:.3;z-index:100}.modal-blur{-webkit-filter:blur(3px);-moz-filter:blur(3px);-ms-filter:blur(3px);filter:blur(3px)}.modal-box{position:fixed;top:0;left:0;bottom:0;right:0;overflow-x:hidden;overflow-y:auto;z-index:101}.modal{position:relative;margin:auto;margin-bottom:20px;padding:0;background:#fff;color:#000;box-shadow:0 1px 70px rgba(0,0,0,0.5)}.modal header{padding:30px 40px 5px 40px;font-size:18px;font-weight:bold}.modal section{padding:30px 40px 50px 40px}.modal footer button{width:100%;border-radius:0}.modal-close{position:absolute;top:8px;right:12px;width:30px;height:30px;text-align:right;color:#bbb;font-size:30px;font-weight:300;cursor:pointer}.modal-close:hover{color:#000}.group:after{content:"";display:table;clear:both}.group:after{content:"";display:table;clear:both}.hide{display:none}.highlight{background-color:#f7f3e2}.big{font-size:18px}.small{font-size:12.75px}.smaller{font-size:11.25px}.nowrap,.nowrap td{white-space:nowrap}.req,.required{font-weight:normal;color:#de2c3b}.error{color:#de2c3b}.success{color:#2c9f42}.text-centered{text-align:center}.text-right{text-align:right}.last{margin-right:0!important}.pause{margin-bottom:.825em!important}.end{margin-bottom:0!important}.normal{font-weight:normal}.light{font-weight:300}.bold{font-weight:bold}.italic{font-style:italic}.left{float:left}.right{float:right}.upper{text-transform:uppercase}.list-flat{margin-left:0;list-style:none}.color-black{color:#0f0f0f}.color-white{color:#fff}.color-gray-10{color:rgba(0,0,0,0.1)}.color-gray-20{color:rgba(0,0,0,0.2)}.color-gray-30{color:rgba(0,0,0,0.3)}.color-gray-40{color:rgba(0,0,0,0.4)}.color-gray-50{color:rgba(0,0,0,0.5)}.color-gray-60{color:rgba(0,0,0,0.6)}.color-gray-70{color:rgba(0,0,0,0.7)}.color-gray-80{color:rgba(0,0,0,0.8)}.color-gray-90{color:rgba(0,0,0,0.9)}.color-white-10{color:rgba(255,255,255,0.1)}.color-white-20{color:rgba(255,255,255,0.2)}.color-white-30{color:rgba(255,255,255,0.3)}.color-white-40{color:rgba(255,255,255,0.4)}.color-white-50{color:rgba(255,255,255,0.5)}.color-white-60{color:rgba(255,255,255,0.6)}.color-white-70{color:rgba(255,255,255,0.7)}.color-white-80{color:rgba(255,255,255,0.8)}.color-white-90{color:rgba(255,255,255,0.9)}.video-wrapper{height:0;padding-bottom:56.25%;position:relative;margin-bottom:1.65em}.video-wrapper iframe,.video-wrapper object,.video-wrapper embed{position:absolute;top:0;left:0;width:100%;height:100%}@media only screen and (max-width:767px){.left,.right{float:none}.hide-on-mobile{display:none}}.str{color:#d14}.kwd{color:#333}.com{color:#998}.typ{color:#458}.lit{color:#458}.pun{color:#888}.opn{color:#333}.clo{color:#333}.tag{color:#367ac3}.atn{color:#51a7c9}.atv{color:#709c1a}.dec{color:#666}.var{color:teal}.fun{color:#900}.linenums ol li{list-style-type:none;counter-increment:list;position:relative}.linenums ol li:after{content:counter(list);position:absolute;left:-3.3em;border-right:1px solid #e5e5e5;padding-right:9px;width:2.45em;text-align:right;color:rgba(0,0,0,0.3);font-size:12px}@media only screen and (max-width:767px){.mobile-width-100{width:100%}.units-row .unit-90,.units-row .unit-80,.units-row .unit-75,.units-row .unit-70,.units-row .unit-66,.units-row .unit-65,.units-row .unit-60,.units-row .unit-50,.units-row .unit-40,.units-row .unit-35,.units-row .unit-33,.units-row .unit-30,.units-row .unit-25,.units-row .unit-20,.units-row .unit-10{width:100%;float:none;margin-left:0;margin-bottom:1.65em}.unit-push-90,.unit-push-80,.unit-push-75,.unit-push-70,.unit-push-66,.unit-push-65,.unit-push-60,.unit-push-50,.unit-push-40,.unit-push-35,.unit-push-33,.unit-push-30,.unit-push-25,.unit-push-20,.unit-push-10{left:0}.units-row .unit-push-right{float:none}.units-mobile-50 .unit-90,.units-mobile-50 .unit-80,.units-mobile-50 .unit-75,.units-mobile-50 .unit-70,.units-mobile-50 .unit-66,.units-mobile-50 .unit-65,.units-mobile-50 .unit-60,.units-mobile-50 .unit-40,.units-mobile-50 .unit-30,.units-mobile-50 .unit-35,.units-mobile-50 .unit-33,.units-mobile-50 .unit-25,.units-mobile-50 .unit-20,.units-mobile-50 .unit-10{float:left;margin-left:3%;width:48.5%}.units-mobile-50 .unit-90:first-child,.units-mobile-50 .unit-80:first-child,.units-mobile-50 .unit-75:first-child,.units-mobile-50 .unit-70:first-child,.units-mobile-50 .unit-66:first-child,.units-mobile-50 .unit-65:first-child,.units-mobile-50 .unit-60:first-child,.units-mobile-50 .unit-40:first-child,.units-mobile-50 .unit-35:first-child,.units-mobile-50 .unit-30:first-child,.units-mobile-50 .unit-33:first-child,.units-mobile-50 .unit-25:first-child,.units-mobile-50 .unit-20:first-child,.units-mobile-50 .unit-10:first-child{margin-left:0}}@media only screen and (max-width:767px){.blocks-2,.blocks-3,.blocks-4,.blocks-5,.blocks-6{margin-left:0;margin-bottom:1.65em}.blocks-2>li,.blocks-3>li,.blocks-4>li,.blocks-5>li,.blocks-6>li{float:none;margin-left:0;width:100%}.blocks-mobile-50>li,.blocks-mobile-33>li{float:left;margin-left:3%}.blocks-mobile-33,.blocks-mobile-50{margin-left:-3%}.blocks-mobile-50>li{width:47%}.blocks-mobile-33>li{width:30.333333333333332%}}@media(min-width:768px) and (max-width:979px){h1{font-size:2.25em;line-height:1.125}h2{font-size:1.5em;line-height:1.25}h3{font-size:1.3125em;line-height:1.25}h4{font-size:1.125em;line-height:1.22222222}h5{font-size:1em}h6{font-size:.75em}}@media(max-width:767px){h1{font-size:2.25em;line-height:1.25}h2{font-size:1.5em;line-height:1.15384615}h3{font-size:1.3125em;line-height:1.13636364}h4{font-size:1.125em;line-height:1.11111111}h5{font-size:1em}h6{font-size:.75em}.lead{font-size:1.2em}ul,ol,ul ul,ol ol,ul ol,ol ul{margin-left:1.65em}blockquote{margin-left:0}}@media only screen and (max-width:767px){.navbar.navbar-left,.navbar.navbar-right,.navbar li,.navbar.navbar-left li,.navbar.navbar-right li{float:none;text-align:left;width:auto}.navbar li,.navbar.navbar-right li{margin-left:0;margin-right:0}.fullwidth ul,.fullwidth li{width:auto}.fullwidth li{display:block}}@media only screen and (max-width:767px){.forms-list label{display:inline-block}}@media print{*{text-shadow:none!important;color:#000!important;background:transparent!important;box-shadow:none!important;font-size:12pt}.h1,h1{font-size:36pt}.h2,h2{font-size:24pt}.h3,h3{font-size:18pt}.h4,h4{font-size:14pt}.h5,h5{font-size:12pt}.h6,h6{font-size:12pt}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{page-break-inside:avoid}blockquote{border:0;font-style:italic}img{max-width:100%!important}select{background:#fff!important}} \ No newline at end of file diff --git a/themes/admin-kube/index.html b/themes/admin-kube/index.html new file mode 100644 index 00000000..60458436 --- /dev/null +++ b/themes/admin-kube/index.html @@ -0,0 +1,54 @@ + + +
+ + + +Hello
+