colouring-montreal/app/src/frontend/header.css

28 lines
491 B
CSS
Raw Normal View History

/**
* Main header
*/
2019-04-28 10:57:21 -04:00
.main-header {
z-index: 3000;
position: absolute;
top: 0;
left: 0;
width: 100%;
background: #fff;
text-decoration: none;
}
@media (min-width: 480px){
.main-header {
width: 480px; /* to match .info-container menu width */
}
}
.main-header .navbar {
2019-09-05 08:33:20 -04:00
padding: 0.5em 0.5em 0.5em;
}
.main-header .navbar-brand {
margin: 0 1em 0 0;
}
.main-header .navbar-collapse {
height: calc(100vh - 80px);
overflow-y: auto;
2019-09-04 12:04:07 -04:00
}