switch-final.txt
HTML document, ASCII text
1<!DOCTYPE html> 2<html> 3 4<body> 5<style> 6input[type=checkbox].switch { 7-webkit-appearance: none; 8-moz-appearance: none; 9appearance: none; 10position: relative; 11width: 30px; 12height: 16px; 13} 14input[type=checkbox].switch::before { 15top: 1px; 16left: 1px; 17position: relative; 18display: block; 19background: red; 20content: ""; 21color: transparent; 22width: 14px; 23height: 14px; 24} 25input[type=checkbox].switch:checked::before { 26left: unset; 27right: 1px; 28} 29</style> 30<input type="checkbox" class="switch" /> 31</body> 32 33</html>