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

28 lines
498 B
CSS
Raw Normal View History

/**
* Main header
*/
2019-04-28 10:57:21 -04:00
.main-header {
text-decoration: none;
2019-09-04 12:04:07 -04:00
border-bottom: 2px solid #222;
}
.main-header .navbar {
2019-04-28 10:57:21 -04:00
padding: 0.75em 0.5em 0.75em;
}
.main-header .navbar-brand {
margin: 0 1em 0 0;
}
2019-09-04 12:04:07 -04:00
.main-header .shorten-username {
text-overflow: '…)';
white-space: nowrap;
overflow: hidden;
display: inline-block;
vertical-align: bottom;
max-width: 70vw;
}
@media (min-width: 768px) {
.main-header .shorten-username {
max-width: 5vw;
}
}