mirror of
https://github.com/Ravinou/borgwarehouse
synced 2026-03-14 22:35:46 +01:00
18 lines
259 B
CSS
18 lines
259 B
CSS
.infoMessage {
|
|
margin: 15px 0px;
|
|
background-color: rgb(17, 147, 0);
|
|
color: white;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
animation: myAnim 1s ease 0s 1 normal forwards;
|
|
}
|
|
|
|
@keyframes myAnim {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|