新增了安全须知弹窗

This commit is contained in:
2024-05-21 23:10:08 +08:00
parent 3314fab761
commit d65addd516
2 changed files with 99 additions and 27 deletions

View File

@@ -684,3 +684,51 @@ select {
background-color: #ffe99d;
color: #000;
}
.settings-window {
position: fixed;
top: 10%;
bottom: 10%;
height: 500px;
left: 10%;
right: 10%;
background-color: #171717;
border-radius: 20px;
border: #ffe99d 2px solid;
z-index: 100;
padding: 20px;
}
.tag {
background: #fce9a7;
color: #000;
border-radius: 5px;
}
.settings-window-bg {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 99;
}
.animated-notice {
opacity: 0;
animation: fadeIn 1s ease-in-out forwards;
animation-delay: 1.5s;
}
@keyframes fadeIn {
to {
opacity: 1;
}
}
b {
color: #fce9a7;
}