This commit is contained in:
2024-05-13 13:30:57 +07:00
parent fb29ea215a
commit 4e9930841c
3 changed files with 144 additions and 8 deletions

View File

@@ -220,11 +220,10 @@ a {
/*width: calc(100% - 33px);*/
}
.sub-menu {
padding: 13px 13px 13px 45px;
position: relative;
a {
display: block;
margin-bottom: 15px;
padding: 10px 10px 10px 45px;
position: relative;
&:hover {
text-decoration: underline;
@@ -232,6 +231,8 @@ a {
&.current {
font-weight: 700;
text-decoration: none;
background: #22a2ff;
border-radius: 4px;
}
&:last-child {
margin: 0;
@@ -1318,3 +1319,70 @@ input[type="radio"] {
width: 100% !important;
margin-top: 10px;
}
#overlay {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.6);
z-index: 9;
display: none;
&.active {
display: block;
}
}
.status-notificatiom {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #fff;
width: 550px;
height: 240px;
box-shadow: 0px 1px 1px 0px #0000001a;
border-radius: 15px;
display: none;
z-index: 9999;
&.active {
display: block;
}
.icon-close {
position: absolute;
right: 10px;
top: 10px;
width: 30px;
height: 30px;
background: #ececec;
line-height: 30px;
text-align: center;
border-radius: 50%;
}
.content {
height: 100%;
}
.fa-check {
width: 70px;
height: 70px;
background: #52c41a;
color: #fff;
font-size: 50px;
text-align: center;
line-height: 70px;
border-radius: 50%;
}
b {
font-size: 24px;
font-weight: 400;
margin-top: 5px;
}
p {
color: #00000073;
}
.fa-triangle-exclamation {
font-size: 70px;
color: #ffc53d;
}
}