38 lines
572 B
CSS
38 lines
572 B
CSS
.imgcontainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 65%;
|
|
}
|
|
|
|
.image {
|
|
height: 100%;
|
|
max-width: 80%;
|
|
aspect-ratio: auto;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.subheading {
|
|
font-size: 1.1rem;
|
|
line-height: 1.3rem;
|
|
min-height: 2.6rem;
|
|
margin: 0.5rem auto;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
}
|
|
|
|
.year {
|
|
font-size: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.button {
|
|
padding: 0.25rem 2rem;
|
|
border-radius: 10px;
|
|
}
|