2017-01-11 16:14:21 +01:00
|
|
|
$background-color: #f3f3f3;
|
|
|
|
$border-color: #cfcfcf;
|
|
|
|
$color: #777;
|
|
|
|
|
|
|
|
.menu {
|
|
|
|
width: 100%;
|
|
|
|
height: 70px;
|
|
|
|
background: $background-color;
|
|
|
|
border-bottom: 1px solid $border-color;
|
|
|
|
|
|
|
|
.menu-item {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
height: 100%;
|
|
|
|
padding: 20px;
|
|
|
|
color: $color;
|
2017-01-16 22:20:21 +01:00
|
|
|
font-size: 1.875rem;
|
|
|
|
line-height: 1.4;
|
|
|
|
font-weight: 300;
|
2017-01-11 16:14:21 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu-heading {
|
|
|
|
font-weight: bold;
|
2017-01-11 21:18:23 +01:00
|
|
|
font-size: 20px;
|
2017-01-11 16:14:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.menu-list {
|
|
|
|
display: inline-block;
|
|
|
|
border-left: 1px solid $border-color;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
|
2017-01-16 21:40:09 +01:00
|
|
|
&.menu-right {
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
.menu-item {
|
2017-01-16 22:20:21 +01:00
|
|
|
&.menu-item-signout:hover {
|
2017-01-16 21:40:09 +01:00
|
|
|
background-color: red;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-11 16:14:21 +01:00
|
|
|
.menu-item {
|
|
|
|
border-right: 1px dotted $border-color;
|
|
|
|
|
|
|
|
.badge {
|
|
|
|
display: inline-block;
|
|
|
|
min-width: 10px;
|
|
|
|
padding: 3px 7px;
|
|
|
|
font-size: 12px;
|
|
|
|
font-weight: bold;
|
|
|
|
color: white;
|
|
|
|
line-height: 1;
|
|
|
|
vertical-align: baseline;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-align: center;
|
|
|
|
background-color: $color;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|