Spaces:
Running
Running
File size: 2,401 Bytes
b82f276 | 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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | /* Entrance Animations */
.animate-entrance {
opacity: 0;
animation-fill-mode: forwards;
}
@keyframes entrance-slide-in-left {
from {
transform: translateX(-40px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes entrance-slide-in-down {
from {
transform: translateY(-40px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes entrance-slide-in-up {
from {
transform: translateY(40px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.entrance-sidebar {
animation: entrance-slide-in-left 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.entrance-header {
animation: entrance-slide-in-down 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.entrance-card {
animation: entrance-slide-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.entrance-chatbot {
animation: entrance-slide-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}
/* --- PROFESSIONAL LOGOUT: Terminal Shutdown --- */
@keyframes component-disassemble {
from {
transform: scale(1);
filter: blur(0);
opacity: 1;
}
to {
transform: scale(0.95);
filter: blur(10px);
opacity: 0;
}
}
.exit-disassemble {
animation: component-disassemble 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}
/* Logout Portal Overlay */
.logout-portal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(5, 5, 10, 0.98);
backdrop-filter: blur(25px);
z-index: 99999;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: white;
opacity: 0;
transition: opacity 0.5s ease;
pointer-events: none;
}
.logout-portal-overlay.show {
opacity: 1;
pointer-events: all;
}
.logout-portal-message {
font-size: 1.2rem;
font-weight: 500;
letter-spacing: 4px;
text-transform: uppercase;
margin-bottom: 20px;
animation: text-flicker 2s infinite;
}
@keyframes text-flicker {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.7;
}
} |