21 lines
326 B
CSS
21 lines
326 B
CSS
|
|
section.callout {
|
||
|
|
--padding-vertical: var(--space-m);
|
||
|
|
background-color: var(--color-salmon);
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
section.callout h4 {
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
section.callout a {
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
|
||
|
|
section.callout .ticket {
|
||
|
|
margin-right: 1rem;
|
||
|
|
}
|