continue watching/reading

This commit is contained in:
2025-12-07 17:24:49 +01:00
parent b2f6b489aa
commit 8fa40218e5
9 changed files with 367 additions and 11 deletions

View File

@@ -338,9 +338,23 @@ body {
.card {
min-width: 220px;
width: 220px;
flex: 0 0 220px;
cursor: pointer;
transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.source-badge {
position: absolute;
top: 6px;
left: 6px;
background: rgba(0,0,0,0.75);
color: white;
font-size: 10px;
padding: 2px 6px;
border-radius: 6px;
text-transform: uppercase;
}
.card:hover {
transform: translateY(-8px);
}