2019-01-03 23:30:27 +01:00
|
|
|
.header {
|
2019-02-16 23:27:54 +01:00
|
|
|
padding: calc(var(--gutter) * var(--header-shade-padding)) 0;
|
2019-01-24 21:28:11 +01:00
|
|
|
width: 100%;
|
2019-02-16 23:27:54 +01:00
|
|
|
position: relative;
|
2019-01-24 21:28:11 +01:00
|
|
|
z-index: var(--z-index-header);
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:51:54 +01:00
|
|
|
.is-bookmarks-show-link .header {
|
2019-01-03 23:30:27 +01:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2019-01-24 21:28:11 +01:00
|
|
|
}
|
|
|
|
|
2019-02-16 23:27:54 +01:00
|
|
|
.header .header-shade,
|
|
|
|
.header .header-border {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-header-shade-style-scroll .header .header-shade {
|
|
|
|
transition: background-color var(--animation-speed-fast) ease-in-out;
|
|
|
|
animation: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-header-shade-show .header .header-shade {
|
|
|
|
background-color: rgb(var(--header-shade-color));
|
|
|
|
opacity: var(--header-shade-opacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-header-shade-border-top .header .header-border {
|
|
|
|
border-top: var(--line-width) solid rgb(var(--accent));
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-header-shade-border-bottom .header .header-border {
|
|
|
|
border-bottom: var(--line-width) solid rgb(var(--accent));
|
2019-01-03 23:30:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.header-area {
|
2019-02-16 23:27:54 +01:00
|
|
|
margin: 0 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;
|
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-02-03 14:51:54 +01:00
|
|
|
.is-header-alignment-horizontal-left .header-area {
|
2019-01-03 23:30:27 +01:00
|
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:51:54 +01:00
|
|
|
.is-header-alignment-horizontal-center .header-area {
|
2019-01-03 23:30:27 +01:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:51:54 +01:00
|
|
|
.is-header-alignment-horizontal-right .header-area {
|
2019-01-03 23:30:27 +01:00
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:51:54 +01:00
|
|
|
.is-layout-width-thin.is-header-search-grow .header-search,
|
|
|
|
.is-header-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) {
|
2019-02-03 14:51:54 +01:00
|
|
|
.is-header-search-grow .header-search {
|
2019-01-05 21:57:21 +01:00
|
|
|
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,
|
2019-02-03 14:51:54 +01:00
|
|
|
.header-accent,
|
|
|
|
.header-menu {
|
2019-01-03 23:30:27 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2019-02-03 14:51:54 +01:00
|
|
|
.is-header-search-show .header-search,
|
|
|
|
.is-header-date-show .header-date,
|
|
|
|
.is-header-clock-show .header-clock,
|
|
|
|
.is-header-edit-add .header-edit-add,
|
|
|
|
.is-header-accent .header-accent,
|
|
|
|
.is-menu .header-menu {
|
2019-01-03 23:30:27 +01:00
|
|
|
display: flex;
|
|
|
|
}
|