You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
|
|
#header-container {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header {
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2.nav-item {
|
|
|
|
font-size: 150%;
|
|
|
|
color: mc('orange', '500');
|
|
|
|
}
|
|
|
|
|
|
|
|
#notifload {
|
|
|
|
width: 42px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .5s ease;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: " ";
|
|
|
|
@include spinner(mc('orange', '500'),0.5s,24px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#search-input {
|
|
|
|
max-width: 300px;
|
|
|
|
width: 33vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchresults {
|
|
|
|
position: fixed;
|
|
|
|
top: 45px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
margin: 0 auto;
|
|
|
|
width: 500px;
|
|
|
|
z-index: 1;
|
|
|
|
|
|
|
|
&.slideInDown {
|
|
|
|
@include prefix(animation-duration, .6s);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|