Files
P4RS3LT0NGV3/css/notification.css

35 lines
726 B
CSS

/* Copy notification styles */
.copy-notification {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25282c;
color: #00FF41;
padding: 10px 20px;
border-radius: 5px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
z-index: 1000;
display: flex;
align-items: center;
gap: 10px;
animation: fade-in 0.3s ease-in-out;
}
.copy-notification.error {
color: #ff4141;
}
.copy-notification.fade-out {
animation: fade-out 0.3s ease-in-out forwards;
}
@keyframes fade-in {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-out {
from { opacity: 1; transform: translateY(0); }
to { opacity: 0; transform: translateY(20px); }
}