This commit is contained in:
Campbell Alden 2022-08-24 14:32:09 +09:00
parent b41b2bac3d
commit 5d6630b253
6 changed files with 60 additions and 11 deletions

46
docs/review.css Normal file
View file

@ -0,0 +1,46 @@
.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;
}
.core-review {
margin: 30px 10px;
}
.core-review p {
margin-bottom: 20px;
}
.core-review h2,h3,h4,h5 {
margin-top: 30px;
margin-bottom: 10px;
text-align: center;
}