tech-assessment-3pl/src/components/MovieCard/moviecard.module.css
2025-02-23 19:22:05 +00:00

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;
}