Add quick look section to reviews

This commit is contained in:
Campbell Alden 2022-08-24 13:57:20 +09:00
parent 94bee36cfe
commit 8e789d68ab
10 changed files with 167 additions and 60 deletions

38
static/quick_look.css Normal file
View file

@ -0,0 +1,38 @@
.quicklook {
max-width: 600px;
flex-basis: 600px;
border-radius: 16px;
background: #F4C2CD;
color: #702E2E;
padding: 20px;
display: flex;
flex-direction: column;
gap: 20px;
}
.quicklook-emphasized-color {
color: #3D292D !important ;
}
.quicklook-details {
display: flex;
gap: 30px;
}
.quicklook-rating {
display: flex;
flex-direction: column;
flex-grow: 0;
}
.quicklook-genre-section {
display: flex;
flex-direction: column;
align-items: flex-start;
flex-grow: 1;
}
.quicklook-genre {
text-transform: uppercase;
font-weight: bold;
}