film/static/review.css
2022-08-27 12:56:49 +09:00

33 lines
484 B
CSS

.review {
max-width: 800px;
display: flex;
flex-direction: column;
align-items: center;
}
.review-header {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;
margin: 30px 0;
}
.review-header h1 {
text-align: center;
}
.review-poster {
aspect-ratio: 1/1;
flex-basis: 200px;
max-width: 200px;
overflow: hidden;
border-radius: 8px;
}
.review-poster > img {
position: relative;
width: 100%;
height: 100%;
object-fit: cover;
}