43 lines
937 B
CSS
43 lines
937 B
CSS
.promo {
|
|
align-items: center;
|
|
background-position: 50%;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
border-radius: var(--Medium, 8px);
|
|
color: var(--Text-Brand-OnPrimary-2-Heading);
|
|
display: flex;
|
|
flex: 1 0 320px;
|
|
flex-direction: column;
|
|
gap: var(--Space-x2);
|
|
height: 320px;
|
|
justify-content: center;
|
|
padding: var(--Space-x4) var(--Space-x3);
|
|
}
|
|
|
|
.link:nth-of-type(1) .promo {
|
|
background-image:
|
|
linear-gradient(
|
|
180deg,
|
|
rgba(0, 0, 0, 0) 0%,
|
|
rgba(0, 0, 0, 0.36) 37.88%,
|
|
rgba(0, 0, 0, 0.75) 100%
|
|
),
|
|
url("/_static/shared/images/Scandic_Park_Party_Lipstick.jpg");
|
|
}
|
|
|
|
.link:nth-of-type(2) .promo {
|
|
background-image:
|
|
linear-gradient(
|
|
180deg,
|
|
rgba(0, 0, 0, 0) 0%,
|
|
rgba(0, 0, 0, 0.36) 37.88%,
|
|
rgba(0, 0, 0, 0.75) 100%
|
|
),
|
|
url("/_static/shared/images/Scandic_Family_Breakfast.jpg");
|
|
}
|
|
|
|
.text {
|
|
max-width: 400px;
|
|
text-align: center;
|
|
}
|