modified .env and styles

This commit is contained in:
2025-09-10 19:23:18 -04:00
parent e51d284fb4
commit 0c5abba89b
3 changed files with 34 additions and 4 deletions
+29
View File
@@ -358,6 +358,35 @@ table tr {
align-items: center;
}
.messageBox {
position: relative;
padding: 0.5rem 1.25rem;
border-radius: 4px;
font-weight: bold;
font-size: 1.5rem;
text-align: center;
opacity: 1;
z-index: 100;
}
.messageBox.hidden {
opacity: 0;
pointer-events: none;
transition: opacity 1s ease-out;
}
.success {
background-color: #d1f7c4;
color: #000000;
border: 1px solid #a5d6a7;
}
.error {
background-color: #ffcdd2;
color: #000000;
border: 1px solid #ef9a9a;
}
@media (max-width: 800px) {
header {
padding: 6px 16px;