Created
January 29, 2018 13:19
-
-
Save brandedoutcast/900d0c9fcf2fbfc645644738d2bd6e5d to your computer and use it in GitHub Desktop.
Dead Simple Spin Loader
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
.loader | |
display flex | |
justify-content center | |
align-items center | |
&.fullscreen | |
min-height 100vh | |
&:after | |
content "" | |
width 2.5em | |
height 2.5em | |
border 0.5em solid lightgray | |
border-radius 50% | |
border-top 0.5em solid black | |
animation spin 1s linear infinite | |
@keyframes spin | |
0% | |
transform rotate(0deg) | |
25%, 75% | |
border-color lightgray | |
border-width 0.75em | |
transform rotate(180deg) | |
border-color black | |
50% | |
border-width 1em | |
100% | |
transform rotate(360deg) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment