Last active
January 18, 2017 07:43
-
-
Save tobiashm/8f5ca82b326addbaeaf84187546177eb to your computer and use it in GitHub Desktop.
Untitled
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
@keyframes radar { | |
0% { transform: rotate(0deg); } | |
100% { transform: rotate(360deg); } | |
} | |
#wifi { | |
width: 100px; height: 100px; | |
border: double 100px; | |
border-radius: 200px; | |
border-color: black transparent transparent; | |
animation: radar 3s linear infinite; | |
} | |
#wifi::before { | |
content: ''; | |
display: block; | |
width: 0; height: 0; | |
border: solid 20px black; | |
border-radius: 20px; | |
position: relative; | |
top: 30px; left: 30px; | |
} |
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
<div id=wifi></div> |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment