mirror of
https://github.com/YunoHost-Apps/movim_ynh.git
synced 2024-09-03 19:46:19 +02:00
42 lines
748 B
CSS
42 lines
748 B
CSS
/* 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;
|
|
}
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
main > section > div:first-child:nth-last-child(2) ~ div > header.fixed {
|
|
width: 65%;
|
|
}
|
|
}
|
|
|
|
header.fixed + div {
|
|
margin-top: 7rem;
|
|
}
|
|
|
|
header ul:first-child > li:first-child {
|
|
text-align: center;
|
|
}
|
|
|
|
/* 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;
|
|
}
|