File size: 587 Bytes
001d03c e538a02 001d03c e538a02 001d03c e538a02 001d03c e538a02 001d03c e538a02 001d03c |
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 |
/* Custom animations */
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.05); }
}
.win-animation {
animation: pulse 1.5s ease-in-out;
background-color: rgba(74, 222, 128, 0.1);
}
.loss-animation {
animation: pulse 1.5s ease-in-out;
background-color: rgba(248, 113, 113, 0.1);
}
/* Match history item styling */
.match-item {
transition: all 0.3s ease;
}
.match-item:hover {
transform: translateX(4px);
}
/* Responsive adjustments */
@media (max-width: 640px) {
.match-details {
flex-direction: column;
}
} |