mirror of
https://github.com/elder-plinius/P4RS3LT0NGV3.git
synced 2026-02-12 16:52:46 +00:00
35 lines
726 B
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); }
|
|
}
|