Created
April 3, 2013 07:52
-
-
Save LeaVerou/5299273 to your computer and use it in GitHub Desktop.
Just for fun: Wifi icon with pure CSS
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
/** | |
* Just for fun: Wifi icon with pure CSS | |
*/ | |
.wifi { | |
padding: 20px; | |
} | |
.wifi, .wifi:before { | |
display: inline-block; | |
border: 60px double transparent; | |
border-top-color: currentColor; | |
border-radius: 50%; | |
} | |
.wifi:before { | |
content: ''; | |
width: 0; height: 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
<div class="wifi" /></div> |
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
// alert('Hello world!'); |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
nice