Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
28 righe
509 B
28 righe
509 B
5 anni fa
|
.parallax-container {
|
||
|
height: 60vh;
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
|
|
||
|
@media (max-width: $tablet) {
|
||
|
height: 40vh;
|
||
|
}
|
||
|
@media (max-width: $mobile) {
|
||
|
height: 40vh;
|
||
|
}
|
||
|
|
||
|
.parallax {
|
||
|
background-size: cover;
|
||
|
background-attachment: fixed;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center center;
|
||
|
height: 100%;
|
||
|
|
||
|
@media (max-width: $tablet) {
|
||
|
background-size: inherit;
|
||
|
}
|
||
|
@media (max-width: $mobile) {
|
||
|
background-size: inherit;
|
||
|
}
|
||
|
}
|
||
|
}
|