186 lines
3.6 KiB
CSS
186 lines
3.6 KiB
CSS
@block header {
|
|
margin-bottom: var(--grid-gutter);
|
|
|
|
@media (--breakpoint-desktop) {
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
@element upper-wrapper {
|
|
background: var(--color-palette-blue-dark);
|
|
padding: calc(var(--grid-gutter) / 2) 0;
|
|
color: var(--color-header-upper-text-secondary);
|
|
}
|
|
|
|
@element upper {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
@element upper-first {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
margin-bottom: calc(var(--grid-gutter) / 2);
|
|
|
|
@media (--breakpoint-desktop) {
|
|
flex: 0 1 auto;
|
|
flex-direction: row;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
& div + div {
|
|
margin: calc(var(--grid-gutter) / 2) 0 0;
|
|
|
|
|
|
@media (--breakpoint-desktop) {
|
|
margin: 0 0 0 calc(var(--grid-gutter) / 2);
|
|
}
|
|
}
|
|
}
|
|
|
|
@element upper-second {
|
|
flex: 1 1 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
@media (--breakpoint-desktop) {
|
|
flex: 0 1 auto;
|
|
flex-direction: row;
|
|
}
|
|
|
|
& div + div {
|
|
margin: calc(var(--grid-gutter) / 2) 0 0;
|
|
|
|
@media (--breakpoint-desktop) {
|
|
margin: 0 0 0 calc(var(--grid-gutter) / 2);
|
|
}
|
|
}
|
|
}
|
|
|
|
@element upper-link {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
@element upper-copy {
|
|
display: inline-flex;
|
|
}
|
|
|
|
@element upper-icon {
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 20px;
|
|
margin-right: calc(var(--grid-gutter) / 4);
|
|
}
|
|
|
|
@element lower-wrapper {
|
|
}
|
|
|
|
@element lower {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
padding: var(--grid-gutter) 0 calc(var(--grid-gutter) / 4);
|
|
border-bottom: 1px solid var(--color-bg-separator);
|
|
}
|
|
|
|
@element title {
|
|
display: flex;
|
|
align-items: center;
|
|
font-family: var(--font-regular);
|
|
letter-spacing: 3px;
|
|
text-transform: uppercase;
|
|
color: var(--color-header-upper-text-primary);
|
|
|
|
& img {
|
|
display: inline-block;
|
|
width: 24px;
|
|
height: auto;
|
|
margin-right: calc(var(--grid-gutter) / 2);
|
|
}
|
|
}
|
|
|
|
@element logo {
|
|
display: flex;
|
|
flex: 0 0 100%;
|
|
justify-content: center;
|
|
|
|
@media (--breakpoint-desktop) {
|
|
flex: 0 0 200px;
|
|
}
|
|
|
|
& img {
|
|
width: 100%;
|
|
height: auto;
|
|
max-width: 169px;
|
|
}
|
|
}
|
|
|
|
@element controls {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
color: var(--color-header-upper-text-primary);
|
|
|
|
@media (--breakpoint-desktop) {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
& form {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
|
|
@media (--breakpoint-desktop) {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
& .group {
|
|
flex: 0 0 auto;
|
|
display: flex;
|
|
padding: 0 calc(var(--grid-gutter) / 2);
|
|
margin: 0;
|
|
|
|
border: none;
|
|
background: var(--color-palette-blue-medium);
|
|
border-radius: var(--border-radius);
|
|
color: inherit;
|
|
|
|
& + .group {
|
|
margin-left: var(--grid-gutter)
|
|
}
|
|
|
|
& select,
|
|
& label {
|
|
flex: 0 0 auto;
|
|
display: inline-block;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
|
|
color: inherit;
|
|
font-weight: normal;
|
|
font-family: var(--font-medium);
|
|
font-size: 0.8em;
|
|
|
|
background: transparent;
|
|
border: none;
|
|
}
|
|
|
|
& select {
|
|
margin-top: 2px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|