Created
October 23, 2015 20:58
-
-
Save puiutucutu/65be5f2c0faeccc862ac to your computer and use it in GitHub Desktop.
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
.circle { | |
width : 80px; | |
height : 80px; | |
border-radius : 40px; | |
border : solid 10px rgba(255, 255, 255, 0.2); | |
border-top-color : #FFF; | |
-webkit-box-sizing: border-box; | |
-webkit-animation : spin 1s infinite linear; | |
} | |
@-webkit-keyframes spin { | |
100% { | |
-webkit-transform: rotate(360deg); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment