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

61 lines
1.2 KiB
SCSS
Raw Permalink Normal View History

2023-07-17 02:53:03 +00:00
.layout-header {
position: relative;
margin-bottom: 0;
border: none;
border-radius: 0;
background-color: $theme-gray;
z-index: 1;
.container {
@extend .response-content;
}
.header-nav {
text-align: center;
padding-top: 0.5rem;
color: #FFF;
& > * {
display: inline-block;
margin-top: 0;
margin-bottom: 0;
font-size: 0.8em;
color: #fff;
@media (max-width: 767px){
font-size: 0.7em;
}
}
a {
color: #fff;
text-decoration: none;
}
@media (min-width: $screen-sm) {
text-align: right;
}
}
.navbar-header {
.navbar-toggle {
border-color: lighten($theme-gray, 30%);
.icon-bar {
background-color: lighten($theme-gray, 30%);
}
}
.navbar-brand {
height: 34px;
margin: 8px 0;
padding-top: 0;
padding-bottom: 0;
line-height: 34px;
color: #FFF;
font-size: 1.5em;
@media (min-width: $screen-sm) {
height: 60px;
margin: 0.5rem 0 0;
padding-left: 0;
line-height: 60px;
font-size: 2em;
}
.site-logo {
margin-right: 0.5em;
float: left;
}
}
}
}