Neumorphic Toggle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<label class="label"> | |
<div class="toggle"> | |
<input class="toggle-state" type="checkbox" name="check" value="check" /> | |
<div class="indicator"></div> | |
</div> | |
<div class="label-text">no more emails plz</div> | |
</label> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
height: 100vh; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
overflow: hidden; | |
font-family: 'IBM Plex Sans Condensed', sans-serif; | |
font-weight: 300; | |
background-color: #ecf0f3; | |
} | |
.label { | |
display: inline-flex; | |
align-items: center; | |
cursor: pointer; | |
color: #394a56; | |
} | |
.label-text { | |
margin-left: 16px; | |
} | |
.toggle { | |
isolation: isolate; | |
position: relative; | |
height: 30px; | |
width: 60px; | |
border-radius: 15px; | |
overflow: hidden; | |
box-shadow: | |
-8px -4px 8px 0px #ffffff, | |
8px 4px 12px 0px #d1d9e6, | |
4px 4px 4px 0px #d1d9e6 inset, | |
-4px -4px 4px 0px #ffffff inset; | |
} | |
.toggle-state { | |
display: none; | |
} | |
.indicator { | |
height: 100%; | |
width: 200%; | |
background: #ecf0f3; | |
border-radius: 15px; | |
transform: translate3d(-75%, 0, 0); | |
transition: transform 0.4s cubic-bezier(0.85, 0.05, 0.18, 1.35); | |
box-shadow: | |
-8px -4px 8px 0px #ffffff, | |
8px 4px 12px 0px #d1d9e6; | |
} | |
.toggle-state:checked ~ .indicator { | |
transform: translate3d(25%, 0, 0); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Sans+Condensed&display=swap" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment