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

34 lines
585 B
CSS
Raw Normal View History

2024-07-31 12:09:03 +02:00
section.callout {
--padding-vertical: var(--space-m);
2024-09-03 16:35:32 +02:00
background-color: var(--color-blue-light);
2024-07-31 12:09:03 +02:00
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
2024-07-31 12:09:03 +02:00
}
section.callout h4 {
2024-07-31 18:29:16 +02:00
margin-bottom: calc(var(--padding-vertical) / 2);
2024-07-31 12:09:03 +02:00
}
section.callout a {
display: flex;
align-items: center;
}
@media screen and (max-width: 800px) {
section.callout {
padding: 2.25rem 2rem;
}
section.callout h4 {
font-size: var(--font-size-m);
}
section.callout h4 {
margin-bottom: 1rem;
}
section.callout svg {
width: 1.5rem;
}
}