8889841cPK[#P  utils/_vars.scssnu[// Modular Scale settings $ms-base: 1em, 0.875em; $ms-ratio: 1.618; // Site Fonts $font_main: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif; $font_heading: $font_main; $font_code: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; $font_pre: "Courier 10 Pitch", Courier, monospace; $container_width: 1200px; // 1200px; 75em // Background $background_body: #ffffff; // Colors $color_text: #686868; $color_heading: #2b2b2b; $color_primary: #235787; $color_secondary: #c3512f; $color_link: #1e4b75; $color_link_hover: #111111; $color_border: #eaecee; $color_meta: #6d6d6d; // Box Shadow $boxshadow_dropdown: 0 3px 30px rgba(25,30,35,.1); // Helper $submenu_width: 14em; // Skin // - Dark mode $light_color: white(0.99); $light_color_link: white(0.79); $light_color_link_hover: white(0.99); $light_color_border: rgba(255,255,255,0.08); $light_bg: rgba(255,255,255,0.9); // - Light mode $dark_color: black(0.6); $dark_color_link: black(0.55); $dark_color_link_hover: black(0.8); $dark_color_border: rgba(0,0,0,0.08); $dark_bg: rgba(0,0,0,0.9); // Screen resolutions $screen_lg: 80em; // max 1280px $screen_md: 64em; // max 1024px $screen_sm: 48em; // max 768px $screen_xs: 35.5em; // up to 568px /* $gl-devices-list: ( desktop: "screen and (min-width: 64em)", // up 1024px tablet: "screen and (max-width: 64em) and ( min-width: 35.5em )", // 568px - 1024px mobile: "screen and (max-width: 35.5em)" // from to 568px to smaller ) !default; */ $gl-devices-list: ( desktop: "screen and (min-width: 1025px)", // up 1024px tablet: "screen and (max-width: 1024px)", // 568px - 1024px mobile: "screen and (max-width: 568px)" // from to 568px to smaller ) !default; PK[!}Jutils/_mixins.scssnu[// clearfix helper @mixin clearfix { &:before, &:after { content: ""; display: table; } &:after { clear: both; } } @mixin rtl() { html[dir="rtl"] & { @content; } } // Skin mode @function black($opacity) { @return rgba(black, $opacity) } @function white($opacity) { @return rgba(white, $opacity) } //$screen_lg: 80em; // max 1280px //$screen_md: 64em; // max 1024px //$screen_sm: 48em; // max 768px //$screen_xs: 35.5em; // up to 568px // Mobile first responsive @mixin mq($media) { @if $media == min-xs { @media screen and (min-width: $screen_xs) { @content; } } @else if $media == max-xs { @media screen and (max-width: $screen_xs) { @content; } } @if $media == min-sm { @media screen and (min-width: $screen_sm) { @content; } } @else if $media == max-sm { @media screen and (max-width: $screen_sm) { @content; } } @else if $media == min-md { @media screen and (min-width: $screen_md) { @content; } } @else if $media == max-md { @media screen and (max-width: $screen_md) { @content; } } @else if $media == min-lg { @media screen and (min-width: $screen_lg) { @content; } } @else if $media == max-lg { @media screen and (max-width: $screen_lg) { @content; } } } /************************ Device Query *************************/ @mixin for_device( $device_name ){ @if map-has-key( $gl-devices-list, $device_name) { @media #{map-get( $gl-devices-list, $device_name)} { @content; } }@else { @if map-has-key( $gl-mq-list, $device_name) { @media #{map-get($gl-mq-list, $device_name)} { @content; } } } } PK[++layouts/_blogs.scssnu[$blog_gutter: $gl-gutter; .bypostauthor { display: inline-block; } .entry-title { word-wrap: break-word; } .entry-meta { > span { display: inline-block; padding: 5px 0; } .sep { margin-left: 8px; margin-right: 8px; } .author { img { vertical-align: middle; overflow: hidden; border-radius: 50%; margin-right: 5px; } } } .posts-layout { .entry { margin-bottom: 2em; } .entry--item { margin-bottom: 15px; &:last-child { margin-bottom: 0px; } } .entry-inner { display: flex; flex-wrap: wrap; align-items: stretch; width: 100%; border-bottom: 1px solid $color_border; padding-bottom: 2em; @include for_device( mobile ){ display: block; } } .entry-media { position: relative; max-width: 100%; flex-basis: 40%; padding-top: 0; overflow: hidden; @include for_device( mobile ){ margin-bottom: 1em; width: 100% !important; padding-top: 56.25%; // 16:9 } } .entry-thumbnail { position: absolute; top: 0px; bottom: 0px; width: 100%; height: 100%; display: flex; line-height: 0; background-color: #d5d5d5; img { object-fit: cover; width: 100%; height: auto; } a { position: absolute; top: 0px; top: 0px; display: block; } } .entry-title { font-size: 1.5em; font-weight: 500; word-wrap: break-word; display: flex; align-items: center; a { text-align: inherit; display: block; flex-basis: 100%; } } .entry-excerpt { p{ &:last-child { margin-bottom: 0px; } } } .entry-media-link { position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: block; z-index: 30; } .entry-content-data { flex: 1; word-wrap: break-word; max-width: 100%; } .entry-readmore { margin-top: 1em; } .entry-cat { top: 0; display: block; a { color: inherit; &:hover { color: inherit; } } } .readmore-button { display: inline-block; line-height: 1; border: 1px solid $color_primary; color: $color_primary; border-radius: 2px; cursor: pointer; padding: 7px 17px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; transition: transform .18s, border .18s, background .18s, box-shadow .18s, opacity .18s, color .18s; font-weight: 500; &:hover { background: $color_primary; color: #FFFFFF; border-color: $color_primary; } } .entry-content-data { display: flex; flex-flow: column nowrap; } .entry-article-part { position: relative; width: 100%; margin-bottom: 15px; &:first-child { margin-top: 0; } &.entry-article-media { flex: none; position: absolute; top: 0px; width: 100%; height: 100%; overflow: hidden; } &.entry-article-footer{ display: flex; margin-top: auto; margin-bottom: 0px; justify-content: space-between; &.only-more { .entry-readmore { width: 100%; } } } } .entry-article-footer { align-items: center; > *, .entry-meta { margin-bottom: 0px; margin-top: 0px; display: inline-block; } } .entry-thumbnail { transition: all .3s linear; img { transition: all .3s linear; } &:before { transition: all .3s linear; content: ""; display: block; position: absolute; top: 0px; left: 0px; bottom: 0px; right: 0px; z-index: 2; } } .entry-article-media { z-index: 5; } // Media content align .mc-bottom { .media-content-inner { position: absolute; left: 0px; bottom: 0px; width: 100%; display: block; } } .mc-top { .media-content-inner { position: absolute; left: 0px; top: 0px; width: 100%; display: block; } } .mc-center { .media-content-inner { position: absolute; left: 0px; top: 0px; bottom: 0px; right: 0px; display: flex; flex-direction: column; justify-content: center; } } &.layout-- { &blog_column, &blog_boxed { .entry-inner { display: block; .entry-content-data, .entry-article-header { display: flex; flex-direction: column; } } } &blog_classic { .entry-media { margin-right: $blog_gutter; @include for_device( mobile ) { margin-right: 0px; } } } &blog_column, &blog_boxed { .entry-media { padding-top: 40%; } .entry { display: block; } .sticky { .entry-content-data { background-color: #fcf8e3; border: 1px solid #faf2cc; border-top: 0px none; color: #8a6d3b; padding: 1em; } } .entry-media { margin-bottom: 1em; display: block; position: relative; } } &blog_boxed { .entry-content-data { padding: ( $blog_gutter /2 ); } } } } // Pagination .pagination { margin: 30px auto; display: block; .nav-links { > * { border: 1px solid $color_border; color: $color_meta; padding: 4px 12px 4px; border-radius: 1px; text-transform: uppercase; font-weight: 500; letter-spacing: 0.8px; display: inline-block; &:hover { border-color: $color_primary; background: $color_primary; color: #FFFFFF; } } span { border-color: $color_primary; background: $color_primary; color: #FFFFFF; } } } // Single post .single { .entry-meta { margin-bottom: ms(1); } .entry-footer { margin-bottom: ms(2); } } .entry-content { .page-links { display: block; margin: 5px 0px 20px; font-weight: 500; a { border: 1px solid $color_border; padding: 5px 12px 5px; text-transform: uppercase; color: $color_text; margin: 0px 2px; } } .table-wrapper { max-width: 100%; overflow: auto; } } .single-post { .entry-content { a { &:hover { text-decoration: underline; } } } } .entry-single { .entry--item:not( .entry-title ), .entry-thumbnail { margin-bottom: 1.41575em; &:last-child { margin-bottom: 0px; } } .entry--item.entry-related { margin-bottom: 0.41575em; } .tags-links, .cats-links { &:before { font: normal normal normal 16px/1 FontAwesome; text-decoration: inherit; text-transform: none; position: relative; margin-right: 5px; color: $color_meta; } } .cats-links:before { content: "\f115"; } .tags-links:before { content: "\f02c"; } .edit-link { display: block; width: 100%; margin-top: ms(-3); a { text-transform: uppercase; font-weight: 500; font-size: 80%; letter-spacing: 0.5px; } } } // Biography box .author-bio { display: flex; .avatar { flex-basis: 90px; @include for_device( mobile ){ flex-basis: 90px; } } .author-bio-details { flex-basis: calc( 100% - 90px ); margin-left: 1.5em; @include for_device( mobile ){ flex-basis: calc( 100% - 50px ); } } .author-bio-desc p:last-child { margin-bottom: 0.72em; } } .post-navigation .nav-links { @include clearfix(); padding: 16px 0px 15px; border-top: 1px solid $color_border; border-bottom: 1px solid $color_border; .nav-previous, .nav-next { width: 49%; a { span.meta-nav { display: block; margin-bottom: 5px; } } } .nav-previous { float: left; text-align: left; } .nav-next { float: right; text-align: right; } } // Related Posts .related-post-title { margin-bottom: 0.41575em; @include for_device( mobile ){ margin-bottom: 0; } } .related-post { margin-bottom: 1em; .entry-title { font-size: 1.1em; line-height: 1.3; } } .related-thumbnail { a { display: block; line-height: 0px; position: relative; } } .img-pos-left , .img-pos-right { .related-post { display: flex; @include for_device( mobile ){ display: block; } } .related-thumbnail { flex-basis: 160px; position: relative; @include for_device( mobile ){ margin-bottom: 1em; } img { width: 100%; object-fit: cover; display: block; } } .related-body { flex-basis: calc( 100% - 160px ); p { margin-bottom: 0px; } } } .img-pos-left { .related-body { padding-left: 1em; @include for_device( mobile ){ padding-left: 0em; } } } .img-pos-right { .related-body { order: 1; padding-right: 1em; @include for_device( mobile ){ padding-right: 0em; } } .related-thumbnail { order: 2; } } .img-pos-top { .related-thumbnail { margin-bottom: 0.5em; img { width: 100%; } } } PK[nlayouts/_layouts.scssnu[/*-------------------------------------------------------------- >>> TABLE OF CONTENTS: ---------------------------------------------------------------- # Layouts Helper # Layout: content-sidebar # Layout: sidebar-content # Layout: sidebar-sidebar-content # Layout: content-sidebar-sidebar # Layout: sidebar-content-sidebar */ /************************ HIDING COLS FOR DEVICES *************************/ @each $mq-key, $mq-value in $gl-devices-list { @media #{$mq-value} { //_#{$mq-key} .hide-on-#{$mq-key}, .skyhaus-grid .hide-on-#{$mq-key} { display: none; } .align-left-#{$mq-key} { text-align: left; } .align-center-#{$mq-key} { text-align: center; } .align-right-#{$mq-key} { text-align: right; } } } #page { position: relative; } .no-box-shadow { box-shadow: none !important; } // Site boxed layout. .site-boxed, .site-framed { .site { max-width: 1248px; box-shadow: 0 3px 6px -4px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); margin: 0 auto; } } // Site framed layout. .site-framed { .site { margin-top: 30px; margin-bottom: 30px; } } #sidebar-secondary, #sidebar-primary, #main { padding-top: ms(4); padding-bottom: ms(4); } .sidebar-content-sidebar { #main { @include for_device( tablet ) { border-left: 0px none; } } #sidebar-secondary { @include for_device( tablet ) { order: 5; display: none; } } } /*-- Layout: content-sidebar --*/ .content-sidebar { @include mq(min-sm) { .content-inner { padding-right: ms(0); } &.sidebar_vertical_border { .content-area { border-right: 1px solid $color_border; } .content-inner { padding-right: ms(0); } .sidebar-primary-inner { padding-left: ms(0); } } } } /*-- Layout: sidebar-content --*/ .sidebar-content { @include mq(min-sm) { .content-inner { padding-left: ms(0); } &.sidebar_vertical_border { .content-area { border-left: 1px solid $color_border; } .content-inner { padding-left: ms(0); } .sidebar-primary-inner { padding-right: ms(0); } } } } /*-- Layout: sidebar-sidebar-content --*/ .sidebar-sidebar-content { @include mq(min-sm) { .content-inner { padding-left: ms(0); } &.sidebar_vertical_border { .content-area { } .sidebar-primary { border-right: 1px solid $color_border; } .sidebar-secondary { border-right: 1px solid $color_border; } .content-inner { padding-left: ms(0); } .sidebar-primary-inner { padding-right: ms(0); } .sidebar-secondary-inner { padding-left: ms(0); padding-right: ms(0); } } } } /*-- Layout: content-sidebar-sidebar --*/ .content-sidebar-sidebar { // Layout with vertical border, only for large screen @include mq(min-sm) { .content-inner { padding-right: ms(0); } &.sidebar_vertical_border { .content-area { } .sidebar-primary { border-left: 1px solid $color_border; } .sidebar-secondary { border-left: 1px solid $color_border; } .content-inner { padding-right: ms(0); } .sidebar-primary-inner { padding-left: ms(0); padding-right: ms(0); } .sidebar-secondary-inner { padding-left: ms(0); } } } } /*-- Layout: sidebar-content-sidebar --*/ .sidebar-content-sidebar { // Layout with vertical border, only for large screen @include mq(min-sm) { .content-inner { padding-left: ms(0); padding-right: ms(0); } &.sidebar_vertical_border { .content-area { border-left: 1px solid $color_border; border-right: 1px solid $color_border; } .content-inner { padding-left: ms(0); padding-right: ms(0); } .sidebar-primary-inner { padding-left: ms(0); } .sidebar-secondary-inner { padding-right: ms(0); } } } @include mq(max-md) { &.sidebar_vertical_border { .content-inner { padding-left: 0; } } } } .skip-grid--column { .builder-item { display: inline-block; } } PK[HnAAlayouts/_pages.scssnu[/* Page Mics */ .archive, .search { .page-title { margin-bottom: 35px; padding-bottom: 20px; border-bottom: 1px solid $color_border; } } /* Search Page */ .search { .content-area { .entry-summary p:last-child { margin-bottom: 0px; } } } /* 404 Page */PK[w-header/_header_main.scssnu[.header-main { padding: 0px; .dark-mode { background: #1a1a1a; } .light-mode { box-shadow: 0 1px 2px 0 #e1e5ea; background: #FFFFFF; } }PK[|dheader/_header.scssnu[@import "header_top"; @import "header_main"; @import "header_bottom"; @import "header_builder_common"; // Import header builder items. @import "builder_items/button"; @import "builder_items/html_1"; @import "builder_items/logo_site_identity"; @import "builder_items/navigation"; @import "builder_items/search"; @import "builder_items/social_icons"; @import "builder_items/nav_icon"; @import "header_mobile_sidebar"; .cb-row--mobile { padding: 0 0.5em 0; [class~="skyhaus-col"], [class*="skyhaus-col-"], [class*="skyhaus-col_"] { padding: 0 0.5em 0; } } .header-v2 { .cb-row--mobile { padding-left: 1em; padding-right: 1em; } } PK[ʰ22header/_header_top.scssnu[.header-top { padding: 0; text-size-adjust: 100%; line-height: 13px; .skyhaus-grid .item--html{ font-size: 15px; } .item--html { line-height: 1.3; } .light-mode { background: #f0f0f0; } .dark-mode { background: $color_primary; } }PK[D**"header/_header_builder_common.scssnu[/* Header Builder Common */ .builder-item { .item--inner { display: inline-block; vertical-align: middle; } &.builder-item--group { .item--inner { margin-right: ($gl-gutter/2); @include for_device(tablet) { margin-right: 1em; } @include for_device(mobile) { margin-right: 0.4em; } &:last-child { margin-right: 0px; } } } } //.skyhaus-grid { // &.cb-row--desktop { // margin: 0 -0.5em; // > [class*="skyhaus-col-"] { // padding-left: 0.5em; // padding-right: 0.5em; // } // } //} .header--row { .skyhaus-grid { @include for_device(desktop) { margin: 0 -0.5em; [class~="skyhaus-col-"], [class*="skyhaus-col-"], [class*="skyhaus-col_"] { padding-left: 0.5em; padding-right: 0.5em; } } } .skyhaus-grid { } @include for_device(desktop) { &.layout-contained { background: transparent !important; border: 0 none; box-shadow: none !important; } } } // Titlebar .page-titlebar { padding: 21px 0px 22px; border-bottom: 1px solid $color_border; word-break: break-word; background: #f9f9f9; @include for_device(tablet) { padding: 19px 0px 20px; } @include for_device(mobile) { padding: 18px 0px 20px; } .page-titlebar-inner { width: 100%; } .titlebar-title { margin-bottom: 0px; } .titlebar-tagline { margin-top: 5px; font-size: ms(-1); } } // Breadcrumbs .page-breadcrumb { padding: 9px 0px 9px; border-bottom: 1px solid $color_border; color: $color_meta; line-height: 1.6; background: #fff; .page-breadcrumb-inner { width: 100%; } } .page-breadcrumb-list { list-style: none; margin: 0px 1em; padding: 0px; li { display: inline-block; position: relative; padding-right: 10px; &:after { border-top: 1px solid currentColor; border-left: 1px solid currentColor; content: ""; width: 5px; height: 5px; display: inline-block; transform: rotate(135deg); left: auto; position: relative; top: -1px; } &:last-child { &:after { display: none; } } a { font-weight: 500; margin-right: 10px; } } .rank-math-breadcrumb { p { margin: 0; } } } .page-titlebar, .page-cover { .customize-partial-edit-shortcut button { left: 0px; } .page-breadcrumb-inner { padding-left: 0; padding-right: 0; } .page-breadcrumb { border-bottom: none; padding-bottom: 0px; background: transparent; } } // Header Cover .page-cover { position: relative; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: center; &:before { position: absolute; content: ""; background-color: rgba(0, 0, 0, 0.3); top: 0px; left: 0px; width: 100%; height: 100%; display: block; z-index: 1; } .page-cover-inner { width: 100%; display: flex; flex-direction: column; justify-content: center; z-index: 5; padding: 1em 30px; @include for_device(desktop) { min-height: 300px; } @include for_device(tablet) { min-height: 250px; padding: 1em 15px; } @include for_device(mobile) { min-height: 200px; } } .page-breadcrumb-list { color: rgba(255, 255, 255, 0.8); a, li:after { color: inherit; } a:hover { color: rgba(255, 255, 255, 0.8); } } } .page-cover-title { margin-bottom: 0.5em; } .page-cover-tagline { margin-bottom: 1.2em; } .page-cover-title, .page-cover-tagline { display: inline-block; position: relative; color: rgba(255, 255, 255, 0.99); z-index: 5; p { &:last-child { margin-bottom: 0px; } } } /* Customizer Shortcut */ #masthead, #header-menu-sidebar { .customize-partial-edit-shortcut { display: none; } } #masthead { > .customize-partial-edit-shortcut { &.customize-partial-edit-shortcut-header_builder_panel { display: none; } button { left: 0px; } } } /* Layout Builder V2 */ .row-v2 { display: flex !important; flex-flow: row nowrap; justify-content: space-between; align-items: center; width: 100%; height: 100%; .item--inner { display: inline-flex; align-items: center; margin-left: 0.5em; margin-right: 0.5em; } .col-v2 { display: flex; &.col-v2-center { justify-content: center; margin-left: 1em; margin-right: 1em; } &.col-v2-left { justify-content: flex-start; margin-right: auto; flex: 1 1 0; } &.col-v2-right { margin-left: auto; justify-content: flex-end; flex: 1 1 0; } } &.no-left.no-right { .col-v2 { &.col-v2-center { flex-basis: 100%; } } } &.no-center { .col-v2 { &.col-v2-left { flex: auto; } &.col-v2-right { flex: auto; } } } } #masthead { > .customize-partial-edit-shortcut { &.customize-partial-edit-shortcut-header_builder_panel { display: none; } button { left: 0px; } } } PK[%GV!header/builder_items/_search.scssnu[/* Search */ .builder-item--search_box { max-width: 100%; } .item--search_icon { line-height: 0px; cursor: pointer; } .search-icon { line-height: 0px; display: inline-block; position: relative; box-shadow: none; &:hover { box-shadow: none; color: currentColor; } svg { width: 18px; height: 18px; } .ic-close { display: none; } } .header-search_icon-item { position: relative; &.active { .search-icon { .ic-search { display: none; } .ic-close { display: inline-block; } } } .header-search-modal-wrapper { position: absolute; top: 100%; left: -0.9em; height: 0px; overflow: hidden; display: block; margin-top: -1px; transition: all 0.2s linear; transform: translateY(40px); } &.search-left { .header-search-modal-wrapper { left: auto; right: -0.9em; } .header-search-modal { &::before { left: auto; right: 15px; } } } &.active { .header-search-modal-wrapper { height: auto; overflow: initial; z-index: 26; transform: translateY(0); // transform: translateY( 0 ); } } } // Apply for all search form at header .header-search-form { display: flex; margin-bottom: 0px; width: 100%; max-width: 100%; label { flex-basis: 100%; } .search-form-fields{ border: 1px solid; border-color: rgba(127, 127, 127, 0.2); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; border-radius: 2px; } .search-field { display: block; width: 100%; border-radius: 2px; height: 2.4em; &:focus{ background-color: transparent; } } button.search-submit { overflow: hidden; box-shadow: none; margin-left: -40px; background: transparent; color: $color_meta; line-height: 0px; padding: 0px 0.7em; min-height: auto; &:hover { box-shadow: none; background-color: transparent; color: $color_text; } svg { width: 18px; height: 18px; } } input[type="submit"] { min-height: auto; } } .header-search_box-item { .header-search-form { .search-field { border: 0; box-shadow:none; background-color: transparent; } } } .header-search-modal { border: 1px solid $color_border; padding: 1.25em; background: #fff; width: 280px; @include for_device(mobile) { width: 220px; } position: relative; margin-top: 15px; box-shadow: $boxshadow_dropdown; label { flex-basis: 100%; } &::before { border-top: 1px solid $color_border; border-left: 1px solid $color_border; background: #fff; content: ""; display: block; position: absolute; top: -8px; left: 15px; width: 15px; height: 15px; transform: rotate(45deg); z-index: 27; } } .woo_bootster_search { .header-search_box-item { .header-search-form { margin-bottom: 0px; width: 100%; max-width: 100%; display: flex; border: 1px solid; border-color: rgba(127, 127, 127, 0.2); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12) inset; border-radius: 2px; height: 2.4em; line-height: 2.4em; overflow: hidden; .search-form-fields { background-color: transparent; min-height: auto; -ms-flex-preferred-size: 100%; flex-basis: 100%; display: flex; border-style: none; border: none; box-shadow:none; } .search-field { border-color: transparent; height: auto; background-color: transparent; border: 0; border-style: none; box-shadow: none; flex: 0 0 auto; &:focus { background: transparent; } } .search_product_cats { height: auto; border: 0; background-color: transparent; flex: 1 1 auto; width: auto; padding-right: 2em; position: relative; border-right: 1px solid rgba(127, 127, 127, 0.2); color: #6d6d6d; border-top: 0 !important; border-left: 0 !important; border-bottom: 0 !important; } } } } PK[l%o o 'header/builder_items/_social_icons.scssnu[/* Social Icons */ .skyhaus-builder-social-icons { display: inline-block; margin: 0px; padding: 0px; list-style: none; position: relative; li { list-style: none; display: inline-block; margin: 0px 3px; &:last-child { margin-right: 0px; } &:first-child { margin-left: 0px; } } &.color-default { a { color: #fff; &:hover { color: #fff; } } } a { color: currentColor; text-align: center; vertical-align: middle; width: 100%; //height: 100%; padding: 0.4em; display: inline-block; line-height: 1; font-size: 13px; i { width: 1em; height: 1em; position: relative; display: block; &:before { position: absolute; left: 50%; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); } } &:hover { opacity: .9; color: inherit; } } } $socials-list: ( 'apple': #999999, 'behance': #1769ff, 'bitbucket': #205081, 'codepen': #000000, 'delicious': #3399ff, 'digg': #005be2, 'dribbble': #ea4c89, 'envelope': #ea4335, 'facebook': #3b5998, 'flickr': #0063dc, 'foursquare': #2d5be3, 'github': #333333, 'google-plus': #dd4b39, 'houzz': #7ac142, 'instagram': #262626, 'jsfiddle': #487AA2, 'linkedin': #0077b5, 'medium': #00ab6b, 'odnoklassniki': #F4731C, 'meetup': #ec1c40, 'pinterest': #bd081c, 'product-hunt': #da552f, 'reddit': #ff4500, 'rss': #f26522, 'shopping-cart': #4CAF50, 'skype': #00AFF0, 'slideshare': #0077b5, 'snapchat': #fffc00, 'soundcloud': #ff8800, 'spotify': #2ebd59, 'stack-overflow': #fe7a15, 'telegram': #2CA5E0, 'tripadvisor': #589442, 'tumblr': #35465c, 'twitch': #6441A5, 'twitter': #1DA1F2, 'vimeo': #1ab7ea, 'vk': #45668e, 'weibo': #df2029, 'weixin': #7bb32e, 'whatsapp': #25d366, 'wordpress': #21759b, 'xing': #026466, 'yelp': #af0606, 'youtube': #cd201f, ); .skyhaus-builder-social-icons { @each $social-key, $color in $socials-list { [class*="social-icon-#{$social-key}"] { background-color: $color; &.shape-none { background-color: transparent; color: $color; } } } } PK[zVV-header/builder_items/_logo_site_identity.scssnu[/* Logo & Site Identity */ .logo .logo-image { display: flex; line-height: .9; vertical-align: middle; a { display: inline-block; text-transform: uppercase; letter-spacing: 0.4px; font-weight: 600; } img { display: block; width: auto; line-height: 1; } .site-title { font-size: 1.5em; margin: 0; font-weight: 600; line-height: 1.216; } .site-description { margin: 5px 0px 7px 0px; } &.logo-left { .logo-link { display: flex; flex-direction: column; justify-content: center; } .site-name-desc { margin-left: 7px; display: flex; flex-direction: column; justify-content: center; } } &.logo-right { flex-direction: row-reverse; .logo-link { display: flex; flex-direction: column; justify-content: center; } .site-name-desc { margin-right: 7px; display: flex; flex-direction: column; justify-content: center; } } &.logo-top{ flex-direction: column; .site-name-desc { //margin-bottom: 7px; } } &.logo-bottom{ flex-direction: column-reverse; .site-name-desc { margin-top: 7px; } } } .item-button { display: inline-block; } .site-header { .cb-row--mobile { .logo .logo-image img { max-width: 100%; } } } PK[^++%header/builder_items/_navigation.scssnu[/* Navigation */ .nav-menu-mobile , .nav-menu-desktop { .menu-item .link-before { position: relative; display: inline-flex; align-items: center; } .nav-icon-angle { display: inline-block; font-size: inherit; text-rendering: auto; text-decoration: none !important; position: relative; width: 6px; height: 6px; margin-top: 1px; border-left: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(-135deg) translateY(50%); } } .nav-menu-desktop { .nav-icon-angle { display: inline; font-size: inherit; text-rendering: auto; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; } &.hide-arrow-active { .nav-icon-angle { display: none; } } .menu { list-style: none; padding: 0px; margin: 0px; li { display: inline-block; position: relative; &:last-child { margin-right: 0px; } a { display: inline-block; transition: all 0.14s ease-out; text-decoration-color: currentColor; } &.current-menu-item { > a { color: rgba(0,0,0,0.9); } } } > li > a { padding: 12px 13px 12px; display: inline-flex; align-items: center; text-transform: uppercase; font-weight: 600; font-size: 0.85em; line-height: 1; i { line-height: 0; } } > li.menu-item-has-children { > a { .nav-icon-angle { margin-left: 4px; line-height: 0; } } } .sub-menu { li.menu-item-has-children { > a { position: relative; @include clearfix(); .nav-icon-angle { margin-left: 5px; float: right; } } } } } .sub-lv-0, .sub-menu { position: absolute; left: 0px; transition: all .3s ease; z-index: 99; opacity: 0; height: 0; overflow: hidden; visibility: hidden; display: block; transform: translateY(40px); top: 100%; margin: 0px; padding: 0px; } .sub-menu { width: $submenu_width; background: #ffffff; box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 15px 0px rgba(0, 0, 0, 0.1); text-align: left; border-radius: 2px; //&:before { // position: absolute; // content: ""; // top: 0px; // left: 0px; // right: 0px; // bottom: 0px; // border: 1px solid $color_border; //} .link-before { display: flex; justify-content: space-between; } .nav-icon-angle { transform: rotate(135deg) translateY(0); } li { display: block; margin: 0px; padding: 0px; a { display: block; width: 100%; padding: 9px 15px; transition: background 0.15s ease-out; color: $dark_color_link; font-size: 0.9em; line-height: 1.5; //border-bottom: 1px solid rgba(0,0,0,0.015); &:hover { background: rgba(0,0,0,0.015); color: $dark_color_link_hover; } } } li:last-child > a { } .sub-menu { top: 0px; left: 100%; //margin-top: -2px; } } .menu-item:hover, .menu-item:focus, .menu-item.focus { > .sub-menu, > .sub-lv-0 { height: auto; transform: translateY(0); overflow: initial; visibility: visible; opacity: 1; } } // Menu Style Plain &.style-plain { .nav-menu { @include clearfix(); > li { float: left; //> a { // &:hover, &:focus { // color: rgba(0,0,0,0.9); // } //} //&.current-menu-item, &.current-menu-ancestor { // > a { // color: rgba(0,0,0,0.9); // } //} } } } // End style plain // Menu Style Full Height &.style-full-height { .nav-menu { @include clearfix(); > li { float: left; > a { background: transparent; display: inline-flex; vertical-align: middle; align-items: center; &:hover { color: #FFFFFF; background-color: $color_link; } } &.current-menu-item, &.current-menu-ancestor { > a { color: #ffffff; background-color: $color_link; } } } } } // End style full height // Menu style border bottom &.style-border-bottom { .nav-menu { > li { > a { .link-before { position: relative; &:before { position: absolute; bottom: -6px; width: 1px; left: 0px; height: 2px; background-color: transparent; content: ""; transition: all .3s ease; } } } &:hover, &:focus { > a { .link-before { &:before { width: 100%; background-color: currentColor; } } } } &.current-menu-item, &.current-menu-ancestor { > a { .link-before { &:before { width: 100%; background-color: currentColor; } } } } } } } // End style border bottom // Top menu item style border top &.style-border-top { .nav-menu { > li { > a { .link-before { position: relative; &:before { position: absolute; top: -6px; width: 1px; left: 0px; height: 2px; background-color: transparent; content: ""; transition: all .3s ease; } } } &:hover, &:focus { > a { .link-before { &:before { width: 100%; background-color: currentColor; } } } } &.current-menu-item, &.current-menu-ancestor { > a { .link-before { &:before { width: 100%; background-color: currentColor; } } } } } } } // End style border top } // End desktop style /* On Menu Sidebar */ .nav-menu-mobile { .menu { margin: 0px; padding: 0px; list-style: none; li:first-child > a { border-top: none; } .menu-item a > .link-before .nav-icon-angle { display: none; } li { list-style: none; position: relative; border-bottom: 1px solid transparent; &:last-child { border: none; } ul { li { &:last-child { //border-bottom: none; } } } &.menu-item-has-children { > a { padding-right: 45px !important; } } a { display: block; padding: 0.55em 1.5em; //border-top: 1px solid $light_color_border; &:hover, &:focus { background: rgba(0,0,0,0.01); } } .nav-toggle-icon { display: block; position: absolute; top: 0px; right: 0px; text-align: center; vertical-align: middle; line-height: 1; transition: all .5s ease; cursor: pointer; padding: 0.88em 0.9em; border-left: 1px solid $light_color_border; background: transparent; &:hover { box-shadow: none; } .nav-icon-angle { transform: rotate(-135deg) translateY(50%) translateX(50%); } } } .sub-menu { //display: none; //overflow: hidden; opacity: 0; transition: opacity .5s ease; margin: 0px; border-top: 1px solid $light_color_border; li { a { padding-left: 3em; } } } .open-sub { > a { .nav-toggle-icon { i { transform: rotate(45deg); } } } > .sub-menu { display: block; //max-height: 2000px; opacity: 1; } } } // end menu li } // End mobile menu PK[B!header/builder_items/_html_1.scssnu[/* HTML 1 */ .item--html { p { font-weight: 500; text-transform: uppercase; font-size: 13px; &:last-child { margin-bottom: 0px; } } }PK[|<!header/builder_items/_button.scssnu[/* Button */ .skyhaus-builder-btn { padding: ms(-3) ms(0); background: $color_secondary; color: #FFFFFF; border-radius: 2px; display: inline-block; position: relative; text-decoration: none; font-size: 0.85em; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; &:hover { box-shadow: inset 0 0 0 120px rgba(0,0,0,0.18); color: #ffffff; } &.is-icon-before i { margin-right: 4px; } &.is-icon-after i { margin-left: 5px; } }PK[bM"#header/builder_items/_nav_icon.scssnu[/* Nav Icon */ .menu-mobile-toggle { cursor: pointer; text-align: center; //padding: 2px 5px; background: transparent; //color: inherit; box-shadow: none; color: currentColor; transition: transform .3s, border .3s, background .3s, box-shadow .3s, opacity .3s, color .3s; &:hover { box-shadow: none; background: transparent; } } .nav-icon--label { background: none !important; text-transform: uppercase; font-size: 0.85em; } $nav_icon_sizes: ( small: ( width: 19px, height: 2px, top: -6px, bottom: -6px ), medium: ( width: 22px, height: 2px, top: -7px, bottom: -7px ), large: ( width: 31px, height: 3px, top: -9px, bottom: -9px ), ) !default; $hamburger-layer-border-radius : 0px !default; $hamburger-hover-opacity : 0.7 !default; $hamburger-hover-transition-duration : 0.15s !default; $hamburger-layer-color : currentcolor; $hamburger-hover-transition-timing-function: linear !default; // To use CSS filters as the hover effect instead of opacity, // set $hamburger-hover-use-filter as true and // change the value of $hamburger-hover-filter accordingly. $hamburger-hover-use-filter: false !default; $hamburger-hover-filter : opacity(50%) !default; // Hamburger // ================================================== .hamburger { padding: 0; display: inline-block; cursor: pointer; transition-property: opacity, filter; transition-duration: $hamburger-hover-transition-duration; transition-timing-function: $hamburger-hover-transition-timing-function; // Normalize (