2025-10-06 17:26:14 -06:00
|
|
|
.groupInformation {
|
|
|
|
|
display: flex;
|
|
|
|
|
max-width: 500px;
|
|
|
|
|
min-width: 40px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: end;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.informationButton {
|
|
|
|
|
text-align: center;
|
|
|
|
|
appearance: none;
|
|
|
|
|
-webkit-appearance: none;
|
|
|
|
|
-moz-appearance: none;
|
|
|
|
|
border: 1px solid #cfcfcf;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
max-width: 40px;
|
|
|
|
|
min-width: 40px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.informationButton:hover {
|
|
|
|
|
border: 1px solid #cfcfcf;
|
|
|
|
|
background-color: #cfcfcf;
|
|
|
|
|
}
|
2026-02-09 12:23:03 -06:00
|
|
|
|
|
|
|
|
.buttonLock{
|
|
|
|
|
padding: 0.8rem;
|
|
|
|
|
position: absolute;
|
2026-02-27 18:11:03 -06:00
|
|
|
right: 100px;
|
2026-02-09 12:23:03 -06:00
|
|
|
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;
|
2026-02-27 18:11:03 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media(max-height:800px) {
|
|
|
|
|
.buttonLock {
|
|
|
|
|
padding: 0.5rem;
|
|
|
|
|
}
|
2026-02-09 12:23:03 -06:00
|
|
|
}
|