added new button lock

This commit is contained in:
2026-02-09 12:23:03 -06:00
parent 5670b7688d
commit dd757d30af
7 changed files with 133 additions and 14 deletions
+40
View File
@@ -22,3 +22,43 @@
border: 1px solid #cfcfcf;
background-color: #cfcfcf;
}
.buttonLock{
padding: 0.8rem;
position: absolute;
right: 0;
background-color: #d32f2f;
}
.buttonOpenLock{
padding: 0.8rem;
position: absolute;
right: 0;
background-color: #8cd32f;
}
.buttonOpenLock:hover{
background-color: #78b32c;
}
.buttonLock::after {
content: "";
display: inline-block;
width: 20px;
height: 20px;
background: url('/lock.svg');
filter: invert(1);
background-size: contain;
background-repeat: no-repeat;
}
.buttonOpenLock::after {
content: "";
display: inline-block;
width: 20px;
height: 20px;
background: url('/lock-open.svg');
filter: invert(1);
background-size: contain;
background-repeat: no-repeat;
}