36 lines
589 B
SCSS
36 lines
589 B
SCSS
.dateList {
|
|
list-style: none;
|
|
margin: 1rem 0 var(--spacing-sitepadding);
|
|
display: flex;
|
|
gap: var(--spacing-gap-column);
|
|
}
|
|
|
|
.date {
|
|
font-family: var(--font-serif);
|
|
font-size: var(--font-size-lead);
|
|
margin-bottom: 1rem;
|
|
padding-left: 4rem;
|
|
position: relative;
|
|
min-height: 3.2rem;
|
|
line-height: 1.2;
|
|
|
|
&:before {
|
|
content: "";
|
|
display: block;
|
|
width: 3.2rem;
|
|
height: 3.2rem;
|
|
border-radius: 100%;
|
|
background: var(--color-goldenBeige);
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
}
|
|
|
|
.time {
|
|
width: 100%;
|
|
}
|
|
|
|
.venue {
|
|
font-style: italic;
|
|
} |