nouveau-theatre-de-besancon/assets/css/src/hero.css

29 lines
536 B
CSS
Raw Normal View History

2024-07-30 12:07:47 +02:00
.hero {
--padding-vertical: calc(var(--space-m) / 1.5);
2024-07-30 12:07:47 +02:00
display: grid;
2024-09-03 14:48:28 +02:00
grid-template-columns: 1.6fr 3fr;
column-gap: calc(var(--space-m) / 1.5);
2024-07-30 12:07:47 +02:00
}
.hero__text h2 {
2024-09-03 14:48:28 +02:00
font-size: var(--font-size-xl);
2024-07-30 12:07:47 +02:00
width: 100%;
2024-07-31 18:29:16 +02:00
margin-bottom: var(--padding-vertical);
2024-07-30 12:07:47 +02:00
}
.hero__text h3 {
color: var(--color-salmon);
2024-09-03 14:48:28 +02:00
font-size: var(--font-size-h2);
}
.hero__text h3:nth-child(odd) {
text-align: end;
2024-07-30 12:07:47 +02:00
}
.hero__text p:not(:last-of-type) {
margin-bottom: 1rem;
}
.hero__text p:first-of-type {
2024-07-31 18:29:16 +02:00
margin-top: var(--padding-vertical);
2024-07-30 12:07:47 +02:00
}