30 lines
510 B
30 lines
510 B
.featured_book { |
|
display: flex; |
|
flex-direction: column; |
|
justify-content: flex-start; |
|
width: 100%; |
|
aspect-ratio: 3 / 4; |
|
border: solid 1px var(--accent); |
|
margin: 0 0 2rem; |
|
|
|
&__cover { |
|
width: 100%; |
|
height: 100%; |
|
background-repeat: no-repeat; |
|
background-size: cover; |
|
} |
|
|
|
a { |
|
margin: 0; |
|
text-decoration: none; |
|
text-align: center; |
|
hyphens: auto; |
|
} |
|
|
|
&__title { |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
font-weight: 500; |
|
} |
|
}
|
|
|