mirror of
https://github.com/ae-utbm/sith.git
synced 2026-08-26 07:09:16 +00:00
38 lines
435 B
SCSS
38 lines
435 B
SCSS
fieldset.star {
|
|
border: none;
|
|
|
|
label {
|
|
display: inline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.checked {
|
|
color: orange;
|
|
}
|
|
|
|
.unchecked {
|
|
color: gray;
|
|
}
|
|
|
|
.unchecked.hovered {
|
|
color: #FFD700;
|
|
}
|
|
|
|
.removed {
|
|
color: red;
|
|
}
|
|
|
|
input[type="radio"] {
|
|
display: none;
|
|
}
|
|
|
|
label:first-child {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
&:has(input:required:invalid) {
|
|
border: 1px solid;
|
|
border-color: #c00000;
|
|
}
|
|
|
|
} |