This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/styles/pages/books.css
2024-06-27 09:38:48 -07:00

123 lines
No EOL
2 KiB
CSS

.book-entry {
display: flex;
flex-direction: column;
gap: var(--sizing-sm);
align-items: center;
&:last-of-type {
border-bottom: 0;
}
& img {
transition-property: border-color;
transition-timing-function: var(--transition-ease-in-out);
transition-duration: 300ms;
}
a {
display: flex;
}
& a:hover img,
& a:focus img,
& a:active img {
border-color: var(--accent-color-hover)
}
& img {
max-width: calc(var(--sizing-3xl) * 4);
height: auto;
}
& .book-meta {
align-items: center;
& p {
margin: 0;
overflow: hidden;
max-width: 100%;
text-overflow: ellipsis;
width: fit-content;
}
& .progress-bar-wrapper {
max-width: 75%;
margin-bottom: 0;
}
& blockquote.description {
-webkit-box-orient: vertical;
display: -webkit-box;
-webkit-line-clamp: 4;
overflow: hidden;
margin-bottom: var(--sizing-base);
}
}
}
.book-entry,
.book-focus {
& img {
border: 1px solid var(--accent-color);
}
& .book-meta {
display: flex;
flex-direction: column;
gap: var(--sizing-sm);
& p {
&.title {
font-size: var(--font-size-xl);
line-height: 1.25;
}
&.sub-meta {
font-size: var(--font-size-xs);
line-height: var(--line-height-xs);
}
&.title,
&.sub-meta {
margin: 0;
}
}
}
}
.book-focus {
margin-top: var(--sizing-base);
border-bottom: 0;
& .book-display {
display: flex;
flex-direction: row;
gap: var(--sizing-base);
margin-bottom: var(--sizing-base);
}
p {
margin: var(--sizing-base) 0;
}
& .book-meta p {
margin: 0;
}
}
@media screen and (min-width: 768px) {
.book-entry {
flex-direction: row;
gap: var(--sizing-base);
align-items: start;
& .book-meta {
align-items: start;
& .progress-bar-wrapper {
margin-top: 0;
max-width: 40%;
}
}
}
}