mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 10:18:55 +00:00
45 lines
878 B
CSS
45 lines
878 B
CSS
/* Admin Dashboard - Recent Activity Styles */
|
|
.activity-item {
|
|
transition: background-color 0.2s ease-in-out;
|
|
}
|
|
|
|
.activity-item:hover {
|
|
transform: translateX(2px);
|
|
}
|
|
|
|
/* Chart Container Responsive Sizing */
|
|
.chart-container {
|
|
position: relative;
|
|
height: 250px;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Smooth transitions for metric updates */
|
|
[data-metric] {
|
|
transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
|
|
}
|
|
|
|
[data-metric].metric-updated {
|
|
animation: pulse 0.5s ease-in-out;
|
|
}
|
|
|
|
@keyframes pulse {
|
|
0%, 100% {
|
|
opacity: 1;
|
|
}
|
|
50% {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
/* Quick Links hover effects */
|
|
.quick-link-item {
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.quick-link-item:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
|
}
|
|
|