<div id="container" class="gd">
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-1">
<input type="checkbox" class="checkbox" />
<div class="knob"></div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-2">
<input type="checkbox" class="checkbox" />
<div class="knob"></div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-3">
<input type="checkbox" class="checkbox" />
<div class="knob"></div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-4">
<input type="checkbox" class="checkbox" />
<div class="knob"></div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-5">
<input type="checkbox" class="checkbox" />
<div class="knob"><span></span></div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-6">
<input type="checkbox" class="checkbox" />
<div class="knob"></div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-7">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-8">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-pill" id="button-9">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-10">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span>YES</span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-11">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-12">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-13">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-14">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-15">
<input type="checkbox" class="checkbox" />
<div class="knob"></div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-16">
<input type="checkbox" class="checkbox" />
<div class="knob"></div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-17">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
<div class="toggle-button-container">
<div class="toggle-button gd">
<div class="btn btn-rect" id="button-18">
<input type="checkbox" class="checkbox" />
<div class="knob">
<span></span>
</div>
<div class="btn-bg"></div>
</div>
</div>
</div>
</div>
/* CSS rules are kept repetitive so that you can get CSS rules for each button easily :) */
* {
font-family: system-ui, system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
line-height: 1;
user-select: none;
tap-highlight-color: transparent;
}
body {
margin: 0;
background-color: #f1f9f9;
}
.gd {
display: grid;
}
#container {
width: 600px;
margin: 80px auto;
counter-reset: button-counter;
grid-template-columns: repeat(3, 1fr);
}
.toggle-button-container {
position: relative;
width: 200px;
height: 140px;
box-sizing: border-box;
}
.toggle-button {
position: relative;
height: 100px;
margin: 20px;
background-color: #fff;
box-shadow: 0 10px 20px -8px #c5d6d6;
border-radius: 4px;
}
.toggle-button:before {
counter-increment: button-counter;
content: counter(button-counter);
position: absolute;
right: 0;
bottom: 0;
color: #d7e3e3;
font-size: 12px;
line-height: 1;
padding: 5px;
}
.knob,
.btn-bg {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.btn {
position: relative;
top: 50%;
width: 74px;
height: 36px;
margin: -20px auto 0 auto;
overflow: hidden;
}
.btn.btn-pill,
.btn.btn-pill > .btn-bg {
border-radius: 100px;
}
.btn.btn-rect {
border-radius: 2px;
}
.checkbox {
position: relative;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
opacity: 0;
cursor: pointer;
z-index: 3;
}
.knob {
z-index: 2;
}
.btn-bg {
width: 100%;
background-color: #ebf7fc;
transition: 0.3s ease all;
z-index: 1;
}
/* Button 1 */
#button-1 .knob:before {
content: "YES";
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
background-color: #03a9f4;
border-radius: 50%;
transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}
#button-1 .checkbox:checked + .knob:before {
content: "NO";
left: 42px;
background-color: #f44336;
}
#button-1 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
#button-1 .knob,
#button-1 .knob:before,
#button-1 .btn-bg {
transition: 0.3s ease all;
}
/* Button 2 */
#button-2 .knob:before,
#button-2 .knob:after {
content: "YES";
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
background-color: #03a9f4;
border-radius: 50%;
transition: 0.3s ease all;
}
#button-2 .knob:before {
content: "YES";
}
#button-2 .knob:after {
content: "NO";
}
#button-2 .knob:after {
right: -28px;
left: auto;
background-color: #f44336;
}
#button-2 .checkbox:checked + .knob:before {
left: -28px;
}
#button-2 .checkbox:checked + .knob:after {
right: 4px;
}
#button-2 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 3 */
#button-3 .knob:before {
content: "YES";
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
background-color: #03a9f4;
border-radius: 50%;
transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
#button-3 .checkbox:active + .knob:before {
width: 46px;
border-radius: 100px;
}
#button-3 .checkbox:checked:active + .knob:before {
margin-left: -26px;
}
#button-3 .checkbox:checked + .knob:before {
content: "NO";
left: 42px;
background-color: #f44336;
}
#button-3 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 4 */
#button-4 .knob:before,
#button-4 .knob:after {
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
background-color: #03a9f4;
border-radius: 50%;
transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}
#button-4 .knob:before {
content: "YES";
}
#button-4 .knob:after {
content: "NO";
}
#button-4 .knob:after {
top: -28px;
right: 4px;
left: auto;
background-color: #f44336;
}
#button-4 .checkbox:checked + .knob:before {
top: -28px;
}
#button-4 .checkbox:checked + .knob:after {
top: 4px;
}
#button-4 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 5 */
#button-5 {
perspective: 60px;
overflow: visible;
}
#button-5 .knob:before,
#button-5 .knob span {
content: "";
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
border-radius: 50%;
transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}
#button-5 .knob:before {
background-color: #03a9f4;
}
#button-5 .knob span:before {
content: "YES";
}
#button-5 .knob:before,
#button-5 .btn-bg {
transform: rotateY(0);
transform-origin: center;
}
#button-5 .checkbox:checked + .knob:before,
#button-5 .checkbox:checked + .knob span {
left: 42px;
}
#button-5 .checkbox:checked + .knob:before {
transform: rotateY(180deg);
background-color: #f44336;
}
#button-5 .checkbox:checked + .knob span:before {
content: "NO";
left: 42px;
}
#button-5 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
transform: rotateY(-180deg);
}
#button-5 .knob,
#button-5 .knob:before,
#button-5 .btn-bg {
transition: 0.3s ease all;
}
/* Button 6 */
#button-6 {
overflow: visible;
}
#button-6 .knob:before {
content: "YES";
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
background-color: #03a9f4;
border-radius: 50%;
}
#button-6 .btn-bg,
#button-6 .knob,
#button-6 .knob:before {
transform: rotateZ(0);
transition: 0.4s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}
#button-6 .checkbox:checked + .knob {
transform: rotateZ(-180deg);
}
#button-6 .checkbox:checked + .knob:before {
content: "NO";
background-color: #f44336;
transform: rotateZ(180deg);
}
#button-6 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
transform: rotateZ(180deg);
}
/* Button 7 */
#button-7 .knob:before,
#button-7 .knob:after,
#button-7 .knob span {
position: absolute;
top: 4px;
width: 20px;
height: 10px;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
border-radius: 50%;
}
#button-7 .knob:before {
content: "YES";
left: 4px;
color: #fff;
opacity: 1;
}
#button-7 .knob:after {
content: "N";
left: 42px;
color: #fff;
width: 14px;
text-align: left;
padding: 9px 7px;
background-color: #f44336;
opacity: 0;
}
#button-7 .knob:before,
#button-7 .knob:after {
transition: 0.3s ease all;
z-index: 2;
}
#button-7 .knob span {
left: 4px;
background-color: #03a9f4;
transition: 0.2s ease all;
z-index: 1;
}
#button-7 .checkbox:checked + .knob:before {
opacity: 0;
}
#button-7 .checkbox:checked + .knob:after {
opacity: 1;
}
#button-7 .checkbox:checked + .knob span {
top: 14px;
left: 56px;
width: 2px;
height: 2px;
padding: 3px;
background-color: #fff;
z-index: 3;
}
#button-7 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 8 */
#button-8 .knob:before,
#button-8 .knob:after,
#button-8 .knob span {
position: absolute;
top: 4px;
width: 20px;
height: 10px;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
border-radius: 50%;
transition: 0.3s ease all;
}
#button-8 .knob:before {
content: "YES";
color: #fff;
left: 4px;
}
#button-8 .knob:after {
content: "NO";
left: 42px;
color: #fff;
background-color: #f44336;
opacity: 0;
}
#button-8 .knob:before,
#button-8 .knob:after {
z-index: 2;
}
#button-8 .knob span {
left: 4px;
background-color: #03a9f4;
z-index: 1;
}
#button-8 .checkbox:checked + .knob:before {
opacity: 0;
}
#button-8 .checkbox:checked + .knob:after {
opacity: 1;
}
#button-8 .checkbox:checked + .knob span {
background-color: #fcebeb;
transform: scale(4);
}
/* Button 9 */
#button-9 .knob:before,
#button-9 .knob:after,
#button-9 .knob span {
position: absolute;
top: 4px;
width: 20px;
height: 10px;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
border-radius: 50%;
transition: 0.4s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}
#button-9 .knob:before {
content: "YES";
left: 4px;
}
#button-9 .knob:after {
content: "NO";
right: -24px;
}
#button-9 .knob:before,
#button-9 .knob:after {
color: #fff;
z-index: 2;
}
#button-9 .knob span {
left: 4px;
background-color: #03a9f4;
z-index: 1;
}
#button-9 .checkbox:checked + .knob:before {
left: -24px;
}
#button-9 .checkbox:checked + .knob:after {
right: 4px;
}
#button-9 .checkbox:checked + .knob span {
left: 42px;
background-color: #f44336;
}
#button-9 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 10 */
#button-10 .knob:before,
#button-10 .knob:after,
#button-10 .knob span {
position: absolute;
top: 4px;
width: 20px;
height: 10px;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
border-radius: 2px;
transition: 0.3s ease all;
}
#button-10 .knob:before {
content: "";
left: 4px;
background-color: #03a9f4;
}
#button-10 .knob:after {
content: "NO";
right: 4px;
color: #4e4e4e;
}
#button-10 .knob span {
display: inline-block;
left: 4px;
color: #fff;
z-index: 1;
}
#button-10 .checkbox:checked + .knob span {
color: #4e4e4e;
}
#button-10 .checkbox:checked + .knob:before {
left: 42px;
background-color: #f44336;
}
#button-10 .checkbox:checked + .knob:after {
color: #fff;
}
#button-10 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 11 */
#button-11 {
overflow: visible;
}
#button-11 .knob {
perspective: 70px;
}
#button-11 .knob:before,
#button-11 .knob:after,
#button-11 .knob span {
position: absolute;
top: 4px;
border-radius: 2px;
}
#button-11 .knob:before,
#button-11 .knob:after {
width: 20px;
height: 10px;
color: #4e4e4e;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
}
#button-11 .knob:before {
content: "YES";
left: 4px;
}
#button-11 .knob:after {
content: "NO";
right: 4px;
}
#button-11 .knob span {
right: 4px;
width: 33px;
height: 28px;
background-color: #03a9f4;
transform: rotateY(0);
transform-origin: 0% 50%;
transition: 0.6s ease all;
z-index: 1;
}
#button-11 .checkbox:checked + .knob span {
transform: rotateY(-180deg);
background-color: #f44336;
}
#button-11 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 12 */
#button-12 .knob:before,
#button-12 .knob:after,
#button-12 .knob span,
#button-12 .knob span:before,
#button-12 .knob span:after {
position: absolute;
top: 4px;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
border-radius: 2px;
transition: 0.3s ease all;
}
#button-12 .knob:before {
content: "YES";
left: 4px;
}
#button-12 .knob:after {
content: "NO";
right: 4px;
}
#button-12 .knob:before,
#button-12 .knob:after {
width: 27px;
height: 10px;
color: #4e4e4e;
padding: 9px 3px;
z-index: 1;
}
#button-12 .knob span {
display: inline-block;
z-index: 2;
}
#button-12 .knob span,
#button-12 .knob span:before,
#button-12 .knob span:after {
width: 20px;
height: 10px;
padding: 9px 4px;
}
#button-12 .knob span:before,
#button-12 .knob span:after {
content: "";
top: 0;
}
#button-12 .knob span:before {
left: -28px;
background-color: #f44336;
}
#button-12 .knob span:after {
right: -42px;
background-color: #03a9f4;
}
#button-12 .checkbox:checked + .knob span:before {
left: 4px;
}
#button-12 .checkbox:checked + .knob span:after {
right: -74px;
}
#button-12 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 13 */
#button-13 .knob:before,
#button-13 .knob:after,
#button-13 .knob span {
position: absolute;
top: 4px;
width: 20px;
height: 10px;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
border-radius: 2px;
transition: 0.3s ease all;
}
#button-13 .knob:before,
#button-13 .knob:after {
color: #4e4e4e;
z-index: 1;
}
#button-13 .knob:before {
content: "YES";
left: 4px;
}
#button-13 .knob:after {
content: "NO";
right: 4px;
}
#button-13 .knob span {
width: 25px;
left: 37px;
background-color: #03a9f4;
z-index: 2;
}
#button-13 .checkbox:checked + .knob span {
left: 4px;
background-color: #f44336;
}
#button-13 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 14 */
#button-14 .knob:before,
#button-14 .knob:after,
#button-14 .knob span:before,
#button-14 .knob span:after {
position: absolute;
top: 4px;
width: 20px;
height: 10px;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
border-radius: 2px;
transition: 0.3s ease all;
}
#button-14 .knob:before,
#button-14 .knob:after {
color: #4e4e4e;
z-index: 1;
}
#button-14 .knob:before {
content: "YES";
left: 4px;
}
#button-14 .knob:after {
content: "NO";
right: 4px;
}
#button-14 .knob span {
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
}
#button-14 .knob span:before {
left: 4px;
top: -28px;
background-color: #f44336;
}
#button-14 .knob span:after {
top: 4px;
left: 39px;
background-color: #03a9f4;
}
#button-14 .knob span:before,
#button-14 .knob span:after {
content: "";
width: 23px;
z-index: 2;
}
#button-14 .checkbox:checked + .knob span:before {
top: 4px;
}
#button-14 .checkbox:checked + .knob span:after {
top: -28px;
}
#button-14 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 15 */
#button-15 .knob:before,
#button-15 .knob:after {
position: absolute;
top: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
opacity: 1;
border-radius: 2px;
transform: scale(1);
transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}
#button-15 .knob:before {
content: "YES";
left: 4px;
background-color: #03a9f4;
}
#button-15 .knob:after {
content: "NO";
right: 4px;
opacity: 0;
transform: scale(4);
background-color: #f44336;
}
#button-15 .checkbox:checked + .knob:before {
opacity: 0;
transform: scale(4);
}
#button-15 .checkbox:checked + .knob:after {
opacity: 1;
transform: scale(1);
}
#button-15 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 16 */
#button-16 .knob:before {
content: "YES";
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
background-color: #03a9f4;
border-radius: 2px;
transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
#button-16 .checkbox:active + .knob:before {
width: 46px;
}
#button-16 .checkbox:checked:active + .knob:before {
margin-left: -26px;
}
#button-16 .checkbox:checked + .knob:before {
content: "NO";
left: 42px;
background-color: #f44336;
}
#button-16 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 17 */
#button-17 .knob:before,
#button-17 .knob span {
content: "YES";
position: absolute;
top: 4px;
left: 4px;
width: 20px;
height: 10px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
padding: 9px 4px;
}
#button-17 .knob:before {
transition: 0.3s ease all, left 0.5s cubic-bezier(0.18, 0.89, 0.35, 1.15);
z-index: 2;
}
#button-17 .knob span {
background-color: #03a9f4;
border-radius: 2px;
transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
z-index: 1;
}
#button-17 .checkbox:checked + .knob:before {
content: "NO";
left: 42px;
}
#button-17 .checkbox:checked + .knob span {
left: 42px;
background-color: #f44336;
}
#button-17 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
/* Button 18 */
#button-18 .knob:before,
#button-18 .knob span {
content: "YES";
position: absolute;
top: 4px;
left: 4px;
color: #fff;
font-size: 10px;
font-weight: bold;
text-align: center;
line-height: 1;
background-color: #03a9f4;
border-radius: 2px;
}
#button-18 .knob:before {
top: 50%;
left: 8px;
width: 20px;
height: 10px;
margin-top: -5px;
background-color: transparent;
z-index: 2;
}
#button-18 .knob span {
width: 20px;
height: 10px;
padding: 9px 4px;
transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
z-index: 1;
}
#button-18 .checkbox:active + .knob:before {
left: 10px;
width: 46px;
height: 4px;
color: transparent;
margin-top: -2px;
background-color: #0095d8;
transition: 0.3s ease all;
overflow: hidden;
}
#button-18 .checkbox:active + .knob span {
width: 58px;
}
#button-18 .checkbox:checked:active + .knob:before {
left: auto;
right: 10px;
background-color: #d80000;
}
#button-18 .checkbox:checked:active + .knob span {
margin-left: -38px;
}
#button-18 .checkbox:checked + .knob:before {
content: "NO";
left: 47px;
}
#button-18 .checkbox:checked + .knob span {
left: 42px;
background-color: #f44336;
}
#button-18 .checkbox:checked ~ .btn-bg {
background-color: #fcebeb;
}
// No JavaScript
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.