-
-
Save dayvonjersen/f562ffd0fab0f25a9d2b to your computer and use it in GitHub Desktop.
single element hamburger
This file contains hidden or 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
<style> | |
.hamburger { | |
box-sizing: border-box; | |
width: 25px; | |
height: 20px; | |
border-top: 2px solid; | |
border-bottom: 2px solid; | |
position: relative; | |
} | |
.hamburger::before{ | |
content: ""; | |
position: absolute; | |
width: 100%; | |
top: calc(50% - 1px); | |
height: 2px; | |
background: currentColor; | |
} | |
</style> | |
<div class="hamburger"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment