Archived
- add uv configuration for the backend - update frontend to make auth work - add new auth endpoints - add bookmars feat - add reader feat
29 lines
525 B
CSS
29 lines
525 B
CSS
.bookCard {
|
|
background: #fff;
|
|
border-radius: 12px;
|
|
overflow: hidden;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
cursor: pointer;
|
|
transition: transform 0.15s, box-shadow 0.15s;
|
|
}
|
|
|
|
.bookCard:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.coverProgressBar {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: 4px;
|
|
background: rgba(0, 0, 0, 0.12);
|
|
z-index: 2;
|
|
}
|
|
|
|
.coverProgressFill {
|
|
height: 100%;
|
|
background: #16a34a;
|
|
transition: width 0.2s ease;
|
|
} |