33 lines
582 B
CSS
33 lines
582 B
CSS
section.callout {
|
|
--padding-vertical: var(--space-m);
|
|
background-color: var(--color);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
section.callout .ticket-link {
|
|
margin-top: calc(var(--padding-vertical) / 2);
|
|
}
|
|
|
|
section.callout a {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
@media screen and (max-width: 1085px) {
|
|
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;
|
|
}
|
|
}
|