tuxwebror/app/assets/stylesheets/src/layouts/header.scss
2018-12-21 19:06:39 +01:00

38 lines
572 B
SCSS

@import "../variables";
header {
box-shadow: 0 10px 20px 5px $shadow;
&.header\#home.to-350 {
height: 350px;
line-height: 350px;
nav {
height: 350px;
line-height: 350px;
& > .navbar-brand {
justify-content: center;
margin-left: auto;
margin-right: auto;
font-family: 'Ubuntu Mono', monospace;
text-decoration: none;
font-size: 6em;
}
}
@media (max-width: 768px) {
height: 30px;
line-height: 30px;
nav {
height: 30px;
line-height: 30px;
& > .navbar-brand {
font-size: 2em;
}
}
}
}
}