2016-08-27 21:46:10 -04:00
|
|
|
|
2016-09-10 22:53:21 -04:00
|
|
|
#header-container {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
z-index: 4;
|
|
|
|
}
|
|
|
|
|
2016-08-29 22:19:47 -04:00
|
|
|
#header {
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
|
2016-08-28 11:27:05 -04:00
|
|
|
#notifload {
|
|
|
|
width: 42px;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .5s ease;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: " ";
|
2016-11-21 22:41:57 -05:00
|
|
|
@include spinner(mc('indigo', '100'),0.5s,24px);
|
2016-08-28 11:27:05 -04:00
|
|
|
}
|
|
|
|
|
2017-05-20 23:21:16 -04:00
|
|
|
&.is-active {
|
2016-08-28 11:27:05 -04:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2016-09-05 00:39:59 -04:00
|
|
|
}
|
|
|
|
|
2016-09-05 14:11:51 -04:00
|
|
|
#search-input {
|
|
|
|
max-width: 300px;
|
|
|
|
width: 33vw;
|
2017-05-20 23:21:16 -04:00
|
|
|
}
|