Add new global nav header

Fixes #1151
This commit is contained in:
Joseph Schorr 2016-01-20 18:03:21 -05:00
parent 3fdadb51b7
commit 8318546447
8 changed files with 233 additions and 18 deletions

View file

@ -1,3 +1,52 @@
/* Global Brand Bar */
.co-m-global-nav {
background: white;
height: 30px;
line-height: 36px;
position: relative;
z-index: 90;
}
.co-m-global-nav svg {
width: auto !important;
}
.co-m-global-nav .co-m-global-nav-left {
text-align: left;
padding-left: 28px;
}
.co-m-global-nav .co-m-global-nav-right {
text-align: right;
font-size: 16px;
line-height: 30px;
padding-right: 25px;
}
.co-m-global-nav .co-m-global-nav-item {
padding: 0 20px 0 15px;
border-right: 1px solid #eee;
display: inline-block;
height: 16px;
line-height: 16px;
}
.co-m-global-nav .co-m-global-nav-item:first-of-type {
padding-left: 0;
}
.co-m-global-nav .co-m-global-nav-item:last-of-type {
padding-right: 0;
border-right: 0;
}
/* Tweaks for small screens */
@media screen and (max-width: 767px) {
.co-m-global-nav {
display: none; /* hide the whole thing */
}
}
a:active {
outline: none !important;
}