Spaces:
Running
Running
File size: 941 Bytes
77ef733 2306a91 77ef733 2306a91 77ef733 2306a91 77ef733 2306a91 77ef733 2306a91 77ef733 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f4ecdc;
}
::-webkit-scrollbar-thumb {
background: #d9c08f;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #c9a263;
}
/* Smooth transitions */
a, button {
transition: all 0.2s ease;
}
/* Book card hover effect */
.book-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.book-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Custom focus styles */
input:focus, button:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(201, 162, 99, 0.5);
}
/* Animation for loading books */
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse {
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
} |