Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created April 3, 2013 07:52
Show Gist options
  • Save LeaVerou/5299273 to your computer and use it in GitHub Desktop.
Save LeaVerou/5299273 to your computer and use it in GitHub Desktop.
Just for fun: Wifi icon with pure CSS
/**
* 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;
}
<div class="wifi" /></div>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
@danse
Copy link

danse commented Apr 5, 2013

nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment