mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
694 B
38 lines
694 B
/* Header */
|
|
header.big {
|
|
background-size: cover, cover;
|
|
background-position: center center;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
color: white;
|
|
position: relative;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
header.fixed {
|
|
position: fixed;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
z-index: 1;
|
|
top: 0;
|
|
}
|
|
|
|
header.relative {
|
|
position: relative;
|
|
}
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
main > section > div:first-child:nth-last-child(2) ~ div > header.fixed {
|
|
width: inherit;
|
|
}
|
|
}
|
|
|
|
/* Specific forms in header */
|
|
header form > div:not(.clear):not(.control) {
|
|
min-height: 0;
|
|
top: 0;
|
|
}
|
|
|
|
header form > div > input:not([type=submit]) {
|
|
padding-top: 2rem;
|
|
}
|