2018-05-18 20:11:24 +01:00
|
|
|
#top-bar {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.top-bar {
|
2018-12-04 17:26:57 +00:00
|
|
|
background-color: $theme-500;
|
2018-05-18 20:11:24 +01:00
|
|
|
color: $color-white;
|
2018-05-22 15:56:54 +01:00
|
|
|
padding: 0 2rem;
|
2018-05-18 20:11:24 +01:00
|
|
|
font-size: 1rem;
|
|
|
|
height: 50px;
|
|
|
|
|
|
|
|
> .items {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
height: 50px;
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
list-style: none;
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 30px 0 0;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 1.2rem;
|
|
|
|
letter-spacing: 0.1rem;
|
|
|
|
font-weight: 700;
|
|
|
|
white-space: nowrap;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
> .logo {
|
|
|
|
height: 35px;
|
|
|
|
width: 35px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .link, .link:visited {
|
|
|
|
@include ease-in();
|
|
|
|
color: $color-white;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: darken($color-white, 15%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .selected {
|
2018-12-04 17:26:57 +00:00
|
|
|
background-color: $theme-500 !important;
|
|
|
|
color: $theme-500 !important;
|
2018-05-18 20:11:24 +01:00
|
|
|
padding: 5px 10px !important;
|
|
|
|
|
|
|
|
&:hover {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: darken($theme-500, 15%) !important;
|
2018-05-18 20:11:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .buttons {
|
|
|
|
height: 50px;
|
|
|
|
float: right;
|
|
|
|
|
|
|
|
> .button-icon-gap {
|
|
|
|
margin-left: 20px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .hamburger {
|
|
|
|
@include ease-in();
|
|
|
|
@include border-radius(3px);
|
2018-12-04 17:26:57 +00:00
|
|
|
background-color: $theme-500;
|
|
|
|
border: 1px solid $theme-100;
|
2018-05-18 20:11:24 +01:00
|
|
|
|
|
|
|
> i {
|
|
|
|
font-size: 1.8rem;
|
|
|
|
line-height: 2.1rem;
|
2018-05-22 15:56:54 +01:00
|
|
|
padding: 0px 3px 0px 3px;
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $theme-100;
|
2018-05-18 20:11:24 +01:00
|
|
|
cursor: pointer;
|
2018-05-22 15:56:54 +01:00
|
|
|
vertical-align: sub;
|
2018-05-18 20:11:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
2018-12-04 17:26:57 +00:00
|
|
|
background-color: $theme-100;
|
2018-05-18 20:11:24 +01:00
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $theme-500;
|
2018-05-18 20:11:24 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|