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

26 lines
429 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;
grid-template-columns: 2fr 3fr;
column-gap: calc(var(--space-m) / 2);
2024-07-30 12:07:47 +02:00
}
.hero__text h2 {
font-size: var(--font-size-h1);
width: 100%;
text-align: center;
margin-bottom: 2rem;
}
.hero__text h3 {
color: var(--color-salmon);
}
.hero__text p:not(:last-of-type) {
margin-bottom: 1rem;
}
.hero__text p:first-of-type {
margin-top: 2rem;
}