1
0
mirror of https://github.com/KubaPro010/fm-dx-webserver.git synced 2026-02-26 22:13:53 +01:00
This commit is contained in:
NoobishSVK
2024-08-01 20:12:24 +02:00
parent 2e719448b2
commit 8df2eab272
13 changed files with 54 additions and 59 deletions

View File

@@ -7,7 +7,7 @@
height: 100%;
background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
opacity: 0;
transition: opacity 0.3s ease-in-out; /* Fade-in/out transition */
transition: opacity 0.3s ease; /* Fade-in/out transition */
z-index: 20; /* Ensure the modal is above other content */
color: var(--color-4);
backdrop-filter: blur(10px);
@@ -24,7 +24,7 @@
padding: 30px;
border-radius: 15px;
opacity: 1;
transition: opacity 0.3s ease-in-out; /* Fade-in/out transition */
transition: opacity 0.3s ease; /* Fade-in/out transition */
z-index: 21; /* Ensure the modal content is above the modal background */
min-width: 500px;
}
@@ -43,7 +43,7 @@
top: 17px;
right: 30px;
cursor: pointer;
transition: 0.3s ease-in-out color;
transition: 0.3s ease color;
}
.close:hover {
@@ -60,7 +60,7 @@
background: var(--color-4);
font-weight: bold;
border: 0;
transition: 0.35s ease-in-out background;
transition: 0.35s ease background;
cursor: pointer;
}