2018-03-26 23:32:43 +02:00
|
|
|
.header {
|
2018-06-25 08:07:45 +02:00
|
|
|
position: fixed;
|
|
|
|
height: var(--header-height);
|
|
|
|
width: 100%;
|
2017-04-27 05:54:53 +02:00
|
|
|
display: flex;
|
2018-03-26 23:32:43 +02:00
|
|
|
z-index: 1;
|
|
|
|
justify-content: space-between;
|
2018-06-25 08:07:45 +02:00
|
|
|
align-items: center;
|
2018-07-25 02:50:04 +02:00
|
|
|
padding: 0 $spacing-width * 1/3;
|
2018-10-17 00:29:55 +02:00
|
|
|
background-color: $lbry-white;
|
|
|
|
// box-shadow: var(--box-shadow-header);
|
2018-07-25 02:50:04 +02:00
|
|
|
|
|
|
|
@media (min-width: $medium-breakpoint) {
|
|
|
|
padding: 0 $spacing-width;
|
|
|
|
}
|
2018-06-25 08:07:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.header__navigation {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header__history {
|
|
|
|
display: flex;
|
|
|
|
padding: 0 $spacing-width * 1/2;
|
|
|
|
|
|
|
|
@media only screen and (min-width: $medium-breakpoint) {
|
|
|
|
.btn {
|
|
|
|
padding: 0 $spacing-width * 1/6;
|
|
|
|
}
|
|
|
|
}
|
2017-04-27 05:54:53 +02:00
|
|
|
}
|
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
.header__actions-right {
|
|
|
|
margin-left: auto;
|
|
|
|
display: flex;
|
2017-04-27 15:17:18 +02:00
|
|
|
|
2018-03-26 23:32:43 +02:00
|
|
|
.btn {
|
2018-06-25 08:07:45 +02:00
|
|
|
margin-left: $spacing-width * 1/3;
|
2017-04-27 05:54:53 +02:00
|
|
|
}
|
|
|
|
}
|