added new button lock
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user