scrimba
Note at 2:38
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 2:38
AboutCommentsNotes
Note at 2:38
Expand for more info
index.css
run
preview
console
html, body {
height: 100%;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
background: #C6C9DC;
}

:root {
--toggle-switch-bg: #232428;
--toggle-border: #232428;
--toggle-bg: #fff;
}

.toggle-wrap {
position: relative;
border: solid var(--toggle-border);
border-radius: 60px;
height: 70px;
width: 180px;
background: var(--toggle-bg);
}

.toggle-checkbox {
height: 60px;
width: 50px;
margin: 0;
position: absolute;
z-index: 1;
/* optionally hide the checkbox */
opacity: 0;
}

.toggle-switch {
background: var(--toggle-switch-bg);
height: 60px;
width: 60px;
border-radius: 40px;
position: absolute;
top: 5px;
left: 6px;
transition: left 1s ease-in-out;
}

.toggle-checkbox:checked + .toggle-switch{
left: 115px;
}
Console
/index.html
LIVE