You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
523 B
32 lines
523 B
2 years ago
|
.featured_book {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
justify-content: flex-start;
|
||
|
width: 100%;
|
||
|
max-width: 18rem;
|
||
|
height: 25rem;
|
||
|
border: solid 1px var(--accent);
|
||
|
margin: 0 0 2rem;
|
||
|
|
||
|
&__cover {
|
||
|
width: 100%;
|
||
|
height: 80%;
|
||
|
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;
|
||
|
}
|
||
|
}
|