asia_Kstyle5/assets/stylesheets/template/layout/header.scss

164 lines
3.0 KiB
SCSS

@charset "utf-8";
@import "../initial";
.default_site_h1{
display: contents;
@media (max-width: 480px){
display: grid;
padding: 0 0 0 0.5em !important;
.site-logo{
margin-left: -0.8em;
width: 100% !important;
margin-top: 0;
}
}
}
.layout-header {
position: relative;
margin-bottom: 0;
border: none;
border-radius: 0;
z-index: 1;
.container {
@extend .response-container;
}
.header-banner {
overflow: hidden;
@media(min-width:769px){
width: 80%;
float: right;
padding-right: 1em;
}
}
.header-nav {
padding: 1em;
color: $theme-color-main;
font-family: $main-font;
& > * {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
font-size: 0.8em;
color: $theme-color-main;
}
a {
color: $theme-color-main;
text-decoration: none;
}
@media (min-width: $screen-sm) {
text-align: right;
}
@media (max-width: $screen-sm){
clear: both;
background-color: #ffffff6e;
}
}
.navbar-header {
border-top: 8px solid #288E8E;
padding: 0 0 1em;
width: 100%;
background-color: #e7e8ea;
margin: 0;
@media (max-width: $screen-sm){
padding:0;
}
.navbar-brand {
height: unset;
margin: 0.5em 0;
padding-top: 0;
padding-bottom: 0;
line-height: 2.125em;
color: $theme-color-main;
font-size: 1.4em;
font-family: $main-font;
@media (min-width: $screen-sm) {
height: unset;
margin: 0.5rem 0 0;
padding-left: 0;
line-height: 3.75em;
font-size: 1.5em;
}
@media (max-width: 767px) {
height: 5em;
}
@media (max-width: 480px) {
margin: 0 0 0.5em 0;
padding: 0 0.5rem;
}
.site-logo {
width: auto;
height: 100%;
margin-right: 0.5em;
float: left;
}
}
}
}
.navbar-toggle {
margin-top: 1em;
padding: 0.875em 0.625em;
border-radius: 0.125em;
border-width: 0.125em;
border-color: lighten($theme-color-main, 30%);
.icon-bar {
background-color: lighten($theme-color-main, 30%);
}
&.collapsed {
.icon-bar-top {
top: 0;
-webkit-transform: rotate(0);
transform: rotate(0);
}
.icon-bar-middle {
opacity: 1;
}
.icon-bar-bottom {
top: 0;
-webkit-transform: rotate(0);
transform: rotate(0);
}
}
// icon bar animation
.icon-bar {
transition: .2s all;
position: relative;
}
.icon-bar-top {
top: 0.375em;
-webkit-transform: rotate(45deg);
transform: rotate(45deg);
}
.icon-bar-middle {
opacity: 0;
}
.icon-bar-bottom {
top: -0.375em;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
}
@media(max-width:$screen-sm){
.header-banner{
.w-ba-banner__image{
width: auto!important;
height: 250px!important;
max-width: fit-content!important;
}
}
}