Last active
August 29, 2015 14:21
-
-
Save cimmanon/1daef586fe28719caf8c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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 class="spinner asset-detail-preview__spinner"></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
// ---- | |
// Sass (v3.4.13) | |
// Compass (v1.0.3) | |
// ---- | |
@mixin spinner($color) { | |
min-width: 24px; | |
min-height: 24px; | |
&:before { | |
content: 'Loading…'; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
width: 16px; | |
height: 16px; | |
margin-top: -10px; | |
margin-left: -10px; | |
} | |
&:not(:required):before { | |
content: ''; | |
border-radius: 50%; | |
border: 2px solid rgba($color, .3); | |
border-top-color: rgba($color, .6); | |
animation: spinner .6s linear infinite; | |
-webkit-animation: spinner .6s linear infinite; | |
} | |
@keyframes spinner { | |
to {transform: rotate(360deg);} | |
} | |
@-webkit-keyframes spinner { | |
to {-webkit-transform: rotate(360deg);} | |
} | |
} | |
.asset-detail-preview__spinner { | |
@include spinner(blue); | |
} |
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
@charset "UTF-8"; | |
.asset-detail-preview__spinner { | |
min-width: 24px; | |
min-height: 24px; | |
} | |
.asset-detail-preview__spinner:before { | |
content: 'Loading…'; | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
width: 16px; | |
height: 16px; | |
margin-top: -10px; | |
margin-left: -10px; | |
} | |
.asset-detail-preview__spinner:not(:required):before { | |
content: ''; | |
border-radius: 50%; | |
border: 2px solid rgba(0, 0, 255, 0.3); | |
border-top-color: rgba(0, 0, 255, 0.6); | |
animation: spinner .6s linear infinite; | |
-webkit-animation: spinner .6s linear infinite; | |
} | |
@keyframes spinner { | |
to { | |
transform: rotate(360deg); | |
} | |
} | |
@-webkit-keyframes spinner { | |
to { | |
-webkit-transform: rotate(360deg); | |
} | |
} |
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 class="spinner asset-detail-preview__spinner"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment