2019-01-03 23:30:27 +01:00
|
|
|
.header {
|
2019-01-24 21:28:11 +01:00
|
|
|
width: 100%;
|
|
|
|
z-index: var(--z-index-header);
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-link .header {
|
2019-01-03 23:30:27 +01:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2019-01-26 17:53:09 +01:00
|
|
|
transition: background-color var(--animation-speed-slow) ease-in-out;
|
2019-01-24 21:28:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-background {
|
|
|
|
background-color: rgba(var(--gray-01), 0.95);
|
2019-01-03 23:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-area {
|
2019-01-24 21:28:11 +01:00
|
|
|
margin: calc(var(--gutter) * 4) calc(var(--gutter) * -1);
|
2018-12-26 08:45:53 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2018-12-26 18:43:38 +01:00
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: stretch;
|
2019-01-03 23:30:27 +01:00
|
|
|
/* display: grid; */
|
|
|
|
/* grid-template-columns: auto 1fr auto auto auto; */
|
|
|
|
/* grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); */
|
2018-12-26 08:45:53 +01:00
|
|
|
}
|
|
|
|
|
2019-01-03 23:30:27 +01:00
|
|
|
.header-item {
|
|
|
|
margin: var(--gutter);
|
2018-12-26 08:45:53 +01:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2019-01-24 21:28:11 +01:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-search-input[type="text"] {
|
|
|
|
padding-right: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header-search-clear {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
2018-12-26 08:45:53 +01:00
|
|
|
}
|
|
|
|
|
2019-01-24 21:28:11 +01:00
|
|
|
.is-alignment-horizontal-left .header-area {
|
2019-01-03 23:30:27 +01:00
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2019-01-24 21:28:11 +01:00
|
|
|
.is-alignment-horizontal-center .header-area {
|
2019-01-03 23:30:27 +01:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2019-01-24 21:28:11 +01:00
|
|
|
.is-alignment-horizontal-right .header-area {
|
2019-01-03 23:30:27 +01:00
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2019-01-05 22:09:58 +01:00
|
|
|
.is-layout-thin.is-search-grow .header-search,
|
2019-01-03 23:30:27 +01:00
|
|
|
.is-search-grow .header-search {
|
2018-12-26 08:45:53 +01:00
|
|
|
flex-grow: 1;
|
2019-01-05 21:57:21 +01:00
|
|
|
flex-basis: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 550px) {
|
|
|
|
.is-search-grow .header-search {
|
|
|
|
flex-basis: initial;
|
|
|
|
}
|
2018-12-26 08:45:53 +01:00
|
|
|
}
|
2019-01-03 23:30:27 +01:00
|
|
|
|
|
|
|
.header-search {
|
2019-01-05 21:57:21 +01:00
|
|
|
width: 15vw;
|
|
|
|
min-width: 15em;
|
2019-01-03 23:30:27 +01:00
|
|
|
}
|
|
|
|
|
2019-01-05 21:57:21 +01:00
|
|
|
.header-date,
|
2019-01-03 23:30:27 +01:00
|
|
|
.header-clock,
|
|
|
|
.header-search,
|
|
|
|
.header-edit-add,
|
|
|
|
.header-accent {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-search .header-search,
|
2019-01-05 21:57:21 +01:00
|
|
|
.is-date .header-date,
|
2019-01-03 23:30:27 +01:00
|
|
|
.is-clock .header-clock,
|
|
|
|
.is-search-edit-add .header-edit-add,
|
|
|
|
.is-search-accent .header-accent {
|
|
|
|
display: flex;
|
|
|
|
}
|