This commit is contained in:
lizandrogd
2026-01-13 01:03:24 -05:00
parent 83fcabe36f
commit b0d44b0095
3 changed files with 499 additions and 5 deletions
+49
View File
@@ -166,6 +166,55 @@ body {
gap: 15px;
}
/* Nuevo badge de estado mejorado */
.status-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
border-radius: 20px;
box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
transition: all 0.3s ease;
}
.status-badge:hover {
box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
transform: translateY(-1px);
}
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
animation: pulse-dot 2s infinite;
}
.status-dot.status-online {
background-color: #fff;
box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
}
@keyframes pulse-dot {
0% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}
70% {
box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
}
100% {
box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
}
}
.status-text {
color: #fff;
font-weight: 600;
font-size: 0.875rem;
letter-spacing: 0.025em;
}
/* Backward compatibility - mantener el antiguo */
.status-indicator {
display: flex;
align-items: center;