mirror of
https://github.com/Grasscutters/Cultivation.git
synced 2025-12-15 00:24:45 +01:00
26 lines
430 B
CSS
26 lines
430 B
CSS
.Checkbox input[type="checkbox"] {
|
|
display: none;
|
|
}
|
|
|
|
.CheckboxDisplay {
|
|
height: 20px;
|
|
width: 20px;
|
|
|
|
border: 2px solid #cecece;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.CheckboxDisplay:hover {
|
|
cursor: pointer;
|
|
border-color: #aaaaaa;
|
|
}
|
|
|
|
.CheckboxDisplay img {
|
|
height: 100%;
|
|
filter: invert(99%) sepia(0%) saturate(1188%) hue-rotate(186deg) brightness(97%) contrast(67%)
|
|
}
|
|
|
|
.Checkbox label {
|
|
display: flex;
|
|
flex-direction: row;
|
|
} |