1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
| .homeSlide {
position: relative;
}
.bcg {
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
min-height: max(100vh, 56.25vw);
height: 100%;
width: 100%;
}
#slide-2 .bcg { background-image: url('../imgs/robert_smith@x2.jpg'); }
#slide-3 .bcg { background-image: url('../imgs/bretelles@x2.jpg'); }
#slide-4 .bcg { background-image: url('../imgs/pin_up@x2.jpg'); }
#slide-5 .bcg { background-image: url('../imgs/Wooten_lead@2x.jpg'); }
/* ----------- */
/* TEXTES*/
.hsContainer {
position: relative;
}
.hsContent {
max-width: 700px;
position: absolute;
left: 10px;
top: 20%;
}
.hsContent h1 {
color: #000;
font-size: 15vw;
line-height: 12vw;
margin-top: 150px;
margin-bottom: 0px;
opacity: 0.40;
}
.hsContent h2 {
color: #000;
font-size: 3vw;
line-height: 3.7vw;
margin-top: 10px;
}
@media only screen and (max-width: 575px) {
.hsContent h1 {
color: #000;
font-size: 30vw
line-height: 18vw;
}
.hsContent h2 {
font-size: 5vw;
line-height: 6vw;
}
}
.hsContent a {
color: #b2b2b2;
text-decoration: underline;
}
.hsContainer .white {
color: white;
text-shadow: 1px 1px #000;
} |
Partager