Day # 19: Checkbox animation
Forms are a commonly used functionality for any website. As frontend developers we need to be able to handle their styling. One important element of forms is checkboxes. Styling them is not a particularly easy task, but as with any complex one, if we divide them into small and feasible activities, then we will accomplish our goal. The first thing we need to do is to include an input type checkbox: <input type="checkbox" id="good" class="toggle"> <label for="good" class="label"> <div class="ball"></div> </label> <span>Check!</span> Then we need to style the label: .label { po...