Files
front-AT/app/Components/Global/AlertBox/AlertBox.css
T

58 lines
897 B
CSS
Raw Normal View History

2025-09-24 17:51:54 -06:00
@keyframes slideInLeft {
0% {
opacity: 0;
transform: translateX(-100%);
}
100% {
opacity: 0.9;
transform: translateX(0);
}
}
@keyframes slideOutRight {
0% {
opacity: 0.9;
transform: translateX(0);
}
100% {
opacity: 0;
transform: translateX(100%);
}
}
2025-09-17 19:42:13 -06:00
.messageBox {
2025-09-19 17:20:05 -06:00
display: flex;
2025-09-17 19:42:13 -06:00
position: absolute;
padding: 0.5rem 1.25rem;
2025-09-19 17:20:05 -06:00
border-radius: 0 4px 4px 0;
2025-09-17 19:42:13 -06:00
font-weight: bold;
2025-09-21 00:07:55 -06:00
font-size: 2rem;
2025-09-17 19:42:13 -06:00
text-align: center;
z-index: 100;
top: 0;
left: 0;
2025-09-24 17:51:54 -06:00
max-width: 500px;
2025-09-19 17:20:05 -06:00
max-height: min-content;
2025-09-24 17:51:54 -06:00
opacity: 0;
}
.messageBox:not(.hidden) {
animation: slideInLeft 0.5s ease forwards;
2025-09-17 19:42:13 -06:00
}
.messageBox.hidden {
2025-09-24 17:51:54 -06:00
animation: slideOutRight 0.5s ease forwards;
2025-09-17 19:42:13 -06:00
}
.success {
background-color: #d1f7c4;
color: #000000;
border: 1px solid #a5d6a7;
}
.error {
background-color: #ffcdd2;
color: #000000;
border: 1px solid #ef9a9a;
2025-09-24 17:51:54 -06:00
}