Skip to content

Instantly share code, notes, and snippets.

@brandedoutcast
Created January 29, 2018 13:19
Show Gist options
  • Save brandedoutcast/900d0c9fcf2fbfc645644738d2bd6e5d to your computer and use it in GitHub Desktop.
Save brandedoutcast/900d0c9fcf2fbfc645644738d2bd6e5d to your computer and use it in GitHub Desktop.
Dead Simple Spin Loader
.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