Created
June 17, 2018 12:27
-
-
Save eirikbacker/5f20fde909307882105d5a543fdec70a to your computer and use it in GitHub Desktop.
Single element search icon CSS - when you can not change the markup and want to make a icon out of <input type="submit">
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
.search-submit { /* Single element search icon, no pseudo elements */ | |
width: 15px; | |
height: 15px; | |
border: 2px solid; /* Not specifying color means border + box-shaddow gets currentColor (font color) */ | |
border-radius: 100%; | |
box-shadow: 6px 6px 0 -6px, 7px 7px 0 -6px; | |
background: none; | |
color: inherit; | |
font-size: 0; /* Hide text */ | |
padding: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment