| Current Path : /home/zieirix/www/templates/it_medical/scss/medical/ |
| Current File : /home/zieirix/www/templates/it_medical/scss/medical/_header.scss |
#g-header {
background-color: $header-background-color;
@if $header-background-image {
background-image: url($header-background-image);
background-repeat: unquote($header-background-repeat);
background-size: unquote($header-background-size);
background-attachment: unquote($header-background-attachment);
}
color: $header-text-color;
position: relative;
z-index: 1005;
h1, h2, h3, h4, h5, h6, strong {
color: $header-heading-color;
}
> .g-container {
position: relative;
&:after {
content: '';
height: 2px;
width: ($breakpoints-large-desktop-container - 2*($content-margin + $content-padding));
@include breakpoint(desktop-range) {
width: ($breakpoints-desktop-container - 2*($content-margin + $content-padding));
}
@include breakpoint(tablet-range) {
width: ($breakpoints-tablet-container - 2*($content-margin + $content-padding));
}
@include breakpoint(large-mobile-range) {
width: ($breakpoints-large-mobile-container - 2*($content-margin + $content-padding));
}
@include breakpoint(small-mobile-range) {
width: 100%;
margin: 0 !important;
}
margin-left: $content-margin + $content-padding;
position: absolute;
border-bottom: 2px solid darken($header-background-color, 4%);
}
> .g-grid {
> .g-block {
align-self: center;
&:last-child {
text-align: right;
}
&:first-child {
text-align: left;
}
}
}
}
.g-content {
padding-top: 0;
padding-bottom: 0;
margin-top: 0;
margin-bottom: 0;
}
}
// Modal Adjustments
.uk-modal-page {
#g-header {
z-index: 1002;
}
}
// RTL Adjustments
[dir="rtl"] {
#g-header {
> .g-container {
&:after {
margin-right: $content-margin + $content-padding;
margin-left: 0;
}
> .g-grid {
> .g-block {
&:last-child {
text-align: left;
}
&:first-child {
text-align: right;
}
}
}
}
}
}
@media print {
#g-header {
background: #fff !important;
color: #000 !important;
}
}