mirror of
https://github.com/xoseperez/espurna.git
synced 2026-03-23 16:47:08 +01:00
19 lines
444 B
CSS
19 lines
444 B
CSS
input[name=thermostatMode].checkbox-toggle::before {
|
|
--toggle-elem-size: 4em;
|
|
--toggle-bg-size: 3em;
|
|
}
|
|
|
|
input[name=thermostatMode].checkbox-toggle {
|
|
--toggle-color-off: hsl(0, 100%, 50%);
|
|
--toggle-color-on: hsl(180, 100%, 50%);
|
|
}
|
|
|
|
input[name=thermostatMode].checkbox-toggle::before {
|
|
content: "HEATER";
|
|
}
|
|
|
|
input[name=thermostatMode].checkbox-toggle:checked::before {
|
|
--toggle-text-color: black;
|
|
content: "COOLER";
|
|
}
|