Created
January 18, 2019 13:30
-
-
Save HilmiZul/22dd4574ce59615424035c001859adbc 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
| </style> | |
| .rect { | |
| position: absolute; | |
| top: 50%; | |
| left: 50%; | |
| width: 120px; | |
| height: 120px; | |
| margin:-60px 0 0 -60px; | |
| animation:spin 3s linear infinite; | |
| border-radius: 20%; | |
| background: rgb(200, 10, 153); | |
| } | |
| @keyframes spin { | |
| 100% { | |
| transform:rotate(360deg); | |
| } | |
| } | |
| </style> | |
| <div class="rect"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment