|
|
|
@ -97,6 +97,7 @@ body { |
|
|
|
gap: 0; |
|
|
|
min-height: 100svh; |
|
|
|
position: relative; |
|
|
|
-webkit-font-smoothing: antialiased; |
|
|
|
} |
|
|
|
|
|
|
|
ul[class] { |
|
|
|
@ -105,7 +106,6 @@ ul[class] { |
|
|
|
list-style: none; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
header { |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
@ -132,8 +132,6 @@ header { |
|
|
|
|
|
|
|
main { |
|
|
|
margin: 0 1rem; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.msg__container { |
|
|
|
@ -249,7 +247,6 @@ main { |
|
|
|
height: 62px; |
|
|
|
--opacity: 1.0; |
|
|
|
|
|
|
|
|
|
|
|
&::before { |
|
|
|
content: attr(data-label); |
|
|
|
color: var(--clr-white); |
|
|
|
@ -269,11 +266,11 @@ main { |
|
|
|
margin: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
input[type=range] { |
|
|
|
appearance: none; |
|
|
|
width: 100%; |
|
|
|
background-color: transparent; |
|
|
|
|
|
|
|
height: 62px; |
|
|
|
box-sizing: border-box; |
|
|
|
border: 8px solid transparent; |
|
|
|
@ -318,44 +315,46 @@ input[type=range] { |
|
|
|
pointer-events: none; |
|
|
|
display: block; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#windmill { |
|
|
|
width: 33%; |
|
|
|
min-width: 60px; |
|
|
|
max-width: 163px; |
|
|
|
height: auto; |
|
|
|
rotate: -20deg; |
|
|
|
right: 8vw; |
|
|
|
top: 10px; |
|
|
|
} |
|
|
|
& img:nth-child(1) { |
|
|
|
width: 33%; |
|
|
|
min-width: 60px; |
|
|
|
max-width: 163px; |
|
|
|
height: auto; |
|
|
|
rotate: -20deg; |
|
|
|
right: 8vw; |
|
|
|
top: 10px; |
|
|
|
} |
|
|
|
|
|
|
|
#wase { |
|
|
|
width: 15%; |
|
|
|
min-width: 126px; |
|
|
|
max-width: 218px; |
|
|
|
height: auto; |
|
|
|
rotate: 10deg; |
|
|
|
left: 10vw; |
|
|
|
bottom: -40px; |
|
|
|
} |
|
|
|
& img:nth-child(2) { |
|
|
|
width: 15%; |
|
|
|
min-width: 126px; |
|
|
|
max-width: 218px; |
|
|
|
height: auto; |
|
|
|
rotate: 10deg; |
|
|
|
left: 10vw; |
|
|
|
bottom: 0; |
|
|
|
transform: translateY(10%); |
|
|
|
} |
|
|
|
|
|
|
|
#arrows { |
|
|
|
width: 20%; |
|
|
|
min-width: 92px; |
|
|
|
max-width: 161px; |
|
|
|
height: auto; |
|
|
|
rotate: 10deg; |
|
|
|
right: -3vw; |
|
|
|
bottom: 10svh; |
|
|
|
& img:nth-child(3) { |
|
|
|
width: 20%; |
|
|
|
min-width: 92px; |
|
|
|
max-width: 161px; |
|
|
|
height: auto; |
|
|
|
rotate: 10deg; |
|
|
|
right: -3vw; |
|
|
|
bottom: 10svh; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.cards__container, .link__container { |
|
|
|
margin-top: 2.4em; |
|
|
|
margin-bottom: 2.4em; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.link__container { |
|
|
|
max-width: 735; |
|
|
|
margin-left: auto; |
|
|
|
@ -369,6 +368,8 @@ ul.card__stack { |
|
|
|
margin-bottom: 24px; |
|
|
|
aspect-ratio: 0.72972972972973; |
|
|
|
position: relative; |
|
|
|
width: 100%; |
|
|
|
margin-bottom: 60px; |
|
|
|
|
|
|
|
& a { |
|
|
|
text-decoration: none; |
|
|
|
@ -504,15 +505,40 @@ ul.card__stack { |
|
|
|
|
|
|
|
.cards__ctas { |
|
|
|
max-width: 440px; |
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
|
|
|
|
@media (orientation: portrait) { |
|
|
|
|
|
|
|
main:has(.cards__container) { |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
flex-grow: 1; |
|
|
|
} |
|
|
|
|
|
|
|
@media (min-width: 480px) { |
|
|
|
.cards__container { |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
justify-content: space-between; |
|
|
|
flex-grow: 1; |
|
|
|
margin-top: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.card__stack-container { |
|
|
|
flex-grow: 1; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
} |
|
|
|
|
|
|
|
ul.card__stack { |
|
|
|
margin-bottom: 60px; |
|
|
|
} |
|
|
|
margin-top: 0; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@media (min-width: 480px) { |
|
|
|
.link { |
|
|
|
& img { |
|
|
|
aspect-ratio: 1.536363636363636; |
|
|
|
|