Skip to content

Instantly share code, notes, and snippets.

@SteinRobert
Created July 7, 2019 20:52
Show Gist options
  • Select an option

  • Save SteinRobert/6df9293e6e2f35e1b7f2c118919fd37f to your computer and use it in GitHub Desktop.

Select an option

Save SteinRobert/6df9293e6e2f35e1b7f2c118919fd37f to your computer and use it in GitHub Desktop.
<style scoped>
label {
display: inline-block;
width: 120px;
}
.toggle {
border: 2px solid black;
border-radius: 12px;
display: inline-block;
height: 16px;
position: relative;
transition: all;
vertical-align: middle;
width: 45px;
}
.toggle:after {
background-color: black;
border-radius: 50%;
content: '';
display: block;
position: absolute;
right: 32px;
height: 10px;
top: 3px;
transition: all 400ms;
width: 10px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment