├── paula ├── favicon.ico ├── html │ ├── mod_custom │ │ └── clean.php │ ├── mod_articles_news │ │ ├── portfolio.php │ │ └── iconmodule.php │ └── modules.php ├── images │ ├── errorcat.jpg │ └── offlinecat.jpg ├── template_preview.png ├── template_thumbnail.png ├── vendor │ ├── font-awesome │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── screen-reader.less │ │ │ ├── fixed-width.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── core.less │ │ │ ├── stacked.less │ │ │ ├── font-awesome.less │ │ │ ├── bordered-pulled.less │ │ │ ├── rotated-flipped.less │ │ │ ├── path.less │ │ │ ├── animated.less │ │ │ ├── mixins.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _core.scss │ │ │ ├── font-awesome.scss │ │ │ ├── _stacked.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _path.scss │ │ │ ├── _animated.scss │ │ │ ├── _mixins.scss │ │ │ └── _variables.scss │ ├── bootstrap │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ ├── scrollreveal │ │ └── scrollreveal.min.js │ └── magnific-popup │ │ ├── magnific-popup.css │ │ └── jquery.magnific-popup.min.js ├── css │ ├── error_rtl.css │ ├── error.css │ ├── creative.min.css │ ├── creative-blue.min.css │ ├── creative.css │ └── creative-blue.css ├── less │ ├── variables.less │ ├── variables-blue.less │ ├── mixins.less │ ├── creative.less │ └── creative-blue.less ├── language │ ├── en-GB │ │ ├── en-GB.tpl_paula.sys.ini │ │ └── en-GB.tpl_paula.ini │ └── de-DE │ │ ├── de-DE.tpl_paula.sys.ini │ │ └── de-DE.tpl_paula.ini ├── js │ ├── creative.min.js │ └── creative.js ├── LICENSE ├── component.php ├── templateDetails.xml ├── offline.php ├── error.php └── index.php ├── LICENSE └── README.md /paula/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/favicon.ico -------------------------------------------------------------------------------- /paula/html/mod_custom/clean.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | content; ?> 5 | -------------------------------------------------------------------------------- /paula/images/errorcat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/images/errorcat.jpg -------------------------------------------------------------------------------- /paula/images/offlinecat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/images/offlinecat.jpg -------------------------------------------------------------------------------- /paula/template_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/template_preview.png -------------------------------------------------------------------------------- /paula/template_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/template_thumbnail.png -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /paula/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolcat-creations/paula-joomla-template/master/paula/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /paula/css/error_rtl.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. 3 | * @license GNU General Public License version 2 or later; see LICENSE.txt 4 | */ 5 | 6 | /* Start Common Styles */ 7 | 8 | body { 9 | text-align: right; 10 | } 11 | 12 | .TD{ 13 | text-align: left; 14 | } 15 | 16 | #errorboxbody { 17 | text-align: right; 18 | } 19 | #techinfo { 20 | text-align: right; 21 | } 22 | -------------------------------------------------------------------------------- /paula/less/variables.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | 3 | // Gray and Brand Colors for use across theme 4 | 5 | @theme-primary: #F05F40; 6 | 7 | @gray-base: #000; 8 | @gray-darker: lighten(@gray-base, 13.5%); // #222 9 | @gray-dark: lighten(@gray-base, 20%); // #333 10 | @gray: lighten(@gray-base, 33.5%); // #555 11 | @gray-light: lighten(@gray-base, 46.7%); // #777 12 | @gray-lighter: lighten(@gray-base, 93.5%); // #eee -------------------------------------------------------------------------------- /paula/less/variables-blue.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | 3 | // Gray and Brand Colors for use across theme 4 | 5 | @theme-primary: #2383c6; 6 | 7 | @gray-base: #000; 8 | @gray-darker: lighten(@gray-base, 13.5%); // #222 9 | @gray-dark: lighten(@gray-base, 20%); // #333 10 | @gray: lighten(@gray-base, 33.5%); // #555 11 | @gray-light: lighten(@gray-base, 46.7%); // #777 12 | @gray-lighter: lighten(@gray-base, 93.5%); // #eee -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /paula/language/en-GB/en-GB.tpl_paula.sys.ini: -------------------------------------------------------------------------------- 1 | TPL_PAULA_DESC="My first Joomla! template" 2 | TPL_PAULA_POSITION_MAINNAV="Mainnavigation" 3 | TPL_PAULA_POSITION_HEADER="Headerarea" 4 | TPL_PAULA_POSITION_TEASER="Teaserarea" 5 | TPL_PAULA_POSITION_TOP="Top" 6 | TPL_PAULA_POSITION_BREADCRUMBS="Navigationpath" 7 | TPL_PAULA_POSITION_RIGHT="Right" 8 | TPL_PAULA_POSITION_PORTFOLIO="Portfolio" 9 | TPL_PAULA_POSITION_ACTION="Call to Action" 10 | TPL_PAULA_POSITION_CONTACT="Contact" 11 | -------------------------------------------------------------------------------- /paula/language/de-DE/de-DE.tpl_paula.sys.ini: -------------------------------------------------------------------------------- 1 | TPL_PAULA_DESC="Mein erstes Joomla! Template" 2 | TPL_PAULA_POSITION_MAINNAV="Hauptnavigation" 3 | TPL_PAULA_POSITION_HEADER="Headerbereich" 4 | TPL_PAULA_POSITION_TEASER="Teaserbereich" 5 | TPL_PAULA_POSITION_TOP="Oben" 6 | TPL_PAULA_POSITION_BREADCRUMBS="Navigationspfad" 7 | TPL_PAULA_POSITION_RIGHT="Rechts" 8 | TPL_PAULA_POSITION_PORTFOLIO="Referenzen" 9 | TPL_PAULA_POSITION_ACTION="Call to Action" 10 | TPL_PAULA_POSITION_CONTACT="Kontakt" 11 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /paula/language/en-GB/en-GB.tpl_paula.ini: -------------------------------------------------------------------------------- 1 | PAULA="Paula Template" 2 | TPL_PAULA_DESC="My first Joomla! template" 3 | TPL_PAULA_FIELD_THEME="Templatecolor" 4 | TPL_PAULA_FIELD_THEME_DESC="Chose the Templatecolor here" 5 | TPL_PAULA_FIELD_THEME_ORANGE="Orange" 6 | TPL_PAULA_FIELD_THEME_BLUE="Blue" 7 | TPL_PAULA_FIELD_LOGOTYPE="Logostyle" 8 | TPL_PAULA_FIELD_LOGOTYPE_DESC="Chose here if you want to display your logo as text or image" 9 | TPL_PAULA_FIELD_LOGOTYPE_TEXT="Textlogo" 10 | TPL_PAULA_FIELD_LOGOTYPE_IMG="Imagelogo" 11 | TPL_PAULA_FIELD_LOGOTEXT="Logotext" 12 | TPL_PAULA_FIELD_LOGOTEXT_DESC="Type in the Text that should be displayed as your Logo" 13 | TPL_PAULA_FIELD_IMGUPLOAD="Upload Image" 14 | TPL_PAULA_FIELD_IMGUPLOAD_DESC="Upload an image in 200 x 20px" 15 | TPL_PAULA_FIELD_ALT="Logo alt text" 16 | TPL_PAULA_FIELD_ALT_DESC="Type in the alt-tag for the logoimage" 17 | TPL_PAULA_FIELD_MAINOUTPUT= "Output Component-Area" 18 | TPL_PAULA_FIELD_MAINOUTPUT_DESC="Chose if the Component and the right sidebar should be displayed." -------------------------------------------------------------------------------- /paula/language/de-DE/de-DE.tpl_paula.ini: -------------------------------------------------------------------------------- 1 | PAULA="Paula Template" 2 | TPL_PAULA_DESC="Mein erstes Joomla! Template" 3 | TPL_PAULA_FIELD_THEME="Templatefarbe" 4 | TPL_PAULA_FIELD_THEME_DESC="Wählen Sie hier die Templatefarbe aus" 5 | TPL_PAULA_FIELD_THEME_ORANGE="Orange" 6 | TPL_PAULA_FIELD_THEME_BLUE="Blau" 7 | TPL_PAULA_FIELD_LOGOTYPE="Logoart" 8 | TPL_PAULA_FIELD_LOGOTYPE_DESC="Wählen Sie hier aus ob Sie das Logo als Text oder Bild darstellen wollen" 9 | TPL_PAULA_FIELD_LOGOTYPE_TEXT="Textlogo" 10 | TPL_PAULA_FIELD_LOGOTYPE_IMG="Bildlogo" 11 | TPL_PAULA_FIELD_LOGOTEXT="Logotext" 12 | TPL_PAULA_FIELD_LOGOTEXT_DESC="Tragen Sie hier den Text ein, der als Logo erscheinen soll" 13 | TPL_PAULA_FIELD_LOGOIMG="Bild hochladen" 14 | TPL_PAULA_FIELD_LOGOIMG_DESC="Laden Sie hier ein Bild im Format 200 x 20px hoch" 15 | TPL_PAULA_FIELD_LOGOIMG_ALT="Logo Alt Text" 16 | TPL_PAULA_FIELD_IMGUPLOAD_ALT_DESC="Tragen Sie hier den Alt-tag für das Logobild ein" 17 | TPL_PAULA_FIELD_MAINOUTPUT= "Komponentenbereich ausgeben" 18 | TPL_PAULA_FIELD_MAINOUTPUT_DESC="Wählen Sie aus ob die Komponente und die rechte Seitenleiste angezeigt werden sollen." -------------------------------------------------------------------------------- /paula/js/creative.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Creative v1.1.0 (http://startbootstrap.com/template-overviews/creative) 3 | * Copyright 2013-2016 Start Bootstrap 4 | * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE) 5 | */ 6 | !function(a){"use strict";a("a.page-scroll").bind("click",function(e){var o=a(this);a("html, body").stop().animate({scrollTop:a(o.attr("href")).offset().top-50},1250,"easeInOutExpo"),e.preventDefault()}),a("body").scrollspy({target:".navbar-fixed-top",offset:51}),a(".navbar-collapse ul li a:not(.dropdown-toggle)").click(function(){a(".navbar-toggle:visible").click()}),a("#mainNav").affix({offset:{top:100}}),window.sr=ScrollReveal(),sr.reveal(".sr-icons",{duration:600,scale:.3,distance:"0px"},200),sr.reveal(".sr-button",{duration:1e3,delay:200}),sr.reveal(".sr-contact",{duration:600,scale:.3,distance:"0px"},300),a(".popup-gallery").magnificPopup({delegate:"a",type:"image",tLoading:"Loading image #%curr%...",mainClass:"mfp-img-mobile",gallery:{enabled:!0,navigateByImgClick:!0,preload:[0,1]},image:{tError:'The image #%curr% could not be loaded.'}})}(jQuery); -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /paula/LICENSE: -------------------------------------------------------------------------------- 1 | 2 | The MIT License (MIT) 3 | 4 | Copyright (c) 2013-2016 Blackrock Digital LLC. 5 | 6 | Permission is hereby granted, free of charge, to any person obtaining a copy 7 | of this software and associated documentation files (the "Software"), to deal 8 | in the Software without restriction, including without limitation the rights 9 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | copies of the Software, and to permit persons to whom the Software is 11 | furnished to do so, subject to the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be included in 14 | all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 22 | THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # paula-joomla-template 2 | Joomla! Frontend Template basierend auf https://github.com/BlackrockDigital/startbootstrap-creative / 3 | Eine Beschreibung des Templates sowie alle Informationen zur Konfiguration finden Sie im Buch 4 | Joomla! 3: Professionelle Webentwicklung. Aktuell zu Version 3.7 von David Jardin (Autor), Elisa Foltyn (Autor) 5 | Verlag: Carl Hanser Verlag GmbH & Co. KG; Auflage: 2 (11. September 2017) 6 | Sprache: Deutsch 7 | ISBN-10: 3446440151 8 | ISBN-13: 978-3446440159 9 | 10 | Das Kapitel im Buch behandelt in Kürze die Version 1.0 dieses Templates, die "master" Branch dient zur Weiterentwicklung. 11 | 12 | Jeder ist herzlich dazu eingeladen PRs oder Issues zu erstellen. 13 | 14 | Joomla! Frontend Template based on https://github.com/BlackrockDigital/startbootstrap-creative 15 | A description of the Template as well as all informations how to configure it, can be found in the (german) book: 16 | Joomla! 3: Professionelle Webentwicklung. Aktuell zu Version 3.7 von David Jardin (Autor), Elisa Foltyn (Autor) 17 | Verlag: Carl Hanser Verlag GmbH & Co. KG; Auflage: 2 (11. September 2017) 18 | Sprache: Deutsch 19 | ISBN-10: 3446440151 20 | ISBN-13: 978-3446440159 21 | 22 | The bookchapter decribes shortly the version 1.0 of this template. the "master" branch is an extended version. 23 | 24 | Feel free to do PR or to open issues. 25 | -------------------------------------------------------------------------------- /paula/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | 3 | .transition-all() { 4 | -webkit-transition: all 0.35s; 5 | -moz-transition: all 0.35s; 6 | transition: all 0.35s; 7 | } 8 | 9 | .background-cover() { 10 | -webkit-background-size: cover; 11 | -moz-background-size: cover; 12 | background-size: cover; 13 | -o-background-size: cover; 14 | } 15 | 16 | .button-variant(@color; @background; @border) { 17 | color: @color; 18 | background-color: @background; 19 | border-color: @border; 20 | .transition-all; 21 | 22 | &:hover, 23 | &:focus, 24 | &.focus, 25 | &:active, 26 | &.active, 27 | .open > .dropdown-toggle& { 28 | color: @color; 29 | background-color: darken(@background, 5%); 30 | border-color: darken(@border, 7%); 31 | } 32 | &:active, 33 | &.active, 34 | .open > .dropdown-toggle& { 35 | background-image: none; 36 | } 37 | &.disabled, 38 | &[disabled], 39 | fieldset[disabled] & { 40 | &, 41 | &:hover, 42 | &:focus, 43 | &.focus, 44 | &:active, 45 | &.active { 46 | background-color: @background; 47 | border-color: @border; 48 | } 49 | } 50 | 51 | .badge { 52 | color: @background; 53 | background-color: @color; 54 | } 55 | } 56 | 57 | .sans-serif-font() { 58 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 59 | } 60 | 61 | .serif-font() { 62 | font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif; 63 | } -------------------------------------------------------------------------------- /paula/html/mod_articles_news/portfolio.php: -------------------------------------------------------------------------------- 1 | get('module_tag', 'section'); 3 | $moduleId = $module->position . '-' . $module->id; 4 | ?> 5 | 6 | < class="no-padding" id=""> 7 |
8 | 41 |
42 | > 43 | -------------------------------------------------------------------------------- /paula/css/error.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. 3 | * @license GNU General Public License version 2 or later; see LICENSE.txt 4 | */ 5 | 6 | /* Start Common Styles */ 7 | * { 8 | font-family: helvetica, arial, sans-serif; 9 | font-size: 11px; 10 | color: #5F6565; 11 | } 12 | 13 | html { 14 | height: 100%; 15 | margin-bottom: 1px; 16 | } 17 | 18 | body { 19 | margin: 0px; 20 | padding: 0px; 21 | height: 100%; 22 | margin-bottom: 1px; 23 | background: #FFFFFF; 24 | font-family: helvetica, arial, sans-serif; 25 | font-weight: normal; 26 | padding-top: 0px; 27 | margin-top: 0px; 28 | } 29 | 30 | .error { 31 | margin-left: auto; 32 | margin-right: auto; 33 | } 34 | 35 | table, td, th, div, pre, blockquote, ul, ol, dl, address,.componentheading,.contentheading,.contentpagetitle,.sectiontableheader,.newsfeedheading { 36 | font-family: helvetica, arial, sans-serif; 37 | font-weight: normal; 38 | } 39 | 40 | #outline { 41 | width: 900px; 42 | margin: 0 auto; 43 | padding: 0px; 44 | padding-top: 60px; 45 | padding-bottom: 60px; 46 | background: #FFFFFF; 47 | } 48 | #errorboxoutline { 49 | width: 900px; 50 | margin: 0px; 51 | padding: 0px; 52 | border: 1px solid #000000; 53 | } 54 | #errorboxheader { 55 | width: 900px; 56 | margin: 0px; 57 | padding: 0px; 58 | background: #E44249; 59 | color: #FFFFFF; 60 | font-weight: bold; 61 | font-size: 12px; 62 | line-height: 22px; 63 | text-align: center; 64 | border-bottom: 1px solid #000000; 65 | } 66 | #errorboxbody { 67 | margin: 0px; 68 | padding: 10px; 69 | text-align: left; 70 | } 71 | #techinfo { 72 | margin: 10px; 73 | padding: 10px; 74 | text-align: left; 75 | border: 1px solid #CCCCCC; 76 | color: #CCCCCC; 77 | } 78 | #techinfo p { 79 | color: #CCCCCC; 80 | } -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | .fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | .fa-icon-rotate(@degrees, @rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation})"; 16 | -webkit-transform: rotate(@degrees); 17 | -ms-transform: rotate(@degrees); 18 | transform: rotate(@degrees); 19 | } 20 | 21 | .fa-icon-flip(@horiz, @vert, @rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=@{rotation}, mirror=1)"; 23 | -webkit-transform: scale(@horiz, @vert); 24 | -ms-transform: scale(@horiz, @vert); 25 | transform: scale(@horiz, @vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | .sr-only() { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | .sr-only-focusable() { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- 1 | // Mixins 2 | // -------------------------- 3 | 4 | @mixin fa-icon() { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | 14 | @mixin fa-icon-rotate($degrees, $rotation) { 15 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation})"; 16 | -webkit-transform: rotate($degrees); 17 | -ms-transform: rotate($degrees); 18 | transform: rotate($degrees); 19 | } 20 | 21 | @mixin fa-icon-flip($horiz, $vert, $rotation) { 22 | -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=#{$rotation}, mirror=1)"; 23 | -webkit-transform: scale($horiz, $vert); 24 | -ms-transform: scale($horiz, $vert); 25 | transform: scale($horiz, $vert); 26 | } 27 | 28 | 29 | // Only display content to screen readers. A la Bootstrap 4. 30 | // 31 | // See: http://a11yproject.com/posts/how-to-hide-content/ 32 | 33 | @mixin sr-only { 34 | position: absolute; 35 | width: 1px; 36 | height: 1px; 37 | padding: 0; 38 | margin: -1px; 39 | overflow: hidden; 40 | clip: rect(0,0,0,0); 41 | border: 0; 42 | } 43 | 44 | // Use in conjunction with .sr-only to only display content when it's focused. 45 | // 46 | // Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1 47 | // 48 | // Credit: HTML5 Boilerplate 49 | 50 | @mixin sr-only-focusable { 51 | &:active, 52 | &:focus { 53 | position: static; 54 | width: auto; 55 | height: auto; 56 | margin: 0; 57 | overflow: visible; 58 | clip: auto; 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /paula/js/creative.js: -------------------------------------------------------------------------------- 1 | (function($) { 2 | "use strict"; // Start of use strict 3 | 4 | // jQuery for page scrolling feature - requires jQuery Easing plugin 5 | $('a.page-scroll').bind('click', function(event) { 6 | var $anchor = $(this); 7 | $('html, body').stop().animate({ 8 | scrollTop: ($($anchor.attr('href')).offset().top - 50) 9 | }, 1250, 'easeInOutExpo'); 10 | event.preventDefault(); 11 | }); 12 | 13 | // Highlight the top nav as scrolling occurs 14 | $('body').scrollspy({ 15 | target: '.navbar-fixed-top', 16 | offset: 51 17 | }); 18 | 19 | // Closes the Responsive Menu on Menu Item Click 20 | $('.navbar-collapse ul li a:not(.dropdown-toggle)').click(function() { 21 | $('.navbar-toggle:visible').click(); 22 | }); 23 | 24 | // Offset for Main Navigation 25 | $('#mainNav').affix({ 26 | offset: { 27 | top: 100 28 | } 29 | }) 30 | 31 | // Initialize and Configure Scroll Reveal Animation 32 | window.sr = ScrollReveal(); 33 | sr.reveal('.sr-icons', { 34 | duration: 600, 35 | scale: 0.3, 36 | distance: '0px' 37 | }, 200); 38 | sr.reveal('.sr-button', { 39 | duration: 1000, 40 | delay: 200 41 | }); 42 | sr.reveal('.sr-contact', { 43 | duration: 600, 44 | scale: 0.3, 45 | distance: '0px' 46 | }, 300); 47 | 48 | // Initialize and Configure Magnific Popup Lightbox Plugin 49 | $('.popup-gallery').magnificPopup({ 50 | delegate: 'a', 51 | type: 'image', 52 | tLoading: 'Loading image #%curr%...', 53 | mainClass: 'mfp-img-mobile', 54 | gallery: { 55 | enabled: true, 56 | navigateByImgClick: true, 57 | preload: [0, 1] // Will preload 0 - before current, and 1 after the current image 58 | }, 59 | image: { 60 | tError: 'The image #%curr% could not be loaded.' 61 | } 62 | }); 63 | 64 | })(jQuery); // End of use strict 65 | -------------------------------------------------------------------------------- /paula/html/mod_articles_news/iconmodule.php: -------------------------------------------------------------------------------- 1 | get('module_tag', 'section'); 3 | $moduleId = $module->position . '-' . $module->id; 4 | $headerTag = htmlspecialchars($params->get('header_tag', 'h2'), ENT_COMPAT, 'UTF-8'); 5 | $headerClass = $params->get('header_class'); 6 | $headerClass = !empty($headerClass) ? ' class="section-heading ' . htmlspecialchars($headerClass, ENT_COMPAT, 'UTF-8') . '"' : ''; 7 | 8 | $item_heading = $params->get('item_heading', 'h4'); 9 | $iconitems = count($list); 10 | $lgclass = floor(12 / $iconitems); 11 | ?> 12 | 13 | < class="" id=""> 14 | 15 | 16 | showtitle) : ?> 17 |
18 |
19 |
20 | <> 21 | title; ?> 22 | > 23 |
24 |
25 |
26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 |
34 |
35 | 36 | get('item_title')) : ?> 37 | 38 | 39 | < class="newsflash-titleget('moduleclass_sfx'); ?>"> 40 | 41 | 42 | get('link_titles') && $item->link != '') : ?> 43 | 44 | title; ?> 45 | 46 | 47 | 48 | 49 | title; ?> 50 | 51 | 52 | > 53 | 54 | 55 | 56 | get('intro_only')) : ?> 57 | afterDisplayTitle; ?> 58 | 59 | 60 | beforeDisplayContent; ?> 61 | 62 | get('show_introtext', '1')) : ?> 63 | introtext; ?> 64 | 65 | 66 | afterDisplayContent; ?> 67 | 68 | link) && $item->readmore != 0 && $params->get('readmore')) : ?> 69 | link . '">' . $item->linkText . ''; ?> 70 | 71 |
72 |
73 | 74 |
75 |
76 | > 77 | -------------------------------------------------------------------------------- /paula/component.php: -------------------------------------------------------------------------------- 1 | baseurl . '/templates/' . $this->template; 5 | 6 | // Laden der Joomla! System CSS 7 | $this->addStyleSheet($this->baseurl . '/templates/system/css/system.css'); 8 | 9 | // Laden der Bootstrap Core CSS 10 | $this->addStyleSheet($tplpath . '/vendor/bootstrap/css/bootstrap.min.css'); 11 | 12 | // Schriften laden 13 | $this->addStyleSheet($tplpath . '/vendor/font-awesome/css/font-awesome.min.css'); 14 | $this->addStyleSheet('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'); 15 | $this->addStyleSheet('https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic'); 16 | 17 | // CSS Datei für die Portfolio Popups laden 18 | $this->addStyleSheet($tplpath . '/vendor/magnific-popup/magnific-popup.css'); 19 | 20 | // CSS Dateien für das Template laden und hinterlegten Parameter prüfen. 21 | // Bevor die CSS Dateien per Parameter eingebunden wurden, wurden die CSS folgendermaßen geladen: 22 | // $this->addStyleSheet ($this->baseurl . '/templates/' . $this->template . '/css/creative.css'); 23 | 24 | if ($this->params->get('templatecolor', 'orange') == 'orange') 25 | { 26 | $this->addStyleSheet($tplpath . '/css/creative.css'); 27 | } 28 | else 29 | { 30 | $this->addStyleSheet($tplpath . '/css/creative-blue.css'); 31 | } 32 | 33 | // Skripte laden 34 | 35 | // jQuery Skript von Joomla! laden 36 | JHtml::_('jquery.framework'); 37 | 38 | // Bootstrap von Joomla! einbinden 39 | // (Die Bootstrap Datei muss nicht extra geladen werden, nur in den richtigen Ordner verschoben werden) 40 | JHtml::_('bootstrap.framework'); 41 | 42 | // Laden der Skriptdateien für Easing, Scrolling und Popups 43 | $this->addScript('http://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js', 'text/javascript', true, false); 44 | $this->addScript($tplpath. '/vendor/scrollreveal/scrollreveal.min.js', 'text/javascript', true, false); 45 | $this->addScript($tplpath . '/vendor/magnific-popup/jquery.magnific-popup.min.js', 'text/javascript', true, false); 46 | 47 | // Laden der Skriptdateien für das Template 48 | $this->addScript($tplpath . '/js/creative.min.js', 'text/javascript', true, false); 49 | 50 | /* Dokument Objekt laden */ 51 | $doc = JFactory::getDocument(); 52 | 53 | // Custom Tags für den IE9 definieren 54 | $stylelink = '' . "\n"; 58 | 59 | // Custom Tags für den IE9 hinzufügen 60 | $doc->addCustomTag($stylelink); 61 | 62 | // Custom Tag für den Viewport definieren 63 | $metaviewport = ""; 64 | $doc->addCustomTag($metaviewport); 65 | ?> 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /paula/templateDetails.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | paula 4 | 2017 5 | Elisa Foltyn 6 | book@coolcat-creations.com 7 | http://www.coolcat-creations.com 8 | Copyright 2013-2016 Blackrock Digital LLC 9 | Code released under the [MIT] 10 | (https://github.com/BlackrockDigital/startbootstrap-creative/blob/gh-pages/LICENSE) license. 11 | 12 | 1.0 13 | TPL_PAULA_DESC 14 | 15 | index.php 16 | offline.php 17 | error.php 18 | component.php 19 | templateDetails.xml 20 | template_preview.png 21 | template_thumbnail.png 22 | favicon.ico 23 | LICENSE 24 | css 25 | html 26 | images 27 | js 28 | language 29 | less 30 | vendor 31 | 32 | 33 | 34 | mainnav 35 | header 36 | teaser 37 | top 38 | breadcrumbs 39 | right 40 | portfolio 41 | action 42 | contact 43 | 44 | 45 | 46 | 47 |
48 | 49 | 53 | 54 | 55 | 56 | 57 | 59 | 60 | 61 | 62 | 63 | 67 | 68 | 72 | 73 | 77 | 78 | 81 | 82 | 83 | 84 |
85 |
86 |
87 | 88 | 89 | en-GB/en-GB.tpl_paula.ini 90 | en-GB/en-GB.tpl_paula.sys.ini 91 | de-DE/de-DE.tpl_paula.ini 92 | de-DE/de-DE.tpl_paula.sys.ini 93 | 94 | 95 |
-------------------------------------------------------------------------------- /paula/html/modules.php: -------------------------------------------------------------------------------- 1 | get('module_tag', 'div'); 16 | $moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8'); 17 | 18 | 19 | if (!empty ($module->content)) : ?> 20 | 21 | < class="collapse navbar-collapse " id="bs-example-navbar-collapse-1"> 22 | content; ?> 23 | > 24 | 25 | get('module_tag', 'header'); 32 | $moduleId = $module->position . '-' . $module->id; 33 | $moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8'); 34 | $headerTag = htmlspecialchars($params->get('header_tag', 'h1'), ENT_COMPAT, 'UTF-8'); 35 | $headerClass = htmlspecialchars($params->get('header_class', ''), ENT_COMPAT, 'UTF-8'); 36 | $bgimage = 'style="background-image:url('. $params->get('backgroundimage') .');"'; 37 | 38 | if ($module->content) 39 | { 40 | ?> 41 | 42 | < id="" class="" > 43 |
44 |
45 | 46 | showtitle) : ?> 47 | 48 | <> 49 | title; ?> 50 | > 51 | 52 | 53 | 54 | content; ?> 55 |
56 |
57 | > 58 | get('module_tag', 'header'); 65 | $moduleId = $module->position . '-' . $module->id; 66 | $moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8'); 67 | $headerTag = htmlspecialchars($params->get('header_tag', 'h1'), ENT_COMPAT, 'UTF-8'); 68 | $headerClass = htmlspecialchars($params->get('header_class', ''), ENT_COMPAT, 'UTF-8'); 69 | $bgimage = 'style="background-image:url('. $params->get('backgroundimage') .');"'; 70 | 71 | if ($module->content) 72 | { 73 | ?> 74 | 75 | < class="bg-primary" id="" > 76 |
77 |
78 |
79 | 80 | showtitle) : ?> 81 | 82 | <> 83 | title; ?> 84 | > 85 | 86 | 87 | 88 | content; ?> 89 |
90 |
91 |
92 | > 93 | 94 | get('module_tag', 'div'); 101 | $moduleId = $module->position . '-' . $module->id; 102 | $headerTag = htmlspecialchars($params->get('header_tag', 'h3'), ENT_COMPAT, 'UTF-8'); 103 | $headerClass = htmlspecialchars($params->get('header_class', 'page-header'), ENT_COMPAT, 'UTF-8'); 104 | $moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'), ENT_COMPAT, 'UTF-8'); 105 | if ($module->content) 106 | { 107 | ?> 108 | 109 | < class="bg-dark" id=""> 110 |
111 |
112 |
113 | showtitle) 114 | { 115 | echo '<' . $headerTag . ' class="' . $headerClass . '">' . $module->title . ''; 116 | } 117 | ?> 118 | 119 | content; ?> 120 |
121 |
122 |
123 | > 124 | 125 | setHtml5(true); 19 | 20 | $fullWidth = 1; 21 | 22 | // Add JavaScript Frameworks 23 | JHtml::_('bootstrap.framework'); 24 | 25 | // Add template js 26 | JHtml::_('script', 'template.js', array('version' => 'auto', 'relative' => true)); 27 | 28 | // Add html5 shiv 29 | JHtml::_('script', 'jui/html5.js', array('version' => 'auto', 'relative' => true, 'conditional' => 'lt IE 9')); 30 | 31 | // Add Stylesheets 32 | JHtml::_('stylesheet', '../vendor/bootstrap/css/bootstrap.min.css', array('version' => 'auto', 'relative' => true)); 33 | JHtml::_('stylesheet', '/creative.css', array('version' => 'auto', 'relative' => true)); 34 | JHtml::_('stylesheet', '../vendor/font-awesome/css/font-awesome.min.css', array('version' => 'auto', 'relative' => true)); 35 | JHtml::_('stylesheet', 'https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800', array('version' => 'auto', 'relative' => true)); 36 | JHtml::_('stylesheet', 'https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic', array('version' => 'auto', 'relative' => true)); 37 | 38 | JHtml::_('stylesheet', 'offline.css', array('version' => 'auto', 'relative' => true)); 39 | 40 | 41 | // Load optional RTL Bootstrap CSS 42 | JHtml::_('bootstrap.loadCss', false, $this->direction); 43 | 44 | // Logo file or site title param 45 | $sitename = $app->get('sitename'); 46 | 47 | if ($this->params->get('logoFile')) 48 | { 49 | $logo = '' . $sitename . ''; 50 | } 51 | elseif ($this->params->get('sitetitle')) 52 | { 53 | $logo = '' . htmlspecialchars($this->params->get('sitetitle')) . ''; 54 | } 55 | else 56 | { 57 | $logo = '' . $sitename . ''; 58 | } 59 | ?> 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 |
69 |
70 |
71 |

Diese Seite ist momentan offline.

72 | 73 |

74 | 75 |

get('sitename')); ?>

76 | 77 | get('offline_image') && file_exists($app->get('offline_image'))) : ?> 78 | <?php echo htmlspecialchars($app->get('sitename')); ?> 79 | 80 | get('display_offline_message', 1) == 1 && str_replace(' ', '', $app->get('offline_message')) != '') : ?> 81 |

get('offline_message'); ?>

82 | get('display_offline_message', 1) == 2) : ?> 83 |

84 | 85 |
86 | 87 |
88 |
89 | 90 |
91 |
92 | 93 |
94 | 95 | 96 |
97 |
98 | 99 |
100 | 101 | 1) : ?> 102 | 103 | 104 |
105 |
106 | 107 |
108 | 109 |
110 | 111 | 112 | 113 | 114 | 115 | 116 |
117 |
118 |
119 | 120 |
121 | 122 | 123 | 124 | 125 | 126 | 127 | -------------------------------------------------------------------------------- /paula/error.php: -------------------------------------------------------------------------------- 1 | error)) 7 | { 8 | $this->error = JError::raiseWarning(404, JText::_('JERROR_ALERTNOAUTHOR')); 9 | $this->debug = false; 10 | } 11 | 12 | $app = JFactory::getApplication(); 13 | ?> 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 28 | 29 | 30 | 33 | 36 | 39 | 40 | 41 | 43 | 44 | 45 | 46 | 50 | 51 | <?php echo $this->error->getCode(); ?> 52 | - <?php echo htmlspecialchars($this->error->getMessage(), ENT_QUOTES, 'UTF-8'); ?> 53 | 54 | get('debug_lang', '0') == '1' || $app->get('debug', '0') == '1') : ?> 55 | 56 | 57 | 59 | 60 | 61 | 62 |
64 |
65 |
66 |

error->getCode(); ?> 67 | - error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>

68 |
69 | 70 | error->getCode() == '404') 71 | { ?> 72 |

Leider haben wir diese Seite nicht gefunden

73 |

Der Link ist möglicherweise veraltet oder Sie haben sich vertippt? 74 |

75 | 76 |

Am Besten fangen wir von neuem an:

77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 95 |

96 |

97 | 98 | 99 |
100 |
101 |
102 | debug) : ?> 103 |
104 | 105 |
106 | renderBacktrace(); ?> 107 | 108 | error->getPrevious()) : ?> 109 | 110 | _error here and in the loop as setError() assigns errors to this property and we need this for the backtrace to work correctly ?> 111 | 112 | setError($this->_error->getPrevious()); ?> 113 | 114 |

115 |

_error->getMessage(), ENT_QUOTES, 'UTF-8'); ?>

116 | renderBacktrace(); ?> 117 | setError($this->_error->getPrevious()); ?> 118 | 119 | 120 | setError($this->error); ?> 121 | 122 |
123 |
124 |
125 | 126 | 127 | 128 | 129 | 130 | 131 | -------------------------------------------------------------------------------- /paula/index.php: -------------------------------------------------------------------------------- 1 | baseurl . '/templates/' . $this->template; 5 | 6 | $this->setHtml5(true); 7 | 8 | // Laden der Bootstrap CSS 9 | $this->addStyleSheet($tplpath . '/vendor/bootstrap/css/bootstrap.min.css'); 10 | 11 | // Schriften laden 12 | $this->addStyleSheet($tplpath . '/vendor/font-awesome/css/font-awesome.min.css'); 13 | $this->addStyleSheet('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'); 14 | $this->addStyleSheet('https://fonts.googleapis.com/css?family=Merriweather:400,300,300italic,400italic,700,700italic,900,900italic'); 15 | 16 | // CSS Datei für die Portfolio Popups laden 17 | $this->addStyleSheet($tplpath . '/vendor/magnific-popup/magnific-popup.css'); 18 | 19 | // CSS Dateien für das Template laden und hinterlegten Parameter prüfen. 20 | // Bevor die CSS Dateien per Parameter eingebunden wurden, wurden die CSS folgendermaßen geladen: 21 | // $this->addStyleSheet($tplpath . '/css/creative.css'); 22 | 23 | if ($this->params->get('templatecolor', 'orange') == 'orange') 24 | { 25 | $this->addStyleSheet($tplpath . '/css/creative.css'); 26 | } 27 | else 28 | { 29 | $this->addStyleSheet($tplpath . '/css/creative-blue.css'); 30 | } 31 | 32 | // Skripte laden 33 | 34 | // jQuery Skript von Joomla! laden 35 | JHtml::_('jquery.framework'); 36 | 37 | // Bootstrap von Joomla! einbinden 38 | // (Die Bootstrap Datei muss nicht extra geladen werden, nur in den richtigen Ordner verschoben werden) 39 | JHtml::_('bootstrap.framework'); 40 | 41 | // Laden der Skriptdateien für Easing, Scrolling und Popups 42 | $this->addScript('https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js', 'text/javascript', array('defer'=>'defer')); 43 | $this->addScript($tplpath . '/vendor/scrollreveal/scrollreveal.min.js', 'text/javascript', array('defer'=>'defer')); 44 | $this->addScript($tplpath . '/vendor/magnific-popup/jquery.magnific-popup.min.js', 'text/javascript', array('defer'=>'defer')); 45 | 46 | // Laden der Skriptdateien für das Template 47 | $this->addScript($tplpath . '/js/creative.min.js', 'text/javascript', array('defer'=>'defer')); 48 | 49 | // Custom Tags für den IE9 definieren 50 | $stylelink = '' . "\n"; 54 | 55 | // Custom Tags für den IE9 hinzufügen 56 | $this->addCustomTag($stylelink); 57 | 58 | // MetaTag für den Viewport definieren 59 | $this->setMetaData('viewport', 'width=device-width, initial-scale=1'); 60 | 61 | 62 | // Beginn Template 63 | ?> 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | params->get('mainoutput', 'yes') == 'yes') : ?> 121 |
122 |
123 | 124 | countModules('right')); 127 | 128 | /* Wenn die rechte Spalte existiert, dann wird der Inhalt nicht verschoben */ 129 | if ($rechtespalte == '1'): 130 | $inhaltsklasse = 'class="col-lg-8"'; 131 | 132 | /* Wenn die rechte Spalte nicht existiert, dann wird der Inhalt um 2 Spalten verschoben */ 133 | else : 134 | $inhaltsklasse = 'class="col-lg-8 col-lg-offset-2"'; 135 | 136 | endif; 137 | 138 | ?> 139 | 140 |
> 141 | 142 | 143 | 144 | 145 | 146 | 147 |
148 | 149 | 150 |
151 | 152 |
153 | 154 | 155 |
156 |
157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | countModules('contact')) : ?> 167 |
168 |
169 |
170 | 171 | 172 |
173 |
174 |
175 | 176 | 177 | 178 | 179 | 180 | -------------------------------------------------------------------------------- /paula/css/creative.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Creative v1.1.0 (http://startbootstrap.com/template-overviews/creative) 3 | * Copyright 2013-2016 Start Bootstrap 4 | * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE) 5 | */.navbar-default,a{-webkit-transition:all .35s;-moz-transition:all .35s}header,header .header-content{position:relative;width:100%;text-align:center}body,html{height:100%;width:100%}body{font-family:Merriweather,'Helvetica Neue',Arial,sans-serif;webkit-tap-highlight-color:#222}.btn,.navbar-default,.navbar-default .navbar-header .navbar-brand,h1,h2,h3,h4,h5,h6{font-family:'Open Sans','Helvetica Neue',Arial,sans-serif}hr{border-color:red;border-width:3px;max-width:50px}hr.light{border-color:#fff}a{transition:all .35s;color:red}a:focus,a:hover{color:#c00}p{font-size:16px;line-height:1.5;margin-bottom:20px}.bg-primary{background-color:red}.bg-dark{background-color:#222;color:#fff}.text-faded{color:rgba(255,255,255,.7)}section{padding:100px 0}aside{padding:50px 0}.no-padding{padding:0}.navbar-default{background-color:#fff;border-color:rgba(34,34,34,.05);transition:all .35s}.btn-default,.portfolio-box .portfolio-box-caption{-webkit-transition:all .35s;-moz-transition:all .35s}.navbar-default .navbar-header .navbar-brand{color:red;font-weight:700;text-transform:uppercase}.navbar-default .navbar-header .navbar-brand:focus,.navbar-default .navbar-header .navbar-brand:hover{color:#c00}.navbar-default .navbar-header .navbar-toggle{font-weight:700;font-size:12px;color:#222;text-transform:uppercase}.navbar-default .nav>li>a,.navbar-default .nav>li>a:focus{text-transform:uppercase;font-weight:700;font-size:13px;color:#222}.navbar-default .nav>li>a:focus:hover,.navbar-default .nav>li>a:hover{color:red}.navbar-default .nav>li.active>a,.navbar-default .nav>li.active>a:focus{color:red!important;background-color:transparent}.navbar-default .nav>li.active>a:focus:hover,.navbar-default .nav>li.active>a:hover{background-color:transparent}@media (min-width:768px){.navbar-default{background-color:transparent;border-color:rgba(255,255,255,.3)}.navbar-default .navbar-header .navbar-brand{color:rgba(255,255,255,.7)}.navbar-default .navbar-header .navbar-brand:focus,.navbar-default .navbar-header .navbar-brand:hover{color:#fff}.navbar-default .nav>li>a,.navbar-default .nav>li>a:focus{color:rgba(255,255,255,.7)}.navbar-default .nav>li>a:focus:hover,.navbar-default .nav>li>a:hover{color:#fff}.navbar-default.affix{background-color:#fff;border-color:rgba(34,34,34,.05)}.navbar-default.affix .navbar-header .navbar-brand{color:red;font-size:14px}.navbar-default.affix .navbar-header .navbar-brand:focus,.navbar-default.affix .navbar-header .navbar-brand:hover{color:#c00}.navbar-default.affix .nav>li>a,.navbar-default.affix .nav>li>a:focus{color:#222}.navbar-default.affix .nav>li>a:focus:hover,.navbar-default.affix .nav>li>a:hover{color:red}}header{min-height:auto;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;-o-background-size:cover;background-position:center;color:#fff}header .header-content{padding:100px 15px}header .header-content .header-content-inner h1{font-weight:700;text-transform:uppercase;margin-top:0;margin-bottom:0;font-size:30px}header .header-content .header-content-inner hr{margin:30px auto}header .header-content .header-content-inner p{font-weight:300;color:rgba(255,255,255,.7);font-size:16px;margin-bottom:50px}@media (min-width:768px){header{min-height:100%}header .header-content{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);padding:0 50px}header .header-content .header-content-inner{max-width:1000px;margin-left:auto;margin-right:auto}header .header-content .header-content-inner h1{font-size:50px}header .header-content .header-content-inner p{font-size:18px;max-width:80%;margin-left:auto;margin-right:auto}}.section-heading{margin-top:0}.service-box{max-width:400px;margin:50px auto 0}@media (min-width:992px){.service-box{margin:20px auto 0}}.service-box p{margin-bottom:0}.portfolio-box{position:relative;display:block;max-width:650px;margin:0 auto}.portfolio-box .portfolio-box-caption{color:#fff;opacity:0;display:block;background:rgba(255,0,0,.9);position:absolute;bottom:0;text-align:center;width:100%;height:100%;transition:all .35s}.btn-default.active,.btn-default:active,.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-default,.open>.dropdown-toggle.btn-primary{background-image:none}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content{width:100%;text-align:center;position:absolute;top:50%;transform:translateY(-50%)}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name{font-family:'Open Sans','Helvetica Neue',Arial,sans-serif;padding:0 15px}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category{text-transform:uppercase;font-weight:600;font-size:14px}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name{font-size:18px}.portfolio-box:hover .portfolio-box-caption{opacity:1}.portfolio-box:focus{outline:0}@media (min-width:768px){.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category{font-size:16px}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name{font-size:22px}}.call-to-action h2{margin:0 auto 20px}.text-primary{color:red}.no-gutter>[class*=col-]{padding-right:0;padding-left:0}.btn-default{color:#222;background-color:#fff;border-color:#fff;transition:all .35s}.btn-default.active,.btn-default.focus,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#222;background-color:#f2f2f2;border-color:#ededed}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#fff}.btn-default .badge{color:#fff;background-color:#222}.btn-primary{color:#fff;background-color:red;border-color:red;-webkit-transition:all .35s;-moz-transition:all .35s;transition:all .35s}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#e60000;border-color:#db0000}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:red;border-color:red}.btn-primary .badge{color:red;background-color:#fff}.btn{border:none;border-radius:300px;font-weight:700;text-transform:uppercase}.btn-xl{padding:15px 30px}::-moz-selection{color:#fff;text-shadow:none;background:#222}::selection{color:#fff;text-shadow:none;background:#222}.item-image img{max-width:100%}img::selection{color:#fff;background:0 0}img::-moz-selection{color:#fff;background:0 0} -------------------------------------------------------------------------------- /paula/css/creative-blue.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Start Bootstrap - Creative v1.1.0 (http://startbootstrap.com/template-overviews/creative) 3 | * Copyright 2013-2016 Start Bootstrap 4 | * Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap/blob/gh-pages/LICENSE) 5 | */.navbar-default,a{-webkit-transition:all .35s;-moz-transition:all .35s}header,header .header-content{position:relative;width:100%;text-align:center}body,html{height:100%;width:100%}body{font-family:Merriweather,'Helvetica Neue',Arial,sans-serif;webkit-tap-highlight-color:#222}.btn,.navbar-default,.navbar-default .navbar-header .navbar-brand,h1,h2,h3,h4,h5,h6{font-family:'Open Sans','Helvetica Neue',Arial,sans-serif}hr{border-color:#2383c6;border-width:3px;max-width:50px}hr.light{border-color:#fff}a{transition:all .35s;color:#2383c6}a:focus,a:hover{color:#1b669b}p{font-size:16px;line-height:1.5;margin-bottom:20px}.bg-primary{background-color:#2383c6}.bg-dark{background-color:#222;color:#fff}.text-faded{color:rgba(255,255,255,.7)}section{padding:100px 0}aside{padding:50px 0}.no-padding{padding:0}.navbar-default{background-color:#fff;border-color:rgba(34,34,34,.05);transition:all .35s}.btn-default,.portfolio-box .portfolio-box-caption{-webkit-transition:all .35s;-moz-transition:all .35s}.navbar-default .navbar-header .navbar-brand{color:#2383c6;font-weight:700;text-transform:uppercase}.navbar-default .navbar-header .navbar-brand:focus,.navbar-default .navbar-header .navbar-brand:hover{color:#1b669b}.navbar-default .navbar-header .navbar-toggle{font-weight:700;font-size:12px;color:#222;text-transform:uppercase}.navbar-default .nav>li>a,.navbar-default .nav>li>a:focus{text-transform:uppercase;font-weight:700;font-size:13px;color:#222}.navbar-default .nav>li>a:focus:hover,.navbar-default .nav>li>a:hover{color:#2383c6}.navbar-default .nav>li.active>a,.navbar-default .nav>li.active>a:focus{color:#2383c6!important;background-color:transparent}.navbar-default .nav>li.active>a:focus:hover,.navbar-default .nav>li.active>a:hover{background-color:transparent}@media (min-width:768px){.navbar-default{background-color:transparent;border-color:rgba(255,255,255,.3)}.navbar-default .navbar-header .navbar-brand{color:rgba(255,255,255,.7)}.navbar-default .navbar-header .navbar-brand:focus,.navbar-default .navbar-header .navbar-brand:hover{color:#fff}.navbar-default .nav>li>a,.navbar-default .nav>li>a:focus{color:rgba(255,255,255,.7)}.navbar-default .nav>li>a:focus:hover,.navbar-default .nav>li>a:hover{color:#fff}.navbar-default.affix{background-color:#fff;border-color:rgba(34,34,34,.05)}.navbar-default.affix .navbar-header .navbar-brand{color:#2383c6;font-size:14px}.navbar-default.affix .navbar-header .navbar-brand:focus,.navbar-default.affix .navbar-header .navbar-brand:hover{color:#1b669b}.navbar-default.affix .nav>li>a,.navbar-default.affix .nav>li>a:focus{color:#222}.navbar-default.affix .nav>li>a:focus:hover,.navbar-default.affix .nav>li>a:hover{color:#2383c6}}header{min-height:auto;-webkit-background-size:cover;-moz-background-size:cover;background-size:cover;-o-background-size:cover;background-position:center;background-image:url(../img/header.jpg);color:#fff}header .header-content{padding:100px 15px}header .header-content .header-content-inner h1{font-weight:700;text-transform:uppercase;margin-top:0;margin-bottom:0;font-size:30px}header .header-content .header-content-inner hr{margin:30px auto}header .header-content .header-content-inner p{font-weight:300;color:rgba(255,255,255,.7);font-size:16px;margin-bottom:50px}@media (min-width:768px){header{min-height:100%}header .header-content{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);padding:0 50px}header .header-content .header-content-inner{max-width:1000px;margin-left:auto;margin-right:auto}header .header-content .header-content-inner h1{font-size:50px}header .header-content .header-content-inner p{font-size:18px;max-width:80%;margin-left:auto;margin-right:auto}}.section-heading{margin-top:0}.service-box{max-width:400px;margin:50px auto 0}@media (min-width:992px){.service-box{margin:20px auto 0}}.service-box p{margin-bottom:0}.portfolio-box{position:relative;display:block;max-width:650px;margin:0 auto}.portfolio-box .portfolio-box-caption{color:#fff;opacity:0;display:block;background:rgba(35,131,198,.9);position:absolute;bottom:0;text-align:center;width:100%;height:100%;transition:all .35s}.btn-default.active,.btn-default:active,.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-default,.open>.dropdown-toggle.btn-primary{background-image:none}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content{width:100%;text-align:center;position:absolute;top:50%;transform:translateY(-50%)}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name{font-family:'Open Sans','Helvetica Neue',Arial,sans-serif;padding:0 15px}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category{text-transform:uppercase;font-weight:600;font-size:14px}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name{font-size:18px}.portfolio-box:hover .portfolio-box-caption{opacity:1}.portfolio-box:focus{outline:0}@media (min-width:768px){.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category{font-size:16px}.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name{font-size:22px}}.call-to-action h2{margin:0 auto 20px}.text-primary{color:#2383c6}.no-gutter>[class*=col-]{padding-right:0;padding-left:0}.btn-default{color:#222;background-color:#fff;border-color:#fff;transition:all .35s}.btn-default.active,.btn-default.focus,.btn-default:active,.btn-default:focus,.btn-default:hover,.open>.dropdown-toggle.btn-default{color:#222;background-color:#f2f2f2;border-color:#ededed}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#fff}.btn-default .badge{color:#fff;background-color:#222}.btn-primary{color:#fff;background-color:#2383c6;border-color:#2383c6;-webkit-transition:all .35s;-moz-transition:all .35s;transition:all .35s}.btn-primary.active,.btn-primary.focus,.btn-primary:active,.btn-primary:focus,.btn-primary:hover,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#1f75b0;border-color:#1e6fa8}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#2383c6;border-color:#2383c6}.btn-primary .badge{color:#2383c6;background-color:#fff}.btn{border:none;border-radius:300px;font-weight:700;text-transform:uppercase}.btn-xl{padding:15px 30px}::-moz-selection{color:#fff;text-shadow:none;background:#222}::selection{color:#fff;text-shadow:none;background:#222}img::selection{color:#fff;background:0 0}img::-moz-selection{color:#fff;background:0 0} -------------------------------------------------------------------------------- /paula/vendor/scrollreveal/scrollreveal.min.js: -------------------------------------------------------------------------------- 1 | !function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t(require,exports,module):e.ScrollReveal=t()}(this,function(e,t,n){return function(){"use strict";var e,t,n;this.ScrollReveal=function(){function i(n){return"undefined"==typeof this||Object.getPrototypeOf(this)!==i.prototype?new i(n):(e=this,e.tools=new t,e.isSupported()?(e.tools.extend(e.defaults,n||{}),o(e.defaults),e.store={elements:{},containers:[]},e.sequences={},e.history=[],e.uid=0,e.initialized=!1):"undefined"!=typeof console&&null!==console,e)}function o(t){var n=t.container;return n&&"string"==typeof n?t.container=window.document.querySelector(n):(n&&!e.tools.isNode(n)&&(t.container=null),null==n&&(t.container=window.document.documentElement),t.container)}function r(){return++e.uid}function s(t,n){t.config?t.config=e.tools.extendClone(t.config,n):t.config=e.tools.extendClone(e.defaults,n),"top"===t.config.origin||"bottom"===t.config.origin?t.config.axis="Y":t.config.axis="X","top"!==t.config.origin&&"left"!==t.config.origin||(t.config.distance="-"+t.config.distance)}function a(e){var t=window.getComputedStyle(e.domEl);e.styles||(e.styles={transition:{},transform:{},computed:{}},e.styles.inline=e.domEl.getAttribute("style")||"",e.styles.inline+="; visibility: visible; ",e.styles.computed.opacity=t.opacity,t.transition&&"all 0s ease 0s"!=t.transition?e.styles.computed.transition=t.transition+", ":e.styles.computed.transition=""),e.styles.transition.instant=l(e,0),e.styles.transition.delayed=l(e,e.config.delay),e.styles.transform.initial=" -webkit-transform:",e.styles.transform.target=" -webkit-transform:",c(e),e.styles.transform.initial+="transform:",e.styles.transform.target+="transform:",c(e)}function l(e,t){var n=e.config;return"-webkit-transition: "+e.styles.computed.transition+"-webkit-transform "+n.duration/1e3+"s "+n.easing+" "+t/1e3+"s, opacity "+n.duration/1e3+"s "+n.easing+" "+t/1e3+"s; transition: "+e.styles.computed.transition+"transform "+n.duration/1e3+"s "+n.easing+" "+t/1e3+"s, opacity "+n.duration/1e3+"s "+n.easing+" "+t/1e3+"s; "}function c(e){var t=e.config,n=e.styles.transform;parseInt(t.distance)&&(n.initial+=" translate"+t.axis+"("+t.distance+")",n.target+=" translate"+t.axis+"(0)"),t.scale&&(n.initial+=" scale("+t.scale+")",n.target+=" scale(1)"),t.rotate.x&&(n.initial+=" rotateX("+t.rotate.x+"deg)",n.target+=" rotateX(0)"),t.rotate.y&&(n.initial+=" rotateY("+t.rotate.y+"deg)",n.target+=" rotateY(0)"),t.rotate.z&&(n.initial+=" rotateZ("+t.rotate.z+"deg)",n.target+=" rotateZ(0)"),n.initial+="; opacity: "+t.opacity+";",n.target+="; opacity: "+e.styles.computed.opacity+";"}function f(t){var n=t.config.container;n&&-1==e.store.containers.indexOf(n)&&e.store.containers.push(t.config.container),e.store.elements[t.id]=t}function u(t,n,i){var o={selector:t,config:n,interval:i};e.history.push(o)}function d(){if(e.isSupported()){p();for(var t=0;tt&&i>m&&n>p&&w>y}function n(){return"fixed"===window.getComputedStyle(e.domEl).position}var i=E(e.domEl),o=x(e.config.container),r=q(e.config.container),s=e.config.viewFactor,a=i.height,l=i.width,c=i.top,f=i.left,u=c+a,d=f+l;return t()||n()}return i.prototype.defaults={origin:"bottom",distance:"20px",duration:500,delay:0,rotate:{x:0,y:0,z:0},opacity:0,scale:.9,easing:"cubic-bezier(0.6, 0.2, 0.1, 1)",container:null,mobile:!0,reset:!1,useDelay:"always",viewFactor:.2,viewOffset:{top:0,right:0,bottom:0,left:0},afterReveal:function(e){},afterReset:function(e){}},i.prototype.isSupported=function(){var e=document.documentElement.style;return"WebkitTransition"in e&&"WebkitTransform"in e||"transition"in e&&"transform"in e},i.prototype.reveal=function(t,n,i,l){var c,y,m,p,g,w;if(c=n&&n.container?o(n):e.defaults.container,y=e.tools.isNode(t)?[t]:Array.prototype.slice.call(c.querySelectorAll(t)),!y.length)return e;n&&"number"==typeof n&&(i=n,n={}),i&&"number"==typeof i&&(w=r(),g=e.sequences[w]={id:w,interval:i,elemIds:[],active:!1});for(var v=0;v li { 101 | > a, 102 | > a:focus { 103 | text-transform: uppercase; 104 | font-weight: 700; 105 | font-size: 13px; 106 | color: @gray-darker; 107 | &:hover { 108 | color: @theme-primary; 109 | } 110 | } 111 | &.active { 112 | > a, 113 | > a:focus { 114 | color: @theme-primary !important; 115 | background-color: transparent; 116 | &:hover { 117 | background-color: transparent; 118 | } 119 | } 120 | } 121 | } 122 | } 123 | @media (min-width: 768px) { 124 | background-color: transparent; 125 | border-color: fade(white, 30%); 126 | .navbar-header .navbar-brand { 127 | color: fade(white, 70%); 128 | &:hover, 129 | &:focus { 130 | color: white; 131 | } 132 | } 133 | .nav > li > a, 134 | .nav > li > a:focus { 135 | color: fade(white, 70%); 136 | &:hover { 137 | color: white; 138 | } 139 | } 140 | &.affix { 141 | background-color: white; 142 | border-color: fade(@gray-darker, 5%); 143 | .navbar-header .navbar-brand { 144 | color: @theme-primary; 145 | font-size: 14px; 146 | &:hover, 147 | &:focus { 148 | color: darken(@theme-primary, 10%); 149 | } 150 | } 151 | .nav > li > a, 152 | .nav > li > a:focus { 153 | color: @gray-darker; 154 | &:hover { 155 | color: @theme-primary; 156 | } 157 | } 158 | } 159 | } 160 | } 161 | 162 | // Homepage Header 163 | 164 | header { 165 | position: relative; 166 | width: 100%; 167 | min-height: auto; 168 | .background-cover; 169 | background-position: center; 170 | text-align: center; 171 | color: white; 172 | .header-content { 173 | position: relative; 174 | text-align: center; 175 | padding: 100px 15px 100px; 176 | width: 100%; 177 | .header-content-inner { 178 | h1 { 179 | font-weight: 700; 180 | text-transform: uppercase; 181 | margin-top: 0; 182 | margin-bottom: 0; 183 | font-size: 30px; 184 | } 185 | hr { 186 | margin: 30px auto; 187 | } 188 | p { 189 | font-weight: 300; 190 | color: fade(white, 70%); 191 | font-size: 16px; 192 | margin-bottom: 50px; 193 | } 194 | } 195 | } 196 | @media (min-width: 768px) { 197 | min-height: 100%; 198 | .header-content { 199 | position: absolute; 200 | top: 50%; 201 | -webkit-transform: translateY(-50%); 202 | -ms-transform: translateY(-50%); 203 | transform: translateY(-50%); 204 | padding: 0 50px; 205 | .header-content-inner { 206 | max-width: 1000px; 207 | margin-left: auto; 208 | margin-right: auto; 209 | h1 { 210 | font-size: 50px; 211 | } 212 | p { 213 | font-size: 18px; 214 | max-width: 80%; 215 | margin-left: auto; 216 | margin-right: auto; 217 | } 218 | } 219 | } 220 | } 221 | } 222 | 223 | // Sections 224 | 225 | .section-heading { 226 | margin-top: 0; 227 | } 228 | 229 | .service-box { 230 | max-width: 400px; 231 | margin: 50px auto 0; 232 | @media (min-width: 992px) { 233 | margin: 20px auto 0; 234 | } 235 | p { 236 | margin-bottom: 0; 237 | } 238 | } 239 | 240 | .portfolio-box { 241 | position: relative; 242 | display: block; 243 | max-width: 650px; 244 | margin: 0 auto; 245 | .portfolio-box-caption { 246 | color: white; 247 | opacity: 0; 248 | display: block; 249 | background: fade(@theme-primary, 90%); 250 | position: absolute; 251 | bottom: 0; 252 | text-align: center; 253 | width: 100%; 254 | height: 100%; 255 | .transition-all; 256 | .portfolio-box-caption-content { 257 | width: 100%; 258 | text-align: center; 259 | position: absolute; 260 | top: 50%; 261 | transform: translateY(-50%); 262 | .project-category, 263 | .project-name { 264 | .sans-serif-font; 265 | padding: 0 15px; 266 | } 267 | .project-category { 268 | text-transform: uppercase; 269 | font-weight: 600; 270 | font-size: 14px; 271 | } 272 | .project-name { 273 | font-size: 18px; 274 | } 275 | } 276 | } 277 | &:hover { 278 | .portfolio-box-caption { 279 | opacity: 1; 280 | } 281 | } 282 | &:focus { 283 | outline: none; 284 | } 285 | @media (min-width: 768px) { 286 | .portfolio-box-caption { 287 | .portfolio-box-caption-content { 288 | .project-category { 289 | font-size: 16px; 290 | } 291 | .project-name { 292 | font-size: 22px; 293 | } 294 | } 295 | } 296 | } 297 | } 298 | 299 | .call-to-action { 300 | h2 { 301 | margin: 0 auto 20px; 302 | } 303 | } 304 | 305 | // Bootstrap Overrides 306 | .text-primary { 307 | color: @theme-primary; 308 | } 309 | 310 | .no-gutter > [class*='col-'] { 311 | padding-right:0; 312 | padding-left:0; 313 | } 314 | 315 | // Button Styles 316 | .btn-default { 317 | .button-variant(@gray-darker;white;white); 318 | } 319 | 320 | .btn-primary { 321 | .button-variant(white;@theme-primary;@theme-primary); 322 | } 323 | 324 | .btn { 325 | .sans-serif-font; 326 | border: none; 327 | border-radius: 300px; 328 | font-weight: 700; 329 | text-transform: uppercase; 330 | } 331 | 332 | .btn-xl { 333 | padding: 15px 30px; 334 | } 335 | 336 | // Extras 337 | // -- Highlight Color Customization 338 | ::-moz-selection { 339 | color: white; 340 | text-shadow: none; 341 | background: @gray-darker; 342 | } 343 | 344 | ::selection { 345 | color: white; 346 | text-shadow: none; 347 | background: @gray-darker; 348 | } 349 | 350 | .item-image img { 351 | max-width:100%; 352 | } 353 | 354 | img::selection { 355 | color: white; 356 | background: transparent; 357 | } 358 | 359 | img::-moz-selection { 360 | color: white; 361 | background: transparent; 362 | } 363 | 364 | body { 365 | webkit-tap-highlight-color: @gray-darker; 366 | } -------------------------------------------------------------------------------- /paula/less/creative-blue.less: -------------------------------------------------------------------------------- 1 | @import "variables-blue.less"; 2 | @import "mixins.less"; 3 | 4 | 5 | 6 | // Global Components 7 | html, 8 | body { 9 | height: 100%; 10 | width: 100%; 11 | } 12 | 13 | body { 14 | .serif-font; 15 | } 16 | 17 | hr { 18 | border-color: @theme-primary; 19 | border-width: 3px; 20 | max-width: 50px; 21 | } 22 | 23 | hr.light { 24 | border-color: white; 25 | } 26 | 27 | a { 28 | .transition-all; 29 | color: @theme-primary; 30 | &:hover, 31 | &:focus { 32 | color: darken(@theme-primary, 10%); 33 | } 34 | } 35 | 36 | h1, 37 | h2, 38 | h3, 39 | h4, 40 | h5, 41 | h6 { 42 | .sans-serif-font; 43 | } 44 | 45 | p { 46 | font-size: 16px; 47 | line-height: 1.5; 48 | margin-bottom: 20px; 49 | } 50 | 51 | .bg-primary { 52 | background-color: @theme-primary; 53 | } 54 | 55 | .bg-dark { 56 | background-color: @gray-darker; 57 | color: white; 58 | } 59 | 60 | .text-faded { 61 | color: fade(white, 70%); 62 | } 63 | 64 | section { 65 | padding: 100px 0; 66 | } 67 | 68 | aside { 69 | padding: 50px 0; 70 | } 71 | 72 | .no-padding { 73 | padding: 0; 74 | } 75 | 76 | // Navigation 77 | 78 | .navbar-default { 79 | background-color: white; 80 | border-color: fade(@gray-darker, 5%); 81 | .sans-serif-font; 82 | .transition-all; 83 | .navbar-header .navbar-brand { 84 | color: @theme-primary; 85 | .sans-serif-font; 86 | font-weight: 700; 87 | text-transform: uppercase; 88 | &:hover, 89 | &:focus { 90 | color: darken(@theme-primary, 10%); 91 | } 92 | } 93 | .navbar-header .navbar-toggle { 94 | font-weight: 700; 95 | font-size: 12px; 96 | color: @gray-darker; 97 | text-transform: uppercase; 98 | } 99 | .nav { 100 | > li { 101 | > a, 102 | > a:focus { 103 | text-transform: uppercase; 104 | font-weight: 700; 105 | font-size: 13px; 106 | color: @gray-darker; 107 | &:hover { 108 | color: @theme-primary; 109 | } 110 | } 111 | &.active { 112 | > a, 113 | > a:focus { 114 | color: @theme-primary !important; 115 | background-color: transparent; 116 | &:hover { 117 | background-color: transparent; 118 | } 119 | } 120 | } 121 | } 122 | } 123 | @media (min-width: 768px) { 124 | background-color: transparent; 125 | border-color: fade(white, 30%); 126 | .navbar-header .navbar-brand { 127 | color: fade(white, 70%); 128 | &:hover, 129 | &:focus { 130 | color: white; 131 | } 132 | } 133 | .nav > li > a, 134 | .nav > li > a:focus { 135 | color: fade(white, 70%); 136 | &:hover { 137 | color: white; 138 | } 139 | } 140 | &.affix { 141 | background-color: white; 142 | border-color: fade(@gray-darker, 5%); 143 | .navbar-header .navbar-brand { 144 | color: @theme-primary; 145 | font-size: 14px; 146 | &:hover, 147 | &:focus { 148 | color: darken(@theme-primary, 10%); 149 | } 150 | } 151 | .nav > li > a, 152 | .nav > li > a:focus { 153 | color: @gray-darker; 154 | &:hover { 155 | color: @theme-primary; 156 | } 157 | } 158 | } 159 | } 160 | } 161 | 162 | // Homepage Header 163 | 164 | header { 165 | position: relative; 166 | width: 100%; 167 | min-height: auto; 168 | .background-cover; 169 | background-position: center; 170 | text-align: center; 171 | color: white; 172 | .header-content { 173 | position: relative; 174 | text-align: center; 175 | padding: 100px 15px 100px; 176 | width: 100%; 177 | .header-content-inner { 178 | h1 { 179 | font-weight: 700; 180 | text-transform: uppercase; 181 | margin-top: 0; 182 | margin-bottom: 0; 183 | font-size: 30px; 184 | } 185 | hr { 186 | margin: 30px auto; 187 | } 188 | p { 189 | font-weight: 300; 190 | color: fade(white, 70%); 191 | font-size: 16px; 192 | margin-bottom: 50px; 193 | } 194 | } 195 | } 196 | @media (min-width: 768px) { 197 | min-height: 100%; 198 | .header-content { 199 | position: absolute; 200 | top: 50%; 201 | -webkit-transform: translateY(-50%); 202 | -ms-transform: translateY(-50%); 203 | transform: translateY(-50%); 204 | padding: 0 50px; 205 | .header-content-inner { 206 | max-width: 1000px; 207 | margin-left: auto; 208 | margin-right: auto; 209 | h1 { 210 | font-size: 50px; 211 | } 212 | p { 213 | font-size: 18px; 214 | max-width: 80%; 215 | margin-left: auto; 216 | margin-right: auto; 217 | } 218 | } 219 | } 220 | } 221 | } 222 | 223 | // Sections 224 | 225 | .section-heading { 226 | margin-top: 0; 227 | } 228 | 229 | .service-box { 230 | max-width: 400px; 231 | margin: 50px auto 0; 232 | @media (min-width: 992px) { 233 | margin: 20px auto 0; 234 | } 235 | p { 236 | margin-bottom: 0; 237 | } 238 | } 239 | 240 | .portfolio-box { 241 | position: relative; 242 | display: block; 243 | max-width: 650px; 244 | margin: 0 auto; 245 | .portfolio-box-caption { 246 | color: white; 247 | opacity: 0; 248 | display: block; 249 | background: fade(@theme-primary, 90%); 250 | position: absolute; 251 | bottom: 0; 252 | text-align: center; 253 | width: 100%; 254 | height: 100%; 255 | .transition-all; 256 | .portfolio-box-caption-content { 257 | width: 100%; 258 | text-align: center; 259 | position: absolute; 260 | top: 50%; 261 | transform: translateY(-50%); 262 | .project-category, 263 | .project-name { 264 | .sans-serif-font; 265 | padding: 0 15px; 266 | } 267 | .project-category { 268 | text-transform: uppercase; 269 | font-weight: 600; 270 | font-size: 14px; 271 | } 272 | .project-name { 273 | font-size: 18px; 274 | } 275 | } 276 | } 277 | &:hover { 278 | .portfolio-box-caption { 279 | opacity: 1; 280 | } 281 | } 282 | &:focus { 283 | outline: none; 284 | } 285 | @media (min-width: 768px) { 286 | .portfolio-box-caption { 287 | .portfolio-box-caption-content { 288 | .project-category { 289 | font-size: 16px; 290 | } 291 | .project-name { 292 | font-size: 22px; 293 | } 294 | } 295 | } 296 | } 297 | } 298 | 299 | .call-to-action { 300 | h2 { 301 | margin: 0 auto 20px; 302 | } 303 | } 304 | 305 | // Bootstrap Overrides 306 | .text-primary { 307 | color: @theme-primary; 308 | } 309 | 310 | .no-gutter > [class*='col-'] { 311 | padding-right:0; 312 | padding-left:0; 313 | } 314 | 315 | // Button Styles 316 | .btn-default { 317 | .button-variant(@gray-darker;white;white); 318 | } 319 | 320 | .btn-primary { 321 | .button-variant(white;@theme-primary;@theme-primary); 322 | } 323 | 324 | .btn { 325 | .sans-serif-font; 326 | border: none; 327 | border-radius: 300px; 328 | font-weight: 700; 329 | text-transform: uppercase; 330 | } 331 | 332 | .btn-xl { 333 | padding: 15px 30px; 334 | } 335 | 336 | // Extras 337 | // -- Highlight Color Customization 338 | ::-moz-selection { 339 | color: white; 340 | text-shadow: none; 341 | background: @gray-darker; 342 | } 343 | 344 | ::selection { 345 | color: white; 346 | text-shadow: none; 347 | background: @gray-darker; 348 | } 349 | 350 | .item-image img { 351 | max-width:100%; 352 | } 353 | 354 | img::selection { 355 | color: white; 356 | background: transparent; 357 | } 358 | 359 | img::-moz-selection { 360 | color: white; 361 | background: transparent; 362 | } 363 | 364 | body { 365 | webkit-tap-highlight-color: @gray-darker; 366 | } -------------------------------------------------------------------------------- /paula/css/creative.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | height: 100%; 4 | width: 100%; 5 | } 6 | body { 7 | font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif; 8 | } 9 | hr { 10 | border-color: #F05F40; 11 | border-width: 3px; 12 | max-width: 50px; 13 | } 14 | hr.light { 15 | border-color: white; 16 | } 17 | a { 18 | -webkit-transition: all 0.35s; 19 | -moz-transition: all 0.35s; 20 | transition: all 0.35s; 21 | color: #F05F40; 22 | } 23 | a:hover, 24 | a:focus { 25 | color: #eb3812; 26 | } 27 | h1, 28 | h2, 29 | h3, 30 | h4, 31 | h5, 32 | h6 { 33 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 34 | } 35 | p { 36 | font-size: 16px; 37 | line-height: 1.5; 38 | margin-bottom: 20px; 39 | } 40 | .bg-primary { 41 | background-color: #F05F40; 42 | } 43 | .bg-dark { 44 | background-color: #222222; 45 | color: white; 46 | } 47 | .text-faded { 48 | color: rgba(255,255,255,0.7); 49 | } 50 | section { 51 | padding: 100px 0; 52 | } 53 | aside { 54 | padding: 50px 0; 55 | } 56 | .no-padding { 57 | padding: 0; 58 | } 59 | .navbar-default { 60 | background-color: white; 61 | border-color: rgba(34,34,34,0.05); 62 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 63 | -webkit-transition: all 0.35s; 64 | -moz-transition: all 0.35s; 65 | transition: all 0.35s; 66 | } 67 | .navbar-default .navbar-header .navbar-brand { 68 | color: #F05F40; 69 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 70 | font-weight: 700; 71 | text-transform: uppercase; 72 | } 73 | .navbar-default .navbar-header .navbar-brand:hover, 74 | .navbar-default .navbar-header .navbar-brand:focus { 75 | color: #eb3812; 76 | } 77 | .navbar-default .navbar-header .navbar-toggle { 78 | font-weight: 700; 79 | font-size: 12px; 80 | color: #222222; 81 | text-transform: uppercase; 82 | } 83 | .navbar-default .nav > li > a, 84 | .navbar-default .nav > li > a:focus { 85 | text-transform: uppercase; 86 | font-weight: 700; 87 | font-size: 13px; 88 | color: #222222; 89 | } 90 | .navbar-default .nav > li > a:hover, 91 | .navbar-default .nav > li > a:focus:hover { 92 | color: #F05F40; 93 | } 94 | .navbar-default .nav > li.active > a, 95 | .navbar-default .nav > li.active > a:focus { 96 | color: #F05F40 !important; 97 | background-color: transparent; 98 | } 99 | .navbar-default .nav > li.active > a:hover, 100 | .navbar-default .nav > li.active > a:focus:hover { 101 | background-color: transparent; 102 | } 103 | @media (min-width: 768px) { 104 | .navbar-default { 105 | background-color: transparent; 106 | border-color: rgba(255,255,255,0.3); 107 | } 108 | .navbar-default .navbar-header .navbar-brand { 109 | color: rgba(255,255,255,0.7); 110 | } 111 | .navbar-default .navbar-header .navbar-brand:hover, 112 | .navbar-default .navbar-header .navbar-brand:focus { 113 | color: white; 114 | } 115 | .navbar-default .nav > li > a, 116 | .navbar-default .nav > li > a:focus { 117 | color: rgba(255,255,255,0.7); 118 | } 119 | .navbar-default .nav > li > a:hover, 120 | .navbar-default .nav > li > a:focus:hover { 121 | color: white; 122 | } 123 | .navbar-default.affix { 124 | background-color: white; 125 | border-color: rgba(34,34,34,0.05); 126 | } 127 | .navbar-default.affix .navbar-header .navbar-brand { 128 | color: #F05F40; 129 | font-size: 14px; 130 | } 131 | .navbar-default.affix .navbar-header .navbar-brand:hover, 132 | .navbar-default.affix .navbar-header .navbar-brand:focus { 133 | color: #eb3812; 134 | } 135 | .navbar-default.affix .nav > li > a, 136 | .navbar-default.affix .nav > li > a:focus { 137 | color: #222222; 138 | } 139 | .navbar-default.affix .nav > li > a:hover, 140 | .navbar-default.affix .nav > li > a:focus:hover { 141 | color: #F05F40; 142 | } 143 | } 144 | header { 145 | position: relative; 146 | width: 100%; 147 | min-height: auto; 148 | -webkit-background-size: cover; 149 | -moz-background-size: cover; 150 | background-size: cover; 151 | -o-background-size: cover; 152 | background-position: center; 153 | text-align: center; 154 | color: white; 155 | } 156 | header .header-content { 157 | position: relative; 158 | text-align: center; 159 | padding: 100px 15px 100px; 160 | width: 100%; 161 | } 162 | header .header-content .header-content-inner h1 { 163 | font-weight: 700; 164 | text-transform: uppercase; 165 | margin-top: 0; 166 | margin-bottom: 0; 167 | font-size: 30px; 168 | } 169 | header .header-content .header-content-inner hr { 170 | margin: 30px auto; 171 | } 172 | header .header-content .header-content-inner p { 173 | font-weight: 300; 174 | color: rgba(255,255,255,0.7); 175 | font-size: 16px; 176 | margin-bottom: 50px; 177 | } 178 | @media (min-width: 768px) { 179 | header { 180 | min-height: 100%; 181 | } 182 | header .header-content { 183 | position: absolute; 184 | top: 50%; 185 | -webkit-transform: translateY(-50%); 186 | -ms-transform: translateY(-50%); 187 | transform: translateY(-50%); 188 | padding: 0 50px; 189 | } 190 | header .header-content .header-content-inner { 191 | max-width: 1000px; 192 | margin-left: auto; 193 | margin-right: auto; 194 | } 195 | header .header-content .header-content-inner h1 { 196 | font-size: 50px; 197 | } 198 | header .header-content .header-content-inner p { 199 | font-size: 18px; 200 | max-width: 80%; 201 | margin-left: auto; 202 | margin-right: auto; 203 | } 204 | } 205 | .section-heading { 206 | margin-top: 0; 207 | } 208 | .service-box { 209 | max-width: 400px; 210 | margin: 50px auto 0; 211 | } 212 | @media (min-width: 992px) { 213 | .service-box { 214 | margin: 20px auto 0; 215 | } 216 | } 217 | .service-box p { 218 | margin-bottom: 0; 219 | } 220 | .portfolio-box { 221 | position: relative; 222 | display: block; 223 | max-width: 650px; 224 | margin: 0 auto; 225 | } 226 | .portfolio-box .portfolio-box-caption { 227 | color: white; 228 | opacity: 0; 229 | display: block; 230 | background: rgba(240,95,64,0.9); 231 | position: absolute; 232 | bottom: 0; 233 | text-align: center; 234 | width: 100%; 235 | height: 100%; 236 | -webkit-transition: all 0.35s; 237 | -moz-transition: all 0.35s; 238 | transition: all 0.35s; 239 | } 240 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content { 241 | width: 100%; 242 | text-align: center; 243 | position: absolute; 244 | top: 50%; 245 | transform: translateY(-50%); 246 | } 247 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category, 248 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name { 249 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 250 | padding: 0 15px; 251 | } 252 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category { 253 | text-transform: uppercase; 254 | font-weight: 600; 255 | font-size: 14px; 256 | } 257 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name { 258 | font-size: 18px; 259 | } 260 | .portfolio-box:hover .portfolio-box-caption { 261 | opacity: 1; 262 | } 263 | .portfolio-box:focus { 264 | outline: none; 265 | } 266 | @media (min-width: 768px) { 267 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category { 268 | font-size: 16px; 269 | } 270 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name { 271 | font-size: 22px; 272 | } 273 | } 274 | .call-to-action h2 { 275 | margin: 0 auto 20px; 276 | } 277 | .text-primary { 278 | color: #F05F40; 279 | } 280 | .no-gutter > [class*='col-'] { 281 | padding-right: 0; 282 | padding-left: 0; 283 | } 284 | .btn-default { 285 | color: #222222; 286 | background-color: white; 287 | border-color: white; 288 | -webkit-transition: all 0.35s; 289 | -moz-transition: all 0.35s; 290 | transition: all 0.35s; 291 | } 292 | .btn-default:hover, 293 | .btn-default:focus, 294 | .btn-default.focus, 295 | .btn-default:active, 296 | .btn-default.active, 297 | .open > .dropdown-toggle.btn-default { 298 | color: #222222; 299 | background-color: #f2f2f2; 300 | border-color: #ededed; 301 | } 302 | .btn-default:active, 303 | .btn-default.active, 304 | .open > .dropdown-toggle.btn-default { 305 | background-image: none; 306 | } 307 | .btn-default.disabled, 308 | .btn-default.disabled:hover, 309 | .btn-default.disabled:focus, 310 | .btn-default.disabled.focus, 311 | .btn-default.disabled:active, 312 | .btn-default.disabled.active, 313 | .btn-default[disabled], 314 | .btn-default[disabled]:hover, 315 | .btn-default[disabled]:focus, 316 | .btn-default[disabled].focus, 317 | .btn-default[disabled]:active, 318 | .btn-default[disabled].active, 319 | fieldset[disabled] .btn-default, 320 | fieldset[disabled] .btn-default:hover, 321 | fieldset[disabled] .btn-default:focus, 322 | fieldset[disabled] .btn-default.focus, 323 | fieldset[disabled] .btn-default:active, 324 | fieldset[disabled] .btn-default.active { 325 | background-color: white; 326 | border-color: white; 327 | } 328 | .btn-default .badge { 329 | color: white; 330 | background-color: #222222; 331 | } 332 | .btn-primary { 333 | color: white; 334 | background-color: #F05F40; 335 | border-color: #F05F40; 336 | -webkit-transition: all 0.35s; 337 | -moz-transition: all 0.35s; 338 | transition: all 0.35s; 339 | } 340 | .btn-primary:hover, 341 | .btn-primary:focus, 342 | .btn-primary.focus, 343 | .btn-primary:active, 344 | .btn-primary.active, 345 | .open > .dropdown-toggle.btn-primary { 346 | color: white; 347 | background-color: #ee4b28; 348 | border-color: #ed431f; 349 | } 350 | .btn-primary:active, 351 | .btn-primary.active, 352 | .open > .dropdown-toggle.btn-primary { 353 | background-image: none; 354 | } 355 | .btn-primary.disabled, 356 | .btn-primary.disabled:hover, 357 | .btn-primary.disabled:focus, 358 | .btn-primary.disabled.focus, 359 | .btn-primary.disabled:active, 360 | .btn-primary.disabled.active, 361 | .btn-primary[disabled], 362 | .btn-primary[disabled]:hover, 363 | .btn-primary[disabled]:focus, 364 | .btn-primary[disabled].focus, 365 | .btn-primary[disabled]:active, 366 | .btn-primary[disabled].active, 367 | fieldset[disabled] .btn-primary, 368 | fieldset[disabled] .btn-primary:hover, 369 | fieldset[disabled] .btn-primary:focus, 370 | fieldset[disabled] .btn-primary.focus, 371 | fieldset[disabled] .btn-primary:active, 372 | fieldset[disabled] .btn-primary.active { 373 | background-color: #F05F40; 374 | border-color: #F05F40; 375 | } 376 | .btn-primary .badge { 377 | color: #F05F40; 378 | background-color: white; 379 | } 380 | .btn { 381 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 382 | border: none; 383 | border-radius: 300px; 384 | font-weight: 700; 385 | text-transform: uppercase; 386 | } 387 | .btn-xl { 388 | padding: 15px 30px; 389 | } 390 | ::-moz-selection { 391 | color: white; 392 | text-shadow: none; 393 | background: #222222; 394 | } 395 | ::selection { 396 | color: white; 397 | text-shadow: none; 398 | background: #222222; 399 | } 400 | .item-image img { 401 | max-width: 100%; 402 | } 403 | img::selection { 404 | color: white; 405 | background: transparent; 406 | } 407 | img::-moz-selection { 408 | color: white; 409 | background: transparent; 410 | } 411 | body { 412 | webkit-tap-highlight-color: #222222; 413 | } 414 | -------------------------------------------------------------------------------- /paula/css/creative-blue.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | height: 100%; 4 | width: 100%; 5 | } 6 | body { 7 | font-family: 'Merriweather', 'Helvetica Neue', Arial, sans-serif; 8 | } 9 | hr { 10 | border-color: #2383c6; 11 | border-width: 3px; 12 | max-width: 50px; 13 | } 14 | hr.light { 15 | border-color: white; 16 | } 17 | a { 18 | -webkit-transition: all 0.35s; 19 | -moz-transition: all 0.35s; 20 | transition: all 0.35s; 21 | color: #2383c6; 22 | } 23 | a:hover, 24 | a:focus { 25 | color: #1b669b; 26 | } 27 | h1, 28 | h2, 29 | h3, 30 | h4, 31 | h5, 32 | h6 { 33 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 34 | } 35 | p { 36 | font-size: 16px; 37 | line-height: 1.5; 38 | margin-bottom: 20px; 39 | } 40 | .bg-primary { 41 | background-color: #2383c6; 42 | } 43 | .bg-dark { 44 | background-color: #222222; 45 | color: white; 46 | } 47 | .text-faded { 48 | color: rgba(255,255,255,0.7); 49 | } 50 | section { 51 | padding: 100px 0; 52 | } 53 | aside { 54 | padding: 50px 0; 55 | } 56 | .no-padding { 57 | padding: 0; 58 | } 59 | .navbar-default { 60 | background-color: white; 61 | border-color: rgba(34,34,34,0.05); 62 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 63 | -webkit-transition: all 0.35s; 64 | -moz-transition: all 0.35s; 65 | transition: all 0.35s; 66 | } 67 | .navbar-default .navbar-header .navbar-brand { 68 | color: #2383c6; 69 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 70 | font-weight: 700; 71 | text-transform: uppercase; 72 | } 73 | .navbar-default .navbar-header .navbar-brand:hover, 74 | .navbar-default .navbar-header .navbar-brand:focus { 75 | color: #1b669b; 76 | } 77 | .navbar-default .navbar-header .navbar-toggle { 78 | font-weight: 700; 79 | font-size: 12px; 80 | color: #222222; 81 | text-transform: uppercase; 82 | } 83 | .navbar-default .nav > li > a, 84 | .navbar-default .nav > li > a:focus { 85 | text-transform: uppercase; 86 | font-weight: 700; 87 | font-size: 13px; 88 | color: #222222; 89 | } 90 | .navbar-default .nav > li > a:hover, 91 | .navbar-default .nav > li > a:focus:hover { 92 | color: #2383c6; 93 | } 94 | .navbar-default .nav > li.active > a, 95 | .navbar-default .nav > li.active > a:focus { 96 | color: #2383c6 !important; 97 | background-color: transparent; 98 | } 99 | .navbar-default .nav > li.active > a:hover, 100 | .navbar-default .nav > li.active > a:focus:hover { 101 | background-color: transparent; 102 | } 103 | @media (min-width: 768px) { 104 | .navbar-default { 105 | background-color: transparent; 106 | border-color: rgba(255,255,255,0.3); 107 | } 108 | .navbar-default .navbar-header .navbar-brand { 109 | color: rgba(255,255,255,0.7); 110 | } 111 | .navbar-default .navbar-header .navbar-brand:hover, 112 | .navbar-default .navbar-header .navbar-brand:focus { 113 | color: white; 114 | } 115 | .navbar-default .nav > li > a, 116 | .navbar-default .nav > li > a:focus { 117 | color: rgba(255,255,255,0.7); 118 | } 119 | .navbar-default .nav > li > a:hover, 120 | .navbar-default .nav > li > a:focus:hover { 121 | color: white; 122 | } 123 | .navbar-default.affix { 124 | background-color: white; 125 | border-color: rgba(34,34,34,0.05); 126 | } 127 | .navbar-default.affix .navbar-header .navbar-brand { 128 | color: #2383c6; 129 | font-size: 14px; 130 | } 131 | .navbar-default.affix .navbar-header .navbar-brand:hover, 132 | .navbar-default.affix .navbar-header .navbar-brand:focus { 133 | color: #1b669b; 134 | } 135 | .navbar-default.affix .nav > li > a, 136 | .navbar-default.affix .nav > li > a:focus { 137 | color: #222222; 138 | } 139 | .navbar-default.affix .nav > li > a:hover, 140 | .navbar-default.affix .nav > li > a:focus:hover { 141 | color: #2383c6; 142 | } 143 | } 144 | header { 145 | position: relative; 146 | width: 100%; 147 | min-height: auto; 148 | -webkit-background-size: cover; 149 | -moz-background-size: cover; 150 | background-size: cover; 151 | -o-background-size: cover; 152 | background-position: center; 153 | text-align: center; 154 | color: white; 155 | } 156 | header .header-content { 157 | position: relative; 158 | text-align: center; 159 | padding: 100px 15px 100px; 160 | width: 100%; 161 | } 162 | header .header-content .header-content-inner h1 { 163 | font-weight: 700; 164 | text-transform: uppercase; 165 | margin-top: 0; 166 | margin-bottom: 0; 167 | font-size: 30px; 168 | } 169 | header .header-content .header-content-inner hr { 170 | margin: 30px auto; 171 | } 172 | header .header-content .header-content-inner p { 173 | font-weight: 300; 174 | color: rgba(255,255,255,0.7); 175 | font-size: 16px; 176 | margin-bottom: 50px; 177 | } 178 | @media (min-width: 768px) { 179 | header { 180 | min-height: 100%; 181 | } 182 | header .header-content { 183 | position: absolute; 184 | top: 50%; 185 | -webkit-transform: translateY(-50%); 186 | -ms-transform: translateY(-50%); 187 | transform: translateY(-50%); 188 | padding: 0 50px; 189 | } 190 | header .header-content .header-content-inner { 191 | max-width: 1000px; 192 | margin-left: auto; 193 | margin-right: auto; 194 | } 195 | header .header-content .header-content-inner h1 { 196 | font-size: 50px; 197 | } 198 | header .header-content .header-content-inner p { 199 | font-size: 18px; 200 | max-width: 80%; 201 | margin-left: auto; 202 | margin-right: auto; 203 | } 204 | } 205 | .section-heading { 206 | margin-top: 0; 207 | } 208 | .service-box { 209 | max-width: 400px; 210 | margin: 50px auto 0; 211 | } 212 | @media (min-width: 992px) { 213 | .service-box { 214 | margin: 20px auto 0; 215 | } 216 | } 217 | .service-box p { 218 | margin-bottom: 0; 219 | } 220 | .portfolio-box { 221 | position: relative; 222 | display: block; 223 | max-width: 650px; 224 | margin: 0 auto; 225 | } 226 | .portfolio-box .portfolio-box-caption { 227 | color: white; 228 | opacity: 0; 229 | display: block; 230 | background: rgba(35,131,198,0.9); 231 | position: absolute; 232 | bottom: 0; 233 | text-align: center; 234 | width: 100%; 235 | height: 100%; 236 | -webkit-transition: all 0.35s; 237 | -moz-transition: all 0.35s; 238 | transition: all 0.35s; 239 | } 240 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content { 241 | width: 100%; 242 | text-align: center; 243 | position: absolute; 244 | top: 50%; 245 | transform: translateY(-50%); 246 | } 247 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category, 248 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name { 249 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 250 | padding: 0 15px; 251 | } 252 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category { 253 | text-transform: uppercase; 254 | font-weight: 600; 255 | font-size: 14px; 256 | } 257 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name { 258 | font-size: 18px; 259 | } 260 | .portfolio-box:hover .portfolio-box-caption { 261 | opacity: 1; 262 | } 263 | .portfolio-box:focus { 264 | outline: none; 265 | } 266 | @media (min-width: 768px) { 267 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category { 268 | font-size: 16px; 269 | } 270 | .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name { 271 | font-size: 22px; 272 | } 273 | } 274 | .call-to-action h2 { 275 | margin: 0 auto 20px; 276 | } 277 | .text-primary { 278 | color: #2383c6; 279 | } 280 | .no-gutter > [class*='col-'] { 281 | padding-right: 0; 282 | padding-left: 0; 283 | } 284 | .btn-default { 285 | color: #222222; 286 | background-color: white; 287 | border-color: white; 288 | -webkit-transition: all 0.35s; 289 | -moz-transition: all 0.35s; 290 | transition: all 0.35s; 291 | } 292 | .btn-default:hover, 293 | .btn-default:focus, 294 | .btn-default.focus, 295 | .btn-default:active, 296 | .btn-default.active, 297 | .open > .dropdown-toggle.btn-default { 298 | color: #222222; 299 | background-color: #f2f2f2; 300 | border-color: #ededed; 301 | } 302 | .btn-default:active, 303 | .btn-default.active, 304 | .open > .dropdown-toggle.btn-default { 305 | background-image: none; 306 | } 307 | .btn-default.disabled, 308 | .btn-default.disabled:hover, 309 | .btn-default.disabled:focus, 310 | .btn-default.disabled.focus, 311 | .btn-default.disabled:active, 312 | .btn-default.disabled.active, 313 | .btn-default[disabled], 314 | .btn-default[disabled]:hover, 315 | .btn-default[disabled]:focus, 316 | .btn-default[disabled].focus, 317 | .btn-default[disabled]:active, 318 | .btn-default[disabled].active, 319 | fieldset[disabled] .btn-default, 320 | fieldset[disabled] .btn-default:hover, 321 | fieldset[disabled] .btn-default:focus, 322 | fieldset[disabled] .btn-default.focus, 323 | fieldset[disabled] .btn-default:active, 324 | fieldset[disabled] .btn-default.active { 325 | background-color: white; 326 | border-color: white; 327 | } 328 | .btn-default .badge { 329 | color: white; 330 | background-color: #222222; 331 | } 332 | .btn-primary { 333 | color: white; 334 | background-color: #2383c6; 335 | border-color: #2383c6; 336 | -webkit-transition: all 0.35s; 337 | -moz-transition: all 0.35s; 338 | transition: all 0.35s; 339 | } 340 | .btn-primary:hover, 341 | .btn-primary:focus, 342 | .btn-primary.focus, 343 | .btn-primary:active, 344 | .btn-primary.active, 345 | .open > .dropdown-toggle.btn-primary { 346 | color: white; 347 | background-color: #1f75b0; 348 | border-color: #1e6fa8; 349 | } 350 | .btn-primary:active, 351 | .btn-primary.active, 352 | .open > .dropdown-toggle.btn-primary { 353 | background-image: none; 354 | } 355 | .btn-primary.disabled, 356 | .btn-primary.disabled:hover, 357 | .btn-primary.disabled:focus, 358 | .btn-primary.disabled.focus, 359 | .btn-primary.disabled:active, 360 | .btn-primary.disabled.active, 361 | .btn-primary[disabled], 362 | .btn-primary[disabled]:hover, 363 | .btn-primary[disabled]:focus, 364 | .btn-primary[disabled].focus, 365 | .btn-primary[disabled]:active, 366 | .btn-primary[disabled].active, 367 | fieldset[disabled] .btn-primary, 368 | fieldset[disabled] .btn-primary:hover, 369 | fieldset[disabled] .btn-primary:focus, 370 | fieldset[disabled] .btn-primary.focus, 371 | fieldset[disabled] .btn-primary:active, 372 | fieldset[disabled] .btn-primary.active { 373 | background-color: #2383c6; 374 | border-color: #2383c6; 375 | } 376 | .btn-primary .badge { 377 | color: #2383c6; 378 | background-color: white; 379 | } 380 | .btn { 381 | font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif; 382 | border: none; 383 | border-radius: 300px; 384 | font-weight: 700; 385 | text-transform: uppercase; 386 | } 387 | .btn-xl { 388 | padding: 15px 30px; 389 | } 390 | ::-moz-selection { 391 | color: white; 392 | text-shadow: none; 393 | background: #222222; 394 | } 395 | ::selection { 396 | color: white; 397 | text-shadow: none; 398 | background: #222222; 399 | } 400 | .item-image img { 401 | max-width: 100%; 402 | } 403 | img::selection { 404 | color: white; 405 | background: transparent; 406 | } 407 | img::-moz-selection { 408 | color: white; 409 | background: transparent; 410 | } 411 | body { 412 | webkit-tap-highlight-color: #222222; 413 | } 414 | -------------------------------------------------------------------------------- /paula/vendor/magnific-popup/jquery.magnific-popup.min.js: -------------------------------------------------------------------------------- 1 | /*! Magnific Popup - v1.1.0 - 2016-02-20 2 | * http://dimsemenov.com/plugins/magnific-popup/ 3 | * Copyright (c) 2016 Dmitry Semenov; */ 4 | !function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):window.jQuery||window.Zepto)}(function(a){var b,c,d,e,f,g,h="Close",i="BeforeClose",j="AfterClose",k="BeforeAppend",l="MarkupParse",m="Open",n="Change",o="mfp",p="."+o,q="mfp-ready",r="mfp-removing",s="mfp-prevent-close",t=function(){},u=!!window.jQuery,v=a(window),w=function(a,c){b.ev.on(o+a+p,c)},x=function(b,c,d,e){var f=document.createElement("div");return f.className="mfp-"+b,d&&(f.innerHTML=d),e?c&&c.appendChild(f):(f=a(f),c&&f.appendTo(c)),f},y=function(c,d){b.ev.triggerHandler(o+c,d),b.st.callbacks&&(c=c.charAt(0).toLowerCase()+c.slice(1),b.st.callbacks[c]&&b.st.callbacks[c].apply(b,a.isArray(d)?d:[d]))},z=function(c){return c===g&&b.currTemplate.closeBtn||(b.currTemplate.closeBtn=a(b.st.closeMarkup.replace("%title%",b.st.tClose)),g=c),b.currTemplate.closeBtn},A=function(){a.magnificPopup.instance||(b=new t,b.init(),a.magnificPopup.instance=b)},B=function(){var a=document.createElement("p").style,b=["ms","O","Moz","Webkit"];if(void 0!==a.transition)return!0;for(;b.length;)if(b.pop()+"Transition"in a)return!0;return!1};t.prototype={constructor:t,init:function(){var c=navigator.appVersion;b.isLowIE=b.isIE8=document.all&&!document.addEventListener,b.isAndroid=/android/gi.test(c),b.isIOS=/iphone|ipad|ipod/gi.test(c),b.supportsTransition=B(),b.probablyMobile=b.isAndroid||b.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),d=a(document),b.popupsCache={}},open:function(c){var e;if(c.isObj===!1){b.items=c.items.toArray(),b.index=0;var g,h=c.items;for(e=0;e(a||v.height())},_setFocus:function(){(b.st.focus?b.content.find(b.st.focus).eq(0):b.wrap).focus()},_onFocusIn:function(c){return c.target===b.wrap[0]||a.contains(b.wrap[0],c.target)?void 0:(b._setFocus(),!1)},_parseMarkup:function(b,c,d){var e;d.data&&(c=a.extend(d.data,c)),y(l,[b,c,d]),a.each(c,function(c,d){if(void 0===d||d===!1)return!0;if(e=c.split("_"),e.length>1){var f=b.find(p+"-"+e[0]);if(f.length>0){var g=e[1];"replaceWith"===g?f[0]!==d[0]&&f.replaceWith(d):"img"===g?f.is("img")?f.attr("src",d):f.replaceWith(a("").attr("src",d).attr("class",f.attr("class"))):f.attr(e[1],d)}}else b.find(p+"-"+c).html(d)})},_getScrollbarSize:function(){if(void 0===b.scrollbarSize){var a=document.createElement("div");a.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(a),b.scrollbarSize=a.offsetWidth-a.clientWidth,document.body.removeChild(a)}return b.scrollbarSize}},a.magnificPopup={instance:null,proto:t.prototype,modules:[],open:function(b,c){return A(),b=b?a.extend(!0,{},b):{},b.isObj=!0,b.index=c||0,this.instance.open(b)},close:function(){return a.magnificPopup.instance&&a.magnificPopup.instance.close()},registerModule:function(b,c){c.options&&(a.magnificPopup.defaults[b]=c.options),a.extend(this.proto,c.proto),this.modules.push(b)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("
");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); -------------------------------------------------------------------------------- /paula/vendor/font-awesome/less/variables.less: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | @fa-font-path: "../fonts"; 5 | @fa-font-size-base: 14px; 6 | @fa-line-height-base: 1; 7 | //@fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts"; // for referencing Bootstrap CDN font files directly 8 | @fa-css-prefix: fa; 9 | @fa-version: "4.6.3"; 10 | @fa-border-color: #eee; 11 | @fa-inverse: #fff; 12 | @fa-li-width: (30em / 14); 13 | 14 | @fa-var-500px: "\f26e"; 15 | @fa-var-adjust: "\f042"; 16 | @fa-var-adn: "\f170"; 17 | @fa-var-align-center: "\f037"; 18 | @fa-var-align-justify: "\f039"; 19 | @fa-var-align-left: "\f036"; 20 | @fa-var-align-right: "\f038"; 21 | @fa-var-amazon: "\f270"; 22 | @fa-var-ambulance: "\f0f9"; 23 | @fa-var-american-sign-language-interpreting: "\f2a3"; 24 | @fa-var-anchor: "\f13d"; 25 | @fa-var-android: "\f17b"; 26 | @fa-var-angellist: "\f209"; 27 | @fa-var-angle-double-down: "\f103"; 28 | @fa-var-angle-double-left: "\f100"; 29 | @fa-var-angle-double-right: "\f101"; 30 | @fa-var-angle-double-up: "\f102"; 31 | @fa-var-angle-down: "\f107"; 32 | @fa-var-angle-left: "\f104"; 33 | @fa-var-angle-right: "\f105"; 34 | @fa-var-angle-up: "\f106"; 35 | @fa-var-apple: "\f179"; 36 | @fa-var-archive: "\f187"; 37 | @fa-var-area-chart: "\f1fe"; 38 | @fa-var-arrow-circle-down: "\f0ab"; 39 | @fa-var-arrow-circle-left: "\f0a8"; 40 | @fa-var-arrow-circle-o-down: "\f01a"; 41 | @fa-var-arrow-circle-o-left: "\f190"; 42 | @fa-var-arrow-circle-o-right: "\f18e"; 43 | @fa-var-arrow-circle-o-up: "\f01b"; 44 | @fa-var-arrow-circle-right: "\f0a9"; 45 | @fa-var-arrow-circle-up: "\f0aa"; 46 | @fa-var-arrow-down: "\f063"; 47 | @fa-var-arrow-left: "\f060"; 48 | @fa-var-arrow-right: "\f061"; 49 | @fa-var-arrow-up: "\f062"; 50 | @fa-var-arrows: "\f047"; 51 | @fa-var-arrows-alt: "\f0b2"; 52 | @fa-var-arrows-h: "\f07e"; 53 | @fa-var-arrows-v: "\f07d"; 54 | @fa-var-asl-interpreting: "\f2a3"; 55 | @fa-var-assistive-listening-systems: "\f2a2"; 56 | @fa-var-asterisk: "\f069"; 57 | @fa-var-at: "\f1fa"; 58 | @fa-var-audio-description: "\f29e"; 59 | @fa-var-automobile: "\f1b9"; 60 | @fa-var-backward: "\f04a"; 61 | @fa-var-balance-scale: "\f24e"; 62 | @fa-var-ban: "\f05e"; 63 | @fa-var-bank: "\f19c"; 64 | @fa-var-bar-chart: "\f080"; 65 | @fa-var-bar-chart-o: "\f080"; 66 | @fa-var-barcode: "\f02a"; 67 | @fa-var-bars: "\f0c9"; 68 | @fa-var-battery-0: "\f244"; 69 | @fa-var-battery-1: "\f243"; 70 | @fa-var-battery-2: "\f242"; 71 | @fa-var-battery-3: "\f241"; 72 | @fa-var-battery-4: "\f240"; 73 | @fa-var-battery-empty: "\f244"; 74 | @fa-var-battery-full: "\f240"; 75 | @fa-var-battery-half: "\f242"; 76 | @fa-var-battery-quarter: "\f243"; 77 | @fa-var-battery-three-quarters: "\f241"; 78 | @fa-var-bed: "\f236"; 79 | @fa-var-beer: "\f0fc"; 80 | @fa-var-behance: "\f1b4"; 81 | @fa-var-behance-square: "\f1b5"; 82 | @fa-var-bell: "\f0f3"; 83 | @fa-var-bell-o: "\f0a2"; 84 | @fa-var-bell-slash: "\f1f6"; 85 | @fa-var-bell-slash-o: "\f1f7"; 86 | @fa-var-bicycle: "\f206"; 87 | @fa-var-binoculars: "\f1e5"; 88 | @fa-var-birthday-cake: "\f1fd"; 89 | @fa-var-bitbucket: "\f171"; 90 | @fa-var-bitbucket-square: "\f172"; 91 | @fa-var-bitcoin: "\f15a"; 92 | @fa-var-black-tie: "\f27e"; 93 | @fa-var-blind: "\f29d"; 94 | @fa-var-bluetooth: "\f293"; 95 | @fa-var-bluetooth-b: "\f294"; 96 | @fa-var-bold: "\f032"; 97 | @fa-var-bolt: "\f0e7"; 98 | @fa-var-bomb: "\f1e2"; 99 | @fa-var-book: "\f02d"; 100 | @fa-var-bookmark: "\f02e"; 101 | @fa-var-bookmark-o: "\f097"; 102 | @fa-var-braille: "\f2a1"; 103 | @fa-var-briefcase: "\f0b1"; 104 | @fa-var-btc: "\f15a"; 105 | @fa-var-bug: "\f188"; 106 | @fa-var-building: "\f1ad"; 107 | @fa-var-building-o: "\f0f7"; 108 | @fa-var-bullhorn: "\f0a1"; 109 | @fa-var-bullseye: "\f140"; 110 | @fa-var-bus: "\f207"; 111 | @fa-var-buysellads: "\f20d"; 112 | @fa-var-cab: "\f1ba"; 113 | @fa-var-calculator: "\f1ec"; 114 | @fa-var-calendar: "\f073"; 115 | @fa-var-calendar-check-o: "\f274"; 116 | @fa-var-calendar-minus-o: "\f272"; 117 | @fa-var-calendar-o: "\f133"; 118 | @fa-var-calendar-plus-o: "\f271"; 119 | @fa-var-calendar-times-o: "\f273"; 120 | @fa-var-camera: "\f030"; 121 | @fa-var-camera-retro: "\f083"; 122 | @fa-var-car: "\f1b9"; 123 | @fa-var-caret-down: "\f0d7"; 124 | @fa-var-caret-left: "\f0d9"; 125 | @fa-var-caret-right: "\f0da"; 126 | @fa-var-caret-square-o-down: "\f150"; 127 | @fa-var-caret-square-o-left: "\f191"; 128 | @fa-var-caret-square-o-right: "\f152"; 129 | @fa-var-caret-square-o-up: "\f151"; 130 | @fa-var-caret-up: "\f0d8"; 131 | @fa-var-cart-arrow-down: "\f218"; 132 | @fa-var-cart-plus: "\f217"; 133 | @fa-var-cc: "\f20a"; 134 | @fa-var-cc-amex: "\f1f3"; 135 | @fa-var-cc-diners-club: "\f24c"; 136 | @fa-var-cc-discover: "\f1f2"; 137 | @fa-var-cc-jcb: "\f24b"; 138 | @fa-var-cc-mastercard: "\f1f1"; 139 | @fa-var-cc-paypal: "\f1f4"; 140 | @fa-var-cc-stripe: "\f1f5"; 141 | @fa-var-cc-visa: "\f1f0"; 142 | @fa-var-certificate: "\f0a3"; 143 | @fa-var-chain: "\f0c1"; 144 | @fa-var-chain-broken: "\f127"; 145 | @fa-var-check: "\f00c"; 146 | @fa-var-check-circle: "\f058"; 147 | @fa-var-check-circle-o: "\f05d"; 148 | @fa-var-check-square: "\f14a"; 149 | @fa-var-check-square-o: "\f046"; 150 | @fa-var-chevron-circle-down: "\f13a"; 151 | @fa-var-chevron-circle-left: "\f137"; 152 | @fa-var-chevron-circle-right: "\f138"; 153 | @fa-var-chevron-circle-up: "\f139"; 154 | @fa-var-chevron-down: "\f078"; 155 | @fa-var-chevron-left: "\f053"; 156 | @fa-var-chevron-right: "\f054"; 157 | @fa-var-chevron-up: "\f077"; 158 | @fa-var-child: "\f1ae"; 159 | @fa-var-chrome: "\f268"; 160 | @fa-var-circle: "\f111"; 161 | @fa-var-circle-o: "\f10c"; 162 | @fa-var-circle-o-notch: "\f1ce"; 163 | @fa-var-circle-thin: "\f1db"; 164 | @fa-var-clipboard: "\f0ea"; 165 | @fa-var-clock-o: "\f017"; 166 | @fa-var-clone: "\f24d"; 167 | @fa-var-close: "\f00d"; 168 | @fa-var-cloud: "\f0c2"; 169 | @fa-var-cloud-download: "\f0ed"; 170 | @fa-var-cloud-upload: "\f0ee"; 171 | @fa-var-cny: "\f157"; 172 | @fa-var-code: "\f121"; 173 | @fa-var-code-fork: "\f126"; 174 | @fa-var-codepen: "\f1cb"; 175 | @fa-var-codiepie: "\f284"; 176 | @fa-var-coffee: "\f0f4"; 177 | @fa-var-cog: "\f013"; 178 | @fa-var-cogs: "\f085"; 179 | @fa-var-columns: "\f0db"; 180 | @fa-var-comment: "\f075"; 181 | @fa-var-comment-o: "\f0e5"; 182 | @fa-var-commenting: "\f27a"; 183 | @fa-var-commenting-o: "\f27b"; 184 | @fa-var-comments: "\f086"; 185 | @fa-var-comments-o: "\f0e6"; 186 | @fa-var-compass: "\f14e"; 187 | @fa-var-compress: "\f066"; 188 | @fa-var-connectdevelop: "\f20e"; 189 | @fa-var-contao: "\f26d"; 190 | @fa-var-copy: "\f0c5"; 191 | @fa-var-copyright: "\f1f9"; 192 | @fa-var-creative-commons: "\f25e"; 193 | @fa-var-credit-card: "\f09d"; 194 | @fa-var-credit-card-alt: "\f283"; 195 | @fa-var-crop: "\f125"; 196 | @fa-var-crosshairs: "\f05b"; 197 | @fa-var-css3: "\f13c"; 198 | @fa-var-cube: "\f1b2"; 199 | @fa-var-cubes: "\f1b3"; 200 | @fa-var-cut: "\f0c4"; 201 | @fa-var-cutlery: "\f0f5"; 202 | @fa-var-dashboard: "\f0e4"; 203 | @fa-var-dashcube: "\f210"; 204 | @fa-var-database: "\f1c0"; 205 | @fa-var-deaf: "\f2a4"; 206 | @fa-var-deafness: "\f2a4"; 207 | @fa-var-dedent: "\f03b"; 208 | @fa-var-delicious: "\f1a5"; 209 | @fa-var-desktop: "\f108"; 210 | @fa-var-deviantart: "\f1bd"; 211 | @fa-var-diamond: "\f219"; 212 | @fa-var-digg: "\f1a6"; 213 | @fa-var-dollar: "\f155"; 214 | @fa-var-dot-circle-o: "\f192"; 215 | @fa-var-download: "\f019"; 216 | @fa-var-dribbble: "\f17d"; 217 | @fa-var-dropbox: "\f16b"; 218 | @fa-var-drupal: "\f1a9"; 219 | @fa-var-edge: "\f282"; 220 | @fa-var-edit: "\f044"; 221 | @fa-var-eject: "\f052"; 222 | @fa-var-ellipsis-h: "\f141"; 223 | @fa-var-ellipsis-v: "\f142"; 224 | @fa-var-empire: "\f1d1"; 225 | @fa-var-envelope: "\f0e0"; 226 | @fa-var-envelope-o: "\f003"; 227 | @fa-var-envelope-square: "\f199"; 228 | @fa-var-envira: "\f299"; 229 | @fa-var-eraser: "\f12d"; 230 | @fa-var-eur: "\f153"; 231 | @fa-var-euro: "\f153"; 232 | @fa-var-exchange: "\f0ec"; 233 | @fa-var-exclamation: "\f12a"; 234 | @fa-var-exclamation-circle: "\f06a"; 235 | @fa-var-exclamation-triangle: "\f071"; 236 | @fa-var-expand: "\f065"; 237 | @fa-var-expeditedssl: "\f23e"; 238 | @fa-var-external-link: "\f08e"; 239 | @fa-var-external-link-square: "\f14c"; 240 | @fa-var-eye: "\f06e"; 241 | @fa-var-eye-slash: "\f070"; 242 | @fa-var-eyedropper: "\f1fb"; 243 | @fa-var-fa: "\f2b4"; 244 | @fa-var-facebook: "\f09a"; 245 | @fa-var-facebook-f: "\f09a"; 246 | @fa-var-facebook-official: "\f230"; 247 | @fa-var-facebook-square: "\f082"; 248 | @fa-var-fast-backward: "\f049"; 249 | @fa-var-fast-forward: "\f050"; 250 | @fa-var-fax: "\f1ac"; 251 | @fa-var-feed: "\f09e"; 252 | @fa-var-female: "\f182"; 253 | @fa-var-fighter-jet: "\f0fb"; 254 | @fa-var-file: "\f15b"; 255 | @fa-var-file-archive-o: "\f1c6"; 256 | @fa-var-file-audio-o: "\f1c7"; 257 | @fa-var-file-code-o: "\f1c9"; 258 | @fa-var-file-excel-o: "\f1c3"; 259 | @fa-var-file-image-o: "\f1c5"; 260 | @fa-var-file-movie-o: "\f1c8"; 261 | @fa-var-file-o: "\f016"; 262 | @fa-var-file-pdf-o: "\f1c1"; 263 | @fa-var-file-photo-o: "\f1c5"; 264 | @fa-var-file-picture-o: "\f1c5"; 265 | @fa-var-file-powerpoint-o: "\f1c4"; 266 | @fa-var-file-sound-o: "\f1c7"; 267 | @fa-var-file-text: "\f15c"; 268 | @fa-var-file-text-o: "\f0f6"; 269 | @fa-var-file-video-o: "\f1c8"; 270 | @fa-var-file-word-o: "\f1c2"; 271 | @fa-var-file-zip-o: "\f1c6"; 272 | @fa-var-files-o: "\f0c5"; 273 | @fa-var-film: "\f008"; 274 | @fa-var-filter: "\f0b0"; 275 | @fa-var-fire: "\f06d"; 276 | @fa-var-fire-extinguisher: "\f134"; 277 | @fa-var-firefox: "\f269"; 278 | @fa-var-first-order: "\f2b0"; 279 | @fa-var-flag: "\f024"; 280 | @fa-var-flag-checkered: "\f11e"; 281 | @fa-var-flag-o: "\f11d"; 282 | @fa-var-flash: "\f0e7"; 283 | @fa-var-flask: "\f0c3"; 284 | @fa-var-flickr: "\f16e"; 285 | @fa-var-floppy-o: "\f0c7"; 286 | @fa-var-folder: "\f07b"; 287 | @fa-var-folder-o: "\f114"; 288 | @fa-var-folder-open: "\f07c"; 289 | @fa-var-folder-open-o: "\f115"; 290 | @fa-var-font: "\f031"; 291 | @fa-var-font-awesome: "\f2b4"; 292 | @fa-var-fonticons: "\f280"; 293 | @fa-var-fort-awesome: "\f286"; 294 | @fa-var-forumbee: "\f211"; 295 | @fa-var-forward: "\f04e"; 296 | @fa-var-foursquare: "\f180"; 297 | @fa-var-frown-o: "\f119"; 298 | @fa-var-futbol-o: "\f1e3"; 299 | @fa-var-gamepad: "\f11b"; 300 | @fa-var-gavel: "\f0e3"; 301 | @fa-var-gbp: "\f154"; 302 | @fa-var-ge: "\f1d1"; 303 | @fa-var-gear: "\f013"; 304 | @fa-var-gears: "\f085"; 305 | @fa-var-genderless: "\f22d"; 306 | @fa-var-get-pocket: "\f265"; 307 | @fa-var-gg: "\f260"; 308 | @fa-var-gg-circle: "\f261"; 309 | @fa-var-gift: "\f06b"; 310 | @fa-var-git: "\f1d3"; 311 | @fa-var-git-square: "\f1d2"; 312 | @fa-var-github: "\f09b"; 313 | @fa-var-github-alt: "\f113"; 314 | @fa-var-github-square: "\f092"; 315 | @fa-var-gitlab: "\f296"; 316 | @fa-var-gittip: "\f184"; 317 | @fa-var-glass: "\f000"; 318 | @fa-var-glide: "\f2a5"; 319 | @fa-var-glide-g: "\f2a6"; 320 | @fa-var-globe: "\f0ac"; 321 | @fa-var-google: "\f1a0"; 322 | @fa-var-google-plus: "\f0d5"; 323 | @fa-var-google-plus-circle: "\f2b3"; 324 | @fa-var-google-plus-official: "\f2b3"; 325 | @fa-var-google-plus-square: "\f0d4"; 326 | @fa-var-google-wallet: "\f1ee"; 327 | @fa-var-graduation-cap: "\f19d"; 328 | @fa-var-gratipay: "\f184"; 329 | @fa-var-group: "\f0c0"; 330 | @fa-var-h-square: "\f0fd"; 331 | @fa-var-hacker-news: "\f1d4"; 332 | @fa-var-hand-grab-o: "\f255"; 333 | @fa-var-hand-lizard-o: "\f258"; 334 | @fa-var-hand-o-down: "\f0a7"; 335 | @fa-var-hand-o-left: "\f0a5"; 336 | @fa-var-hand-o-right: "\f0a4"; 337 | @fa-var-hand-o-up: "\f0a6"; 338 | @fa-var-hand-paper-o: "\f256"; 339 | @fa-var-hand-peace-o: "\f25b"; 340 | @fa-var-hand-pointer-o: "\f25a"; 341 | @fa-var-hand-rock-o: "\f255"; 342 | @fa-var-hand-scissors-o: "\f257"; 343 | @fa-var-hand-spock-o: "\f259"; 344 | @fa-var-hand-stop-o: "\f256"; 345 | @fa-var-hard-of-hearing: "\f2a4"; 346 | @fa-var-hashtag: "\f292"; 347 | @fa-var-hdd-o: "\f0a0"; 348 | @fa-var-header: "\f1dc"; 349 | @fa-var-headphones: "\f025"; 350 | @fa-var-heart: "\f004"; 351 | @fa-var-heart-o: "\f08a"; 352 | @fa-var-heartbeat: "\f21e"; 353 | @fa-var-history: "\f1da"; 354 | @fa-var-home: "\f015"; 355 | @fa-var-hospital-o: "\f0f8"; 356 | @fa-var-hotel: "\f236"; 357 | @fa-var-hourglass: "\f254"; 358 | @fa-var-hourglass-1: "\f251"; 359 | @fa-var-hourglass-2: "\f252"; 360 | @fa-var-hourglass-3: "\f253"; 361 | @fa-var-hourglass-end: "\f253"; 362 | @fa-var-hourglass-half: "\f252"; 363 | @fa-var-hourglass-o: "\f250"; 364 | @fa-var-hourglass-start: "\f251"; 365 | @fa-var-houzz: "\f27c"; 366 | @fa-var-html5: "\f13b"; 367 | @fa-var-i-cursor: "\f246"; 368 | @fa-var-ils: "\f20b"; 369 | @fa-var-image: "\f03e"; 370 | @fa-var-inbox: "\f01c"; 371 | @fa-var-indent: "\f03c"; 372 | @fa-var-industry: "\f275"; 373 | @fa-var-info: "\f129"; 374 | @fa-var-info-circle: "\f05a"; 375 | @fa-var-inr: "\f156"; 376 | @fa-var-instagram: "\f16d"; 377 | @fa-var-institution: "\f19c"; 378 | @fa-var-internet-explorer: "\f26b"; 379 | @fa-var-intersex: "\f224"; 380 | @fa-var-ioxhost: "\f208"; 381 | @fa-var-italic: "\f033"; 382 | @fa-var-joomla: "\f1aa"; 383 | @fa-var-jpy: "\f157"; 384 | @fa-var-jsfiddle: "\f1cc"; 385 | @fa-var-key: "\f084"; 386 | @fa-var-keyboard-o: "\f11c"; 387 | @fa-var-krw: "\f159"; 388 | @fa-var-language: "\f1ab"; 389 | @fa-var-laptop: "\f109"; 390 | @fa-var-lastfm: "\f202"; 391 | @fa-var-lastfm-square: "\f203"; 392 | @fa-var-leaf: "\f06c"; 393 | @fa-var-leanpub: "\f212"; 394 | @fa-var-legal: "\f0e3"; 395 | @fa-var-lemon-o: "\f094"; 396 | @fa-var-level-down: "\f149"; 397 | @fa-var-level-up: "\f148"; 398 | @fa-var-life-bouy: "\f1cd"; 399 | @fa-var-life-buoy: "\f1cd"; 400 | @fa-var-life-ring: "\f1cd"; 401 | @fa-var-life-saver: "\f1cd"; 402 | @fa-var-lightbulb-o: "\f0eb"; 403 | @fa-var-line-chart: "\f201"; 404 | @fa-var-link: "\f0c1"; 405 | @fa-var-linkedin: "\f0e1"; 406 | @fa-var-linkedin-square: "\f08c"; 407 | @fa-var-linux: "\f17c"; 408 | @fa-var-list: "\f03a"; 409 | @fa-var-list-alt: "\f022"; 410 | @fa-var-list-ol: "\f0cb"; 411 | @fa-var-list-ul: "\f0ca"; 412 | @fa-var-location-arrow: "\f124"; 413 | @fa-var-lock: "\f023"; 414 | @fa-var-long-arrow-down: "\f175"; 415 | @fa-var-long-arrow-left: "\f177"; 416 | @fa-var-long-arrow-right: "\f178"; 417 | @fa-var-long-arrow-up: "\f176"; 418 | @fa-var-low-vision: "\f2a8"; 419 | @fa-var-magic: "\f0d0"; 420 | @fa-var-magnet: "\f076"; 421 | @fa-var-mail-forward: "\f064"; 422 | @fa-var-mail-reply: "\f112"; 423 | @fa-var-mail-reply-all: "\f122"; 424 | @fa-var-male: "\f183"; 425 | @fa-var-map: "\f279"; 426 | @fa-var-map-marker: "\f041"; 427 | @fa-var-map-o: "\f278"; 428 | @fa-var-map-pin: "\f276"; 429 | @fa-var-map-signs: "\f277"; 430 | @fa-var-mars: "\f222"; 431 | @fa-var-mars-double: "\f227"; 432 | @fa-var-mars-stroke: "\f229"; 433 | @fa-var-mars-stroke-h: "\f22b"; 434 | @fa-var-mars-stroke-v: "\f22a"; 435 | @fa-var-maxcdn: "\f136"; 436 | @fa-var-meanpath: "\f20c"; 437 | @fa-var-medium: "\f23a"; 438 | @fa-var-medkit: "\f0fa"; 439 | @fa-var-meh-o: "\f11a"; 440 | @fa-var-mercury: "\f223"; 441 | @fa-var-microphone: "\f130"; 442 | @fa-var-microphone-slash: "\f131"; 443 | @fa-var-minus: "\f068"; 444 | @fa-var-minus-circle: "\f056"; 445 | @fa-var-minus-square: "\f146"; 446 | @fa-var-minus-square-o: "\f147"; 447 | @fa-var-mixcloud: "\f289"; 448 | @fa-var-mobile: "\f10b"; 449 | @fa-var-mobile-phone: "\f10b"; 450 | @fa-var-modx: "\f285"; 451 | @fa-var-money: "\f0d6"; 452 | @fa-var-moon-o: "\f186"; 453 | @fa-var-mortar-board: "\f19d"; 454 | @fa-var-motorcycle: "\f21c"; 455 | @fa-var-mouse-pointer: "\f245"; 456 | @fa-var-music: "\f001"; 457 | @fa-var-navicon: "\f0c9"; 458 | @fa-var-neuter: "\f22c"; 459 | @fa-var-newspaper-o: "\f1ea"; 460 | @fa-var-object-group: "\f247"; 461 | @fa-var-object-ungroup: "\f248"; 462 | @fa-var-odnoklassniki: "\f263"; 463 | @fa-var-odnoklassniki-square: "\f264"; 464 | @fa-var-opencart: "\f23d"; 465 | @fa-var-openid: "\f19b"; 466 | @fa-var-opera: "\f26a"; 467 | @fa-var-optin-monster: "\f23c"; 468 | @fa-var-outdent: "\f03b"; 469 | @fa-var-pagelines: "\f18c"; 470 | @fa-var-paint-brush: "\f1fc"; 471 | @fa-var-paper-plane: "\f1d8"; 472 | @fa-var-paper-plane-o: "\f1d9"; 473 | @fa-var-paperclip: "\f0c6"; 474 | @fa-var-paragraph: "\f1dd"; 475 | @fa-var-paste: "\f0ea"; 476 | @fa-var-pause: "\f04c"; 477 | @fa-var-pause-circle: "\f28b"; 478 | @fa-var-pause-circle-o: "\f28c"; 479 | @fa-var-paw: "\f1b0"; 480 | @fa-var-paypal: "\f1ed"; 481 | @fa-var-pencil: "\f040"; 482 | @fa-var-pencil-square: "\f14b"; 483 | @fa-var-pencil-square-o: "\f044"; 484 | @fa-var-percent: "\f295"; 485 | @fa-var-phone: "\f095"; 486 | @fa-var-phone-square: "\f098"; 487 | @fa-var-photo: "\f03e"; 488 | @fa-var-picture-o: "\f03e"; 489 | @fa-var-pie-chart: "\f200"; 490 | @fa-var-pied-piper: "\f2ae"; 491 | @fa-var-pied-piper-alt: "\f1a8"; 492 | @fa-var-pied-piper-pp: "\f1a7"; 493 | @fa-var-pinterest: "\f0d2"; 494 | @fa-var-pinterest-p: "\f231"; 495 | @fa-var-pinterest-square: "\f0d3"; 496 | @fa-var-plane: "\f072"; 497 | @fa-var-play: "\f04b"; 498 | @fa-var-play-circle: "\f144"; 499 | @fa-var-play-circle-o: "\f01d"; 500 | @fa-var-plug: "\f1e6"; 501 | @fa-var-plus: "\f067"; 502 | @fa-var-plus-circle: "\f055"; 503 | @fa-var-plus-square: "\f0fe"; 504 | @fa-var-plus-square-o: "\f196"; 505 | @fa-var-power-off: "\f011"; 506 | @fa-var-print: "\f02f"; 507 | @fa-var-product-hunt: "\f288"; 508 | @fa-var-puzzle-piece: "\f12e"; 509 | @fa-var-qq: "\f1d6"; 510 | @fa-var-qrcode: "\f029"; 511 | @fa-var-question: "\f128"; 512 | @fa-var-question-circle: "\f059"; 513 | @fa-var-question-circle-o: "\f29c"; 514 | @fa-var-quote-left: "\f10d"; 515 | @fa-var-quote-right: "\f10e"; 516 | @fa-var-ra: "\f1d0"; 517 | @fa-var-random: "\f074"; 518 | @fa-var-rebel: "\f1d0"; 519 | @fa-var-recycle: "\f1b8"; 520 | @fa-var-reddit: "\f1a1"; 521 | @fa-var-reddit-alien: "\f281"; 522 | @fa-var-reddit-square: "\f1a2"; 523 | @fa-var-refresh: "\f021"; 524 | @fa-var-registered: "\f25d"; 525 | @fa-var-remove: "\f00d"; 526 | @fa-var-renren: "\f18b"; 527 | @fa-var-reorder: "\f0c9"; 528 | @fa-var-repeat: "\f01e"; 529 | @fa-var-reply: "\f112"; 530 | @fa-var-reply-all: "\f122"; 531 | @fa-var-resistance: "\f1d0"; 532 | @fa-var-retweet: "\f079"; 533 | @fa-var-rmb: "\f157"; 534 | @fa-var-road: "\f018"; 535 | @fa-var-rocket: "\f135"; 536 | @fa-var-rotate-left: "\f0e2"; 537 | @fa-var-rotate-right: "\f01e"; 538 | @fa-var-rouble: "\f158"; 539 | @fa-var-rss: "\f09e"; 540 | @fa-var-rss-square: "\f143"; 541 | @fa-var-rub: "\f158"; 542 | @fa-var-ruble: "\f158"; 543 | @fa-var-rupee: "\f156"; 544 | @fa-var-safari: "\f267"; 545 | @fa-var-save: "\f0c7"; 546 | @fa-var-scissors: "\f0c4"; 547 | @fa-var-scribd: "\f28a"; 548 | @fa-var-search: "\f002"; 549 | @fa-var-search-minus: "\f010"; 550 | @fa-var-search-plus: "\f00e"; 551 | @fa-var-sellsy: "\f213"; 552 | @fa-var-send: "\f1d8"; 553 | @fa-var-send-o: "\f1d9"; 554 | @fa-var-server: "\f233"; 555 | @fa-var-share: "\f064"; 556 | @fa-var-share-alt: "\f1e0"; 557 | @fa-var-share-alt-square: "\f1e1"; 558 | @fa-var-share-square: "\f14d"; 559 | @fa-var-share-square-o: "\f045"; 560 | @fa-var-shekel: "\f20b"; 561 | @fa-var-sheqel: "\f20b"; 562 | @fa-var-shield: "\f132"; 563 | @fa-var-ship: "\f21a"; 564 | @fa-var-shirtsinbulk: "\f214"; 565 | @fa-var-shopping-bag: "\f290"; 566 | @fa-var-shopping-basket: "\f291"; 567 | @fa-var-shopping-cart: "\f07a"; 568 | @fa-var-sign-in: "\f090"; 569 | @fa-var-sign-language: "\f2a7"; 570 | @fa-var-sign-out: "\f08b"; 571 | @fa-var-signal: "\f012"; 572 | @fa-var-signing: "\f2a7"; 573 | @fa-var-simplybuilt: "\f215"; 574 | @fa-var-sitemap: "\f0e8"; 575 | @fa-var-skyatlas: "\f216"; 576 | @fa-var-skype: "\f17e"; 577 | @fa-var-slack: "\f198"; 578 | @fa-var-sliders: "\f1de"; 579 | @fa-var-slideshare: "\f1e7"; 580 | @fa-var-smile-o: "\f118"; 581 | @fa-var-snapchat: "\f2ab"; 582 | @fa-var-snapchat-ghost: "\f2ac"; 583 | @fa-var-snapchat-square: "\f2ad"; 584 | @fa-var-soccer-ball-o: "\f1e3"; 585 | @fa-var-sort: "\f0dc"; 586 | @fa-var-sort-alpha-asc: "\f15d"; 587 | @fa-var-sort-alpha-desc: "\f15e"; 588 | @fa-var-sort-amount-asc: "\f160"; 589 | @fa-var-sort-amount-desc: "\f161"; 590 | @fa-var-sort-asc: "\f0de"; 591 | @fa-var-sort-desc: "\f0dd"; 592 | @fa-var-sort-down: "\f0dd"; 593 | @fa-var-sort-numeric-asc: "\f162"; 594 | @fa-var-sort-numeric-desc: "\f163"; 595 | @fa-var-sort-up: "\f0de"; 596 | @fa-var-soundcloud: "\f1be"; 597 | @fa-var-space-shuttle: "\f197"; 598 | @fa-var-spinner: "\f110"; 599 | @fa-var-spoon: "\f1b1"; 600 | @fa-var-spotify: "\f1bc"; 601 | @fa-var-square: "\f0c8"; 602 | @fa-var-square-o: "\f096"; 603 | @fa-var-stack-exchange: "\f18d"; 604 | @fa-var-stack-overflow: "\f16c"; 605 | @fa-var-star: "\f005"; 606 | @fa-var-star-half: "\f089"; 607 | @fa-var-star-half-empty: "\f123"; 608 | @fa-var-star-half-full: "\f123"; 609 | @fa-var-star-half-o: "\f123"; 610 | @fa-var-star-o: "\f006"; 611 | @fa-var-steam: "\f1b6"; 612 | @fa-var-steam-square: "\f1b7"; 613 | @fa-var-step-backward: "\f048"; 614 | @fa-var-step-forward: "\f051"; 615 | @fa-var-stethoscope: "\f0f1"; 616 | @fa-var-sticky-note: "\f249"; 617 | @fa-var-sticky-note-o: "\f24a"; 618 | @fa-var-stop: "\f04d"; 619 | @fa-var-stop-circle: "\f28d"; 620 | @fa-var-stop-circle-o: "\f28e"; 621 | @fa-var-street-view: "\f21d"; 622 | @fa-var-strikethrough: "\f0cc"; 623 | @fa-var-stumbleupon: "\f1a4"; 624 | @fa-var-stumbleupon-circle: "\f1a3"; 625 | @fa-var-subscript: "\f12c"; 626 | @fa-var-subway: "\f239"; 627 | @fa-var-suitcase: "\f0f2"; 628 | @fa-var-sun-o: "\f185"; 629 | @fa-var-superscript: "\f12b"; 630 | @fa-var-support: "\f1cd"; 631 | @fa-var-table: "\f0ce"; 632 | @fa-var-tablet: "\f10a"; 633 | @fa-var-tachometer: "\f0e4"; 634 | @fa-var-tag: "\f02b"; 635 | @fa-var-tags: "\f02c"; 636 | @fa-var-tasks: "\f0ae"; 637 | @fa-var-taxi: "\f1ba"; 638 | @fa-var-television: "\f26c"; 639 | @fa-var-tencent-weibo: "\f1d5"; 640 | @fa-var-terminal: "\f120"; 641 | @fa-var-text-height: "\f034"; 642 | @fa-var-text-width: "\f035"; 643 | @fa-var-th: "\f00a"; 644 | @fa-var-th-large: "\f009"; 645 | @fa-var-th-list: "\f00b"; 646 | @fa-var-themeisle: "\f2b2"; 647 | @fa-var-thumb-tack: "\f08d"; 648 | @fa-var-thumbs-down: "\f165"; 649 | @fa-var-thumbs-o-down: "\f088"; 650 | @fa-var-thumbs-o-up: "\f087"; 651 | @fa-var-thumbs-up: "\f164"; 652 | @fa-var-ticket: "\f145"; 653 | @fa-var-times: "\f00d"; 654 | @fa-var-times-circle: "\f057"; 655 | @fa-var-times-circle-o: "\f05c"; 656 | @fa-var-tint: "\f043"; 657 | @fa-var-toggle-down: "\f150"; 658 | @fa-var-toggle-left: "\f191"; 659 | @fa-var-toggle-off: "\f204"; 660 | @fa-var-toggle-on: "\f205"; 661 | @fa-var-toggle-right: "\f152"; 662 | @fa-var-toggle-up: "\f151"; 663 | @fa-var-trademark: "\f25c"; 664 | @fa-var-train: "\f238"; 665 | @fa-var-transgender: "\f224"; 666 | @fa-var-transgender-alt: "\f225"; 667 | @fa-var-trash: "\f1f8"; 668 | @fa-var-trash-o: "\f014"; 669 | @fa-var-tree: "\f1bb"; 670 | @fa-var-trello: "\f181"; 671 | @fa-var-tripadvisor: "\f262"; 672 | @fa-var-trophy: "\f091"; 673 | @fa-var-truck: "\f0d1"; 674 | @fa-var-try: "\f195"; 675 | @fa-var-tty: "\f1e4"; 676 | @fa-var-tumblr: "\f173"; 677 | @fa-var-tumblr-square: "\f174"; 678 | @fa-var-turkish-lira: "\f195"; 679 | @fa-var-tv: "\f26c"; 680 | @fa-var-twitch: "\f1e8"; 681 | @fa-var-twitter: "\f099"; 682 | @fa-var-twitter-square: "\f081"; 683 | @fa-var-umbrella: "\f0e9"; 684 | @fa-var-underline: "\f0cd"; 685 | @fa-var-undo: "\f0e2"; 686 | @fa-var-universal-access: "\f29a"; 687 | @fa-var-university: "\f19c"; 688 | @fa-var-unlink: "\f127"; 689 | @fa-var-unlock: "\f09c"; 690 | @fa-var-unlock-alt: "\f13e"; 691 | @fa-var-unsorted: "\f0dc"; 692 | @fa-var-upload: "\f093"; 693 | @fa-var-usb: "\f287"; 694 | @fa-var-usd: "\f155"; 695 | @fa-var-user: "\f007"; 696 | @fa-var-user-md: "\f0f0"; 697 | @fa-var-user-plus: "\f234"; 698 | @fa-var-user-secret: "\f21b"; 699 | @fa-var-user-times: "\f235"; 700 | @fa-var-users: "\f0c0"; 701 | @fa-var-venus: "\f221"; 702 | @fa-var-venus-double: "\f226"; 703 | @fa-var-venus-mars: "\f228"; 704 | @fa-var-viacoin: "\f237"; 705 | @fa-var-viadeo: "\f2a9"; 706 | @fa-var-viadeo-square: "\f2aa"; 707 | @fa-var-video-camera: "\f03d"; 708 | @fa-var-vimeo: "\f27d"; 709 | @fa-var-vimeo-square: "\f194"; 710 | @fa-var-vine: "\f1ca"; 711 | @fa-var-vk: "\f189"; 712 | @fa-var-volume-control-phone: "\f2a0"; 713 | @fa-var-volume-down: "\f027"; 714 | @fa-var-volume-off: "\f026"; 715 | @fa-var-volume-up: "\f028"; 716 | @fa-var-warning: "\f071"; 717 | @fa-var-wechat: "\f1d7"; 718 | @fa-var-weibo: "\f18a"; 719 | @fa-var-weixin: "\f1d7"; 720 | @fa-var-whatsapp: "\f232"; 721 | @fa-var-wheelchair: "\f193"; 722 | @fa-var-wheelchair-alt: "\f29b"; 723 | @fa-var-wifi: "\f1eb"; 724 | @fa-var-wikipedia-w: "\f266"; 725 | @fa-var-windows: "\f17a"; 726 | @fa-var-won: "\f159"; 727 | @fa-var-wordpress: "\f19a"; 728 | @fa-var-wpbeginner: "\f297"; 729 | @fa-var-wpforms: "\f298"; 730 | @fa-var-wrench: "\f0ad"; 731 | @fa-var-xing: "\f168"; 732 | @fa-var-xing-square: "\f169"; 733 | @fa-var-y-combinator: "\f23b"; 734 | @fa-var-y-combinator-square: "\f1d4"; 735 | @fa-var-yahoo: "\f19e"; 736 | @fa-var-yc: "\f23b"; 737 | @fa-var-yc-square: "\f1d4"; 738 | @fa-var-yelp: "\f1e9"; 739 | @fa-var-yen: "\f157"; 740 | @fa-var-yoast: "\f2b1"; 741 | @fa-var-youtube: "\f167"; 742 | @fa-var-youtube-play: "\f16a"; 743 | @fa-var-youtube-square: "\f166"; 744 | 745 | -------------------------------------------------------------------------------- /paula/vendor/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- 1 | // Variables 2 | // -------------------------- 3 | 4 | $fa-font-path: "../fonts" !default; 5 | $fa-font-size-base: 14px !default; 6 | $fa-line-height-base: 1 !default; 7 | //$fa-font-path: "//netdna.bootstrapcdn.com/font-awesome/4.6.3/fonts" !default; // for referencing Bootstrap CDN font files directly 8 | $fa-css-prefix: fa !default; 9 | $fa-version: "4.6.3" !default; 10 | $fa-border-color: #eee !default; 11 | $fa-inverse: #fff !default; 12 | $fa-li-width: (30em / 14) !default; 13 | 14 | $fa-var-500px: "\f26e"; 15 | $fa-var-adjust: "\f042"; 16 | $fa-var-adn: "\f170"; 17 | $fa-var-align-center: "\f037"; 18 | $fa-var-align-justify: "\f039"; 19 | $fa-var-align-left: "\f036"; 20 | $fa-var-align-right: "\f038"; 21 | $fa-var-amazon: "\f270"; 22 | $fa-var-ambulance: "\f0f9"; 23 | $fa-var-american-sign-language-interpreting: "\f2a3"; 24 | $fa-var-anchor: "\f13d"; 25 | $fa-var-android: "\f17b"; 26 | $fa-var-angellist: "\f209"; 27 | $fa-var-angle-double-down: "\f103"; 28 | $fa-var-angle-double-left: "\f100"; 29 | $fa-var-angle-double-right: "\f101"; 30 | $fa-var-angle-double-up: "\f102"; 31 | $fa-var-angle-down: "\f107"; 32 | $fa-var-angle-left: "\f104"; 33 | $fa-var-angle-right: "\f105"; 34 | $fa-var-angle-up: "\f106"; 35 | $fa-var-apple: "\f179"; 36 | $fa-var-archive: "\f187"; 37 | $fa-var-area-chart: "\f1fe"; 38 | $fa-var-arrow-circle-down: "\f0ab"; 39 | $fa-var-arrow-circle-left: "\f0a8"; 40 | $fa-var-arrow-circle-o-down: "\f01a"; 41 | $fa-var-arrow-circle-o-left: "\f190"; 42 | $fa-var-arrow-circle-o-right: "\f18e"; 43 | $fa-var-arrow-circle-o-up: "\f01b"; 44 | $fa-var-arrow-circle-right: "\f0a9"; 45 | $fa-var-arrow-circle-up: "\f0aa"; 46 | $fa-var-arrow-down: "\f063"; 47 | $fa-var-arrow-left: "\f060"; 48 | $fa-var-arrow-right: "\f061"; 49 | $fa-var-arrow-up: "\f062"; 50 | $fa-var-arrows: "\f047"; 51 | $fa-var-arrows-alt: "\f0b2"; 52 | $fa-var-arrows-h: "\f07e"; 53 | $fa-var-arrows-v: "\f07d"; 54 | $fa-var-asl-interpreting: "\f2a3"; 55 | $fa-var-assistive-listening-systems: "\f2a2"; 56 | $fa-var-asterisk: "\f069"; 57 | $fa-var-at: "\f1fa"; 58 | $fa-var-audio-description: "\f29e"; 59 | $fa-var-automobile: "\f1b9"; 60 | $fa-var-backward: "\f04a"; 61 | $fa-var-balance-scale: "\f24e"; 62 | $fa-var-ban: "\f05e"; 63 | $fa-var-bank: "\f19c"; 64 | $fa-var-bar-chart: "\f080"; 65 | $fa-var-bar-chart-o: "\f080"; 66 | $fa-var-barcode: "\f02a"; 67 | $fa-var-bars: "\f0c9"; 68 | $fa-var-battery-0: "\f244"; 69 | $fa-var-battery-1: "\f243"; 70 | $fa-var-battery-2: "\f242"; 71 | $fa-var-battery-3: "\f241"; 72 | $fa-var-battery-4: "\f240"; 73 | $fa-var-battery-empty: "\f244"; 74 | $fa-var-battery-full: "\f240"; 75 | $fa-var-battery-half: "\f242"; 76 | $fa-var-battery-quarter: "\f243"; 77 | $fa-var-battery-three-quarters: "\f241"; 78 | $fa-var-bed: "\f236"; 79 | $fa-var-beer: "\f0fc"; 80 | $fa-var-behance: "\f1b4"; 81 | $fa-var-behance-square: "\f1b5"; 82 | $fa-var-bell: "\f0f3"; 83 | $fa-var-bell-o: "\f0a2"; 84 | $fa-var-bell-slash: "\f1f6"; 85 | $fa-var-bell-slash-o: "\f1f7"; 86 | $fa-var-bicycle: "\f206"; 87 | $fa-var-binoculars: "\f1e5"; 88 | $fa-var-birthday-cake: "\f1fd"; 89 | $fa-var-bitbucket: "\f171"; 90 | $fa-var-bitbucket-square: "\f172"; 91 | $fa-var-bitcoin: "\f15a"; 92 | $fa-var-black-tie: "\f27e"; 93 | $fa-var-blind: "\f29d"; 94 | $fa-var-bluetooth: "\f293"; 95 | $fa-var-bluetooth-b: "\f294"; 96 | $fa-var-bold: "\f032"; 97 | $fa-var-bolt: "\f0e7"; 98 | $fa-var-bomb: "\f1e2"; 99 | $fa-var-book: "\f02d"; 100 | $fa-var-bookmark: "\f02e"; 101 | $fa-var-bookmark-o: "\f097"; 102 | $fa-var-braille: "\f2a1"; 103 | $fa-var-briefcase: "\f0b1"; 104 | $fa-var-btc: "\f15a"; 105 | $fa-var-bug: "\f188"; 106 | $fa-var-building: "\f1ad"; 107 | $fa-var-building-o: "\f0f7"; 108 | $fa-var-bullhorn: "\f0a1"; 109 | $fa-var-bullseye: "\f140"; 110 | $fa-var-bus: "\f207"; 111 | $fa-var-buysellads: "\f20d"; 112 | $fa-var-cab: "\f1ba"; 113 | $fa-var-calculator: "\f1ec"; 114 | $fa-var-calendar: "\f073"; 115 | $fa-var-calendar-check-o: "\f274"; 116 | $fa-var-calendar-minus-o: "\f272"; 117 | $fa-var-calendar-o: "\f133"; 118 | $fa-var-calendar-plus-o: "\f271"; 119 | $fa-var-calendar-times-o: "\f273"; 120 | $fa-var-camera: "\f030"; 121 | $fa-var-camera-retro: "\f083"; 122 | $fa-var-car: "\f1b9"; 123 | $fa-var-caret-down: "\f0d7"; 124 | $fa-var-caret-left: "\f0d9"; 125 | $fa-var-caret-right: "\f0da"; 126 | $fa-var-caret-square-o-down: "\f150"; 127 | $fa-var-caret-square-o-left: "\f191"; 128 | $fa-var-caret-square-o-right: "\f152"; 129 | $fa-var-caret-square-o-up: "\f151"; 130 | $fa-var-caret-up: "\f0d8"; 131 | $fa-var-cart-arrow-down: "\f218"; 132 | $fa-var-cart-plus: "\f217"; 133 | $fa-var-cc: "\f20a"; 134 | $fa-var-cc-amex: "\f1f3"; 135 | $fa-var-cc-diners-club: "\f24c"; 136 | $fa-var-cc-discover: "\f1f2"; 137 | $fa-var-cc-jcb: "\f24b"; 138 | $fa-var-cc-mastercard: "\f1f1"; 139 | $fa-var-cc-paypal: "\f1f4"; 140 | $fa-var-cc-stripe: "\f1f5"; 141 | $fa-var-cc-visa: "\f1f0"; 142 | $fa-var-certificate: "\f0a3"; 143 | $fa-var-chain: "\f0c1"; 144 | $fa-var-chain-broken: "\f127"; 145 | $fa-var-check: "\f00c"; 146 | $fa-var-check-circle: "\f058"; 147 | $fa-var-check-circle-o: "\f05d"; 148 | $fa-var-check-square: "\f14a"; 149 | $fa-var-check-square-o: "\f046"; 150 | $fa-var-chevron-circle-down: "\f13a"; 151 | $fa-var-chevron-circle-left: "\f137"; 152 | $fa-var-chevron-circle-right: "\f138"; 153 | $fa-var-chevron-circle-up: "\f139"; 154 | $fa-var-chevron-down: "\f078"; 155 | $fa-var-chevron-left: "\f053"; 156 | $fa-var-chevron-right: "\f054"; 157 | $fa-var-chevron-up: "\f077"; 158 | $fa-var-child: "\f1ae"; 159 | $fa-var-chrome: "\f268"; 160 | $fa-var-circle: "\f111"; 161 | $fa-var-circle-o: "\f10c"; 162 | $fa-var-circle-o-notch: "\f1ce"; 163 | $fa-var-circle-thin: "\f1db"; 164 | $fa-var-clipboard: "\f0ea"; 165 | $fa-var-clock-o: "\f017"; 166 | $fa-var-clone: "\f24d"; 167 | $fa-var-close: "\f00d"; 168 | $fa-var-cloud: "\f0c2"; 169 | $fa-var-cloud-download: "\f0ed"; 170 | $fa-var-cloud-upload: "\f0ee"; 171 | $fa-var-cny: "\f157"; 172 | $fa-var-code: "\f121"; 173 | $fa-var-code-fork: "\f126"; 174 | $fa-var-codepen: "\f1cb"; 175 | $fa-var-codiepie: "\f284"; 176 | $fa-var-coffee: "\f0f4"; 177 | $fa-var-cog: "\f013"; 178 | $fa-var-cogs: "\f085"; 179 | $fa-var-columns: "\f0db"; 180 | $fa-var-comment: "\f075"; 181 | $fa-var-comment-o: "\f0e5"; 182 | $fa-var-commenting: "\f27a"; 183 | $fa-var-commenting-o: "\f27b"; 184 | $fa-var-comments: "\f086"; 185 | $fa-var-comments-o: "\f0e6"; 186 | $fa-var-compass: "\f14e"; 187 | $fa-var-compress: "\f066"; 188 | $fa-var-connectdevelop: "\f20e"; 189 | $fa-var-contao: "\f26d"; 190 | $fa-var-copy: "\f0c5"; 191 | $fa-var-copyright: "\f1f9"; 192 | $fa-var-creative-commons: "\f25e"; 193 | $fa-var-credit-card: "\f09d"; 194 | $fa-var-credit-card-alt: "\f283"; 195 | $fa-var-crop: "\f125"; 196 | $fa-var-crosshairs: "\f05b"; 197 | $fa-var-css3: "\f13c"; 198 | $fa-var-cube: "\f1b2"; 199 | $fa-var-cubes: "\f1b3"; 200 | $fa-var-cut: "\f0c4"; 201 | $fa-var-cutlery: "\f0f5"; 202 | $fa-var-dashboard: "\f0e4"; 203 | $fa-var-dashcube: "\f210"; 204 | $fa-var-database: "\f1c0"; 205 | $fa-var-deaf: "\f2a4"; 206 | $fa-var-deafness: "\f2a4"; 207 | $fa-var-dedent: "\f03b"; 208 | $fa-var-delicious: "\f1a5"; 209 | $fa-var-desktop: "\f108"; 210 | $fa-var-deviantart: "\f1bd"; 211 | $fa-var-diamond: "\f219"; 212 | $fa-var-digg: "\f1a6"; 213 | $fa-var-dollar: "\f155"; 214 | $fa-var-dot-circle-o: "\f192"; 215 | $fa-var-download: "\f019"; 216 | $fa-var-dribbble: "\f17d"; 217 | $fa-var-dropbox: "\f16b"; 218 | $fa-var-drupal: "\f1a9"; 219 | $fa-var-edge: "\f282"; 220 | $fa-var-edit: "\f044"; 221 | $fa-var-eject: "\f052"; 222 | $fa-var-ellipsis-h: "\f141"; 223 | $fa-var-ellipsis-v: "\f142"; 224 | $fa-var-empire: "\f1d1"; 225 | $fa-var-envelope: "\f0e0"; 226 | $fa-var-envelope-o: "\f003"; 227 | $fa-var-envelope-square: "\f199"; 228 | $fa-var-envira: "\f299"; 229 | $fa-var-eraser: "\f12d"; 230 | $fa-var-eur: "\f153"; 231 | $fa-var-euro: "\f153"; 232 | $fa-var-exchange: "\f0ec"; 233 | $fa-var-exclamation: "\f12a"; 234 | $fa-var-exclamation-circle: "\f06a"; 235 | $fa-var-exclamation-triangle: "\f071"; 236 | $fa-var-expand: "\f065"; 237 | $fa-var-expeditedssl: "\f23e"; 238 | $fa-var-external-link: "\f08e"; 239 | $fa-var-external-link-square: "\f14c"; 240 | $fa-var-eye: "\f06e"; 241 | $fa-var-eye-slash: "\f070"; 242 | $fa-var-eyedropper: "\f1fb"; 243 | $fa-var-fa: "\f2b4"; 244 | $fa-var-facebook: "\f09a"; 245 | $fa-var-facebook-f: "\f09a"; 246 | $fa-var-facebook-official: "\f230"; 247 | $fa-var-facebook-square: "\f082"; 248 | $fa-var-fast-backward: "\f049"; 249 | $fa-var-fast-forward: "\f050"; 250 | $fa-var-fax: "\f1ac"; 251 | $fa-var-feed: "\f09e"; 252 | $fa-var-female: "\f182"; 253 | $fa-var-fighter-jet: "\f0fb"; 254 | $fa-var-file: "\f15b"; 255 | $fa-var-file-archive-o: "\f1c6"; 256 | $fa-var-file-audio-o: "\f1c7"; 257 | $fa-var-file-code-o: "\f1c9"; 258 | $fa-var-file-excel-o: "\f1c3"; 259 | $fa-var-file-image-o: "\f1c5"; 260 | $fa-var-file-movie-o: "\f1c8"; 261 | $fa-var-file-o: "\f016"; 262 | $fa-var-file-pdf-o: "\f1c1"; 263 | $fa-var-file-photo-o: "\f1c5"; 264 | $fa-var-file-picture-o: "\f1c5"; 265 | $fa-var-file-powerpoint-o: "\f1c4"; 266 | $fa-var-file-sound-o: "\f1c7"; 267 | $fa-var-file-text: "\f15c"; 268 | $fa-var-file-text-o: "\f0f6"; 269 | $fa-var-file-video-o: "\f1c8"; 270 | $fa-var-file-word-o: "\f1c2"; 271 | $fa-var-file-zip-o: "\f1c6"; 272 | $fa-var-files-o: "\f0c5"; 273 | $fa-var-film: "\f008"; 274 | $fa-var-filter: "\f0b0"; 275 | $fa-var-fire: "\f06d"; 276 | $fa-var-fire-extinguisher: "\f134"; 277 | $fa-var-firefox: "\f269"; 278 | $fa-var-first-order: "\f2b0"; 279 | $fa-var-flag: "\f024"; 280 | $fa-var-flag-checkered: "\f11e"; 281 | $fa-var-flag-o: "\f11d"; 282 | $fa-var-flash: "\f0e7"; 283 | $fa-var-flask: "\f0c3"; 284 | $fa-var-flickr: "\f16e"; 285 | $fa-var-floppy-o: "\f0c7"; 286 | $fa-var-folder: "\f07b"; 287 | $fa-var-folder-o: "\f114"; 288 | $fa-var-folder-open: "\f07c"; 289 | $fa-var-folder-open-o: "\f115"; 290 | $fa-var-font: "\f031"; 291 | $fa-var-font-awesome: "\f2b4"; 292 | $fa-var-fonticons: "\f280"; 293 | $fa-var-fort-awesome: "\f286"; 294 | $fa-var-forumbee: "\f211"; 295 | $fa-var-forward: "\f04e"; 296 | $fa-var-foursquare: "\f180"; 297 | $fa-var-frown-o: "\f119"; 298 | $fa-var-futbol-o: "\f1e3"; 299 | $fa-var-gamepad: "\f11b"; 300 | $fa-var-gavel: "\f0e3"; 301 | $fa-var-gbp: "\f154"; 302 | $fa-var-ge: "\f1d1"; 303 | $fa-var-gear: "\f013"; 304 | $fa-var-gears: "\f085"; 305 | $fa-var-genderless: "\f22d"; 306 | $fa-var-get-pocket: "\f265"; 307 | $fa-var-gg: "\f260"; 308 | $fa-var-gg-circle: "\f261"; 309 | $fa-var-gift: "\f06b"; 310 | $fa-var-git: "\f1d3"; 311 | $fa-var-git-square: "\f1d2"; 312 | $fa-var-github: "\f09b"; 313 | $fa-var-github-alt: "\f113"; 314 | $fa-var-github-square: "\f092"; 315 | $fa-var-gitlab: "\f296"; 316 | $fa-var-gittip: "\f184"; 317 | $fa-var-glass: "\f000"; 318 | $fa-var-glide: "\f2a5"; 319 | $fa-var-glide-g: "\f2a6"; 320 | $fa-var-globe: "\f0ac"; 321 | $fa-var-google: "\f1a0"; 322 | $fa-var-google-plus: "\f0d5"; 323 | $fa-var-google-plus-circle: "\f2b3"; 324 | $fa-var-google-plus-official: "\f2b3"; 325 | $fa-var-google-plus-square: "\f0d4"; 326 | $fa-var-google-wallet: "\f1ee"; 327 | $fa-var-graduation-cap: "\f19d"; 328 | $fa-var-gratipay: "\f184"; 329 | $fa-var-group: "\f0c0"; 330 | $fa-var-h-square: "\f0fd"; 331 | $fa-var-hacker-news: "\f1d4"; 332 | $fa-var-hand-grab-o: "\f255"; 333 | $fa-var-hand-lizard-o: "\f258"; 334 | $fa-var-hand-o-down: "\f0a7"; 335 | $fa-var-hand-o-left: "\f0a5"; 336 | $fa-var-hand-o-right: "\f0a4"; 337 | $fa-var-hand-o-up: "\f0a6"; 338 | $fa-var-hand-paper-o: "\f256"; 339 | $fa-var-hand-peace-o: "\f25b"; 340 | $fa-var-hand-pointer-o: "\f25a"; 341 | $fa-var-hand-rock-o: "\f255"; 342 | $fa-var-hand-scissors-o: "\f257"; 343 | $fa-var-hand-spock-o: "\f259"; 344 | $fa-var-hand-stop-o: "\f256"; 345 | $fa-var-hard-of-hearing: "\f2a4"; 346 | $fa-var-hashtag: "\f292"; 347 | $fa-var-hdd-o: "\f0a0"; 348 | $fa-var-header: "\f1dc"; 349 | $fa-var-headphones: "\f025"; 350 | $fa-var-heart: "\f004"; 351 | $fa-var-heart-o: "\f08a"; 352 | $fa-var-heartbeat: "\f21e"; 353 | $fa-var-history: "\f1da"; 354 | $fa-var-home: "\f015"; 355 | $fa-var-hospital-o: "\f0f8"; 356 | $fa-var-hotel: "\f236"; 357 | $fa-var-hourglass: "\f254"; 358 | $fa-var-hourglass-1: "\f251"; 359 | $fa-var-hourglass-2: "\f252"; 360 | $fa-var-hourglass-3: "\f253"; 361 | $fa-var-hourglass-end: "\f253"; 362 | $fa-var-hourglass-half: "\f252"; 363 | $fa-var-hourglass-o: "\f250"; 364 | $fa-var-hourglass-start: "\f251"; 365 | $fa-var-houzz: "\f27c"; 366 | $fa-var-html5: "\f13b"; 367 | $fa-var-i-cursor: "\f246"; 368 | $fa-var-ils: "\f20b"; 369 | $fa-var-image: "\f03e"; 370 | $fa-var-inbox: "\f01c"; 371 | $fa-var-indent: "\f03c"; 372 | $fa-var-industry: "\f275"; 373 | $fa-var-info: "\f129"; 374 | $fa-var-info-circle: "\f05a"; 375 | $fa-var-inr: "\f156"; 376 | $fa-var-instagram: "\f16d"; 377 | $fa-var-institution: "\f19c"; 378 | $fa-var-internet-explorer: "\f26b"; 379 | $fa-var-intersex: "\f224"; 380 | $fa-var-ioxhost: "\f208"; 381 | $fa-var-italic: "\f033"; 382 | $fa-var-joomla: "\f1aa"; 383 | $fa-var-jpy: "\f157"; 384 | $fa-var-jsfiddle: "\f1cc"; 385 | $fa-var-key: "\f084"; 386 | $fa-var-keyboard-o: "\f11c"; 387 | $fa-var-krw: "\f159"; 388 | $fa-var-language: "\f1ab"; 389 | $fa-var-laptop: "\f109"; 390 | $fa-var-lastfm: "\f202"; 391 | $fa-var-lastfm-square: "\f203"; 392 | $fa-var-leaf: "\f06c"; 393 | $fa-var-leanpub: "\f212"; 394 | $fa-var-legal: "\f0e3"; 395 | $fa-var-lemon-o: "\f094"; 396 | $fa-var-level-down: "\f149"; 397 | $fa-var-level-up: "\f148"; 398 | $fa-var-life-bouy: "\f1cd"; 399 | $fa-var-life-buoy: "\f1cd"; 400 | $fa-var-life-ring: "\f1cd"; 401 | $fa-var-life-saver: "\f1cd"; 402 | $fa-var-lightbulb-o: "\f0eb"; 403 | $fa-var-line-chart: "\f201"; 404 | $fa-var-link: "\f0c1"; 405 | $fa-var-linkedin: "\f0e1"; 406 | $fa-var-linkedin-square: "\f08c"; 407 | $fa-var-linux: "\f17c"; 408 | $fa-var-list: "\f03a"; 409 | $fa-var-list-alt: "\f022"; 410 | $fa-var-list-ol: "\f0cb"; 411 | $fa-var-list-ul: "\f0ca"; 412 | $fa-var-location-arrow: "\f124"; 413 | $fa-var-lock: "\f023"; 414 | $fa-var-long-arrow-down: "\f175"; 415 | $fa-var-long-arrow-left: "\f177"; 416 | $fa-var-long-arrow-right: "\f178"; 417 | $fa-var-long-arrow-up: "\f176"; 418 | $fa-var-low-vision: "\f2a8"; 419 | $fa-var-magic: "\f0d0"; 420 | $fa-var-magnet: "\f076"; 421 | $fa-var-mail-forward: "\f064"; 422 | $fa-var-mail-reply: "\f112"; 423 | $fa-var-mail-reply-all: "\f122"; 424 | $fa-var-male: "\f183"; 425 | $fa-var-map: "\f279"; 426 | $fa-var-map-marker: "\f041"; 427 | $fa-var-map-o: "\f278"; 428 | $fa-var-map-pin: "\f276"; 429 | $fa-var-map-signs: "\f277"; 430 | $fa-var-mars: "\f222"; 431 | $fa-var-mars-double: "\f227"; 432 | $fa-var-mars-stroke: "\f229"; 433 | $fa-var-mars-stroke-h: "\f22b"; 434 | $fa-var-mars-stroke-v: "\f22a"; 435 | $fa-var-maxcdn: "\f136"; 436 | $fa-var-meanpath: "\f20c"; 437 | $fa-var-medium: "\f23a"; 438 | $fa-var-medkit: "\f0fa"; 439 | $fa-var-meh-o: "\f11a"; 440 | $fa-var-mercury: "\f223"; 441 | $fa-var-microphone: "\f130"; 442 | $fa-var-microphone-slash: "\f131"; 443 | $fa-var-minus: "\f068"; 444 | $fa-var-minus-circle: "\f056"; 445 | $fa-var-minus-square: "\f146"; 446 | $fa-var-minus-square-o: "\f147"; 447 | $fa-var-mixcloud: "\f289"; 448 | $fa-var-mobile: "\f10b"; 449 | $fa-var-mobile-phone: "\f10b"; 450 | $fa-var-modx: "\f285"; 451 | $fa-var-money: "\f0d6"; 452 | $fa-var-moon-o: "\f186"; 453 | $fa-var-mortar-board: "\f19d"; 454 | $fa-var-motorcycle: "\f21c"; 455 | $fa-var-mouse-pointer: "\f245"; 456 | $fa-var-music: "\f001"; 457 | $fa-var-navicon: "\f0c9"; 458 | $fa-var-neuter: "\f22c"; 459 | $fa-var-newspaper-o: "\f1ea"; 460 | $fa-var-object-group: "\f247"; 461 | $fa-var-object-ungroup: "\f248"; 462 | $fa-var-odnoklassniki: "\f263"; 463 | $fa-var-odnoklassniki-square: "\f264"; 464 | $fa-var-opencart: "\f23d"; 465 | $fa-var-openid: "\f19b"; 466 | $fa-var-opera: "\f26a"; 467 | $fa-var-optin-monster: "\f23c"; 468 | $fa-var-outdent: "\f03b"; 469 | $fa-var-pagelines: "\f18c"; 470 | $fa-var-paint-brush: "\f1fc"; 471 | $fa-var-paper-plane: "\f1d8"; 472 | $fa-var-paper-plane-o: "\f1d9"; 473 | $fa-var-paperclip: "\f0c6"; 474 | $fa-var-paragraph: "\f1dd"; 475 | $fa-var-paste: "\f0ea"; 476 | $fa-var-pause: "\f04c"; 477 | $fa-var-pause-circle: "\f28b"; 478 | $fa-var-pause-circle-o: "\f28c"; 479 | $fa-var-paw: "\f1b0"; 480 | $fa-var-paypal: "\f1ed"; 481 | $fa-var-pencil: "\f040"; 482 | $fa-var-pencil-square: "\f14b"; 483 | $fa-var-pencil-square-o: "\f044"; 484 | $fa-var-percent: "\f295"; 485 | $fa-var-phone: "\f095"; 486 | $fa-var-phone-square: "\f098"; 487 | $fa-var-photo: "\f03e"; 488 | $fa-var-picture-o: "\f03e"; 489 | $fa-var-pie-chart: "\f200"; 490 | $fa-var-pied-piper: "\f2ae"; 491 | $fa-var-pied-piper-alt: "\f1a8"; 492 | $fa-var-pied-piper-pp: "\f1a7"; 493 | $fa-var-pinterest: "\f0d2"; 494 | $fa-var-pinterest-p: "\f231"; 495 | $fa-var-pinterest-square: "\f0d3"; 496 | $fa-var-plane: "\f072"; 497 | $fa-var-play: "\f04b"; 498 | $fa-var-play-circle: "\f144"; 499 | $fa-var-play-circle-o: "\f01d"; 500 | $fa-var-plug: "\f1e6"; 501 | $fa-var-plus: "\f067"; 502 | $fa-var-plus-circle: "\f055"; 503 | $fa-var-plus-square: "\f0fe"; 504 | $fa-var-plus-square-o: "\f196"; 505 | $fa-var-power-off: "\f011"; 506 | $fa-var-print: "\f02f"; 507 | $fa-var-product-hunt: "\f288"; 508 | $fa-var-puzzle-piece: "\f12e"; 509 | $fa-var-qq: "\f1d6"; 510 | $fa-var-qrcode: "\f029"; 511 | $fa-var-question: "\f128"; 512 | $fa-var-question-circle: "\f059"; 513 | $fa-var-question-circle-o: "\f29c"; 514 | $fa-var-quote-left: "\f10d"; 515 | $fa-var-quote-right: "\f10e"; 516 | $fa-var-ra: "\f1d0"; 517 | $fa-var-random: "\f074"; 518 | $fa-var-rebel: "\f1d0"; 519 | $fa-var-recycle: "\f1b8"; 520 | $fa-var-reddit: "\f1a1"; 521 | $fa-var-reddit-alien: "\f281"; 522 | $fa-var-reddit-square: "\f1a2"; 523 | $fa-var-refresh: "\f021"; 524 | $fa-var-registered: "\f25d"; 525 | $fa-var-remove: "\f00d"; 526 | $fa-var-renren: "\f18b"; 527 | $fa-var-reorder: "\f0c9"; 528 | $fa-var-repeat: "\f01e"; 529 | $fa-var-reply: "\f112"; 530 | $fa-var-reply-all: "\f122"; 531 | $fa-var-resistance: "\f1d0"; 532 | $fa-var-retweet: "\f079"; 533 | $fa-var-rmb: "\f157"; 534 | $fa-var-road: "\f018"; 535 | $fa-var-rocket: "\f135"; 536 | $fa-var-rotate-left: "\f0e2"; 537 | $fa-var-rotate-right: "\f01e"; 538 | $fa-var-rouble: "\f158"; 539 | $fa-var-rss: "\f09e"; 540 | $fa-var-rss-square: "\f143"; 541 | $fa-var-rub: "\f158"; 542 | $fa-var-ruble: "\f158"; 543 | $fa-var-rupee: "\f156"; 544 | $fa-var-safari: "\f267"; 545 | $fa-var-save: "\f0c7"; 546 | $fa-var-scissors: "\f0c4"; 547 | $fa-var-scribd: "\f28a"; 548 | $fa-var-search: "\f002"; 549 | $fa-var-search-minus: "\f010"; 550 | $fa-var-search-plus: "\f00e"; 551 | $fa-var-sellsy: "\f213"; 552 | $fa-var-send: "\f1d8"; 553 | $fa-var-send-o: "\f1d9"; 554 | $fa-var-server: "\f233"; 555 | $fa-var-share: "\f064"; 556 | $fa-var-share-alt: "\f1e0"; 557 | $fa-var-share-alt-square: "\f1e1"; 558 | $fa-var-share-square: "\f14d"; 559 | $fa-var-share-square-o: "\f045"; 560 | $fa-var-shekel: "\f20b"; 561 | $fa-var-sheqel: "\f20b"; 562 | $fa-var-shield: "\f132"; 563 | $fa-var-ship: "\f21a"; 564 | $fa-var-shirtsinbulk: "\f214"; 565 | $fa-var-shopping-bag: "\f290"; 566 | $fa-var-shopping-basket: "\f291"; 567 | $fa-var-shopping-cart: "\f07a"; 568 | $fa-var-sign-in: "\f090"; 569 | $fa-var-sign-language: "\f2a7"; 570 | $fa-var-sign-out: "\f08b"; 571 | $fa-var-signal: "\f012"; 572 | $fa-var-signing: "\f2a7"; 573 | $fa-var-simplybuilt: "\f215"; 574 | $fa-var-sitemap: "\f0e8"; 575 | $fa-var-skyatlas: "\f216"; 576 | $fa-var-skype: "\f17e"; 577 | $fa-var-slack: "\f198"; 578 | $fa-var-sliders: "\f1de"; 579 | $fa-var-slideshare: "\f1e7"; 580 | $fa-var-smile-o: "\f118"; 581 | $fa-var-snapchat: "\f2ab"; 582 | $fa-var-snapchat-ghost: "\f2ac"; 583 | $fa-var-snapchat-square: "\f2ad"; 584 | $fa-var-soccer-ball-o: "\f1e3"; 585 | $fa-var-sort: "\f0dc"; 586 | $fa-var-sort-alpha-asc: "\f15d"; 587 | $fa-var-sort-alpha-desc: "\f15e"; 588 | $fa-var-sort-amount-asc: "\f160"; 589 | $fa-var-sort-amount-desc: "\f161"; 590 | $fa-var-sort-asc: "\f0de"; 591 | $fa-var-sort-desc: "\f0dd"; 592 | $fa-var-sort-down: "\f0dd"; 593 | $fa-var-sort-numeric-asc: "\f162"; 594 | $fa-var-sort-numeric-desc: "\f163"; 595 | $fa-var-sort-up: "\f0de"; 596 | $fa-var-soundcloud: "\f1be"; 597 | $fa-var-space-shuttle: "\f197"; 598 | $fa-var-spinner: "\f110"; 599 | $fa-var-spoon: "\f1b1"; 600 | $fa-var-spotify: "\f1bc"; 601 | $fa-var-square: "\f0c8"; 602 | $fa-var-square-o: "\f096"; 603 | $fa-var-stack-exchange: "\f18d"; 604 | $fa-var-stack-overflow: "\f16c"; 605 | $fa-var-star: "\f005"; 606 | $fa-var-star-half: "\f089"; 607 | $fa-var-star-half-empty: "\f123"; 608 | $fa-var-star-half-full: "\f123"; 609 | $fa-var-star-half-o: "\f123"; 610 | $fa-var-star-o: "\f006"; 611 | $fa-var-steam: "\f1b6"; 612 | $fa-var-steam-square: "\f1b7"; 613 | $fa-var-step-backward: "\f048"; 614 | $fa-var-step-forward: "\f051"; 615 | $fa-var-stethoscope: "\f0f1"; 616 | $fa-var-sticky-note: "\f249"; 617 | $fa-var-sticky-note-o: "\f24a"; 618 | $fa-var-stop: "\f04d"; 619 | $fa-var-stop-circle: "\f28d"; 620 | $fa-var-stop-circle-o: "\f28e"; 621 | $fa-var-street-view: "\f21d"; 622 | $fa-var-strikethrough: "\f0cc"; 623 | $fa-var-stumbleupon: "\f1a4"; 624 | $fa-var-stumbleupon-circle: "\f1a3"; 625 | $fa-var-subscript: "\f12c"; 626 | $fa-var-subway: "\f239"; 627 | $fa-var-suitcase: "\f0f2"; 628 | $fa-var-sun-o: "\f185"; 629 | $fa-var-superscript: "\f12b"; 630 | $fa-var-support: "\f1cd"; 631 | $fa-var-table: "\f0ce"; 632 | $fa-var-tablet: "\f10a"; 633 | $fa-var-tachometer: "\f0e4"; 634 | $fa-var-tag: "\f02b"; 635 | $fa-var-tags: "\f02c"; 636 | $fa-var-tasks: "\f0ae"; 637 | $fa-var-taxi: "\f1ba"; 638 | $fa-var-television: "\f26c"; 639 | $fa-var-tencent-weibo: "\f1d5"; 640 | $fa-var-terminal: "\f120"; 641 | $fa-var-text-height: "\f034"; 642 | $fa-var-text-width: "\f035"; 643 | $fa-var-th: "\f00a"; 644 | $fa-var-th-large: "\f009"; 645 | $fa-var-th-list: "\f00b"; 646 | $fa-var-themeisle: "\f2b2"; 647 | $fa-var-thumb-tack: "\f08d"; 648 | $fa-var-thumbs-down: "\f165"; 649 | $fa-var-thumbs-o-down: "\f088"; 650 | $fa-var-thumbs-o-up: "\f087"; 651 | $fa-var-thumbs-up: "\f164"; 652 | $fa-var-ticket: "\f145"; 653 | $fa-var-times: "\f00d"; 654 | $fa-var-times-circle: "\f057"; 655 | $fa-var-times-circle-o: "\f05c"; 656 | $fa-var-tint: "\f043"; 657 | $fa-var-toggle-down: "\f150"; 658 | $fa-var-toggle-left: "\f191"; 659 | $fa-var-toggle-off: "\f204"; 660 | $fa-var-toggle-on: "\f205"; 661 | $fa-var-toggle-right: "\f152"; 662 | $fa-var-toggle-up: "\f151"; 663 | $fa-var-trademark: "\f25c"; 664 | $fa-var-train: "\f238"; 665 | $fa-var-transgender: "\f224"; 666 | $fa-var-transgender-alt: "\f225"; 667 | $fa-var-trash: "\f1f8"; 668 | $fa-var-trash-o: "\f014"; 669 | $fa-var-tree: "\f1bb"; 670 | $fa-var-trello: "\f181"; 671 | $fa-var-tripadvisor: "\f262"; 672 | $fa-var-trophy: "\f091"; 673 | $fa-var-truck: "\f0d1"; 674 | $fa-var-try: "\f195"; 675 | $fa-var-tty: "\f1e4"; 676 | $fa-var-tumblr: "\f173"; 677 | $fa-var-tumblr-square: "\f174"; 678 | $fa-var-turkish-lira: "\f195"; 679 | $fa-var-tv: "\f26c"; 680 | $fa-var-twitch: "\f1e8"; 681 | $fa-var-twitter: "\f099"; 682 | $fa-var-twitter-square: "\f081"; 683 | $fa-var-umbrella: "\f0e9"; 684 | $fa-var-underline: "\f0cd"; 685 | $fa-var-undo: "\f0e2"; 686 | $fa-var-universal-access: "\f29a"; 687 | $fa-var-university: "\f19c"; 688 | $fa-var-unlink: "\f127"; 689 | $fa-var-unlock: "\f09c"; 690 | $fa-var-unlock-alt: "\f13e"; 691 | $fa-var-unsorted: "\f0dc"; 692 | $fa-var-upload: "\f093"; 693 | $fa-var-usb: "\f287"; 694 | $fa-var-usd: "\f155"; 695 | $fa-var-user: "\f007"; 696 | $fa-var-user-md: "\f0f0"; 697 | $fa-var-user-plus: "\f234"; 698 | $fa-var-user-secret: "\f21b"; 699 | $fa-var-user-times: "\f235"; 700 | $fa-var-users: "\f0c0"; 701 | $fa-var-venus: "\f221"; 702 | $fa-var-venus-double: "\f226"; 703 | $fa-var-venus-mars: "\f228"; 704 | $fa-var-viacoin: "\f237"; 705 | $fa-var-viadeo: "\f2a9"; 706 | $fa-var-viadeo-square: "\f2aa"; 707 | $fa-var-video-camera: "\f03d"; 708 | $fa-var-vimeo: "\f27d"; 709 | $fa-var-vimeo-square: "\f194"; 710 | $fa-var-vine: "\f1ca"; 711 | $fa-var-vk: "\f189"; 712 | $fa-var-volume-control-phone: "\f2a0"; 713 | $fa-var-volume-down: "\f027"; 714 | $fa-var-volume-off: "\f026"; 715 | $fa-var-volume-up: "\f028"; 716 | $fa-var-warning: "\f071"; 717 | $fa-var-wechat: "\f1d7"; 718 | $fa-var-weibo: "\f18a"; 719 | $fa-var-weixin: "\f1d7"; 720 | $fa-var-whatsapp: "\f232"; 721 | $fa-var-wheelchair: "\f193"; 722 | $fa-var-wheelchair-alt: "\f29b"; 723 | $fa-var-wifi: "\f1eb"; 724 | $fa-var-wikipedia-w: "\f266"; 725 | $fa-var-windows: "\f17a"; 726 | $fa-var-won: "\f159"; 727 | $fa-var-wordpress: "\f19a"; 728 | $fa-var-wpbeginner: "\f297"; 729 | $fa-var-wpforms: "\f298"; 730 | $fa-var-wrench: "\f0ad"; 731 | $fa-var-xing: "\f168"; 732 | $fa-var-xing-square: "\f169"; 733 | $fa-var-y-combinator: "\f23b"; 734 | $fa-var-y-combinator-square: "\f1d4"; 735 | $fa-var-yahoo: "\f19e"; 736 | $fa-var-yc: "\f23b"; 737 | $fa-var-yc-square: "\f1d4"; 738 | $fa-var-yelp: "\f1e9"; 739 | $fa-var-yen: "\f157"; 740 | $fa-var-yoast: "\f2b1"; 741 | $fa-var-youtube: "\f167"; 742 | $fa-var-youtube-play: "\f16a"; 743 | $fa-var-youtube-square: "\f166"; 744 | 745 | --------------------------------------------------------------------------------