42 lines
565 B
SCSS
42 lines
565 B
SCSS
.venueItem {
|
|
position: relative;
|
|
list-style: none;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
padding-top: 60%;
|
|
background: var(--color-placeholder);
|
|
position: relative;
|
|
|
|
img {
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
|
|
.text {
|
|
padding: .8rem 0;
|
|
}
|
|
|
|
.title {
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
.details {
|
|
font-size: var(--font-size-caption);
|
|
border-top: var(--border);
|
|
margin-top: var(--spacing-xs);
|
|
padding-top: .4rem;
|
|
|
|
strong {
|
|
font-family: var(--font-main);
|
|
}
|
|
|
|
ul {
|
|
margin: .2rem 0 0 1.2em;
|
|
}
|
|
} |