Fix Indentation

This commit is contained in:
shivapoudel 2015-03-17 21:30:35 +05:45
parent 68e3c9777d
commit 6cc9dd7a15
1 changed files with 11 additions and 11 deletions

View File

@ -127,11 +127,11 @@
} }
@mixin darkorlighttextshadow($a, $opacity: .8) { @mixin darkorlighttextshadow($a, $opacity: .8) {
@if lightness($a) >= 65% { @if lightness($a) >= 65% {
@include text_shadow(0, -1px, 0, rgba(0, 0, 0, $opacity)); @include text_shadow(0, -1px, 0, rgba(0, 0, 0, $opacity));
} @else { } @else {
@include text_shadow(0, 1px, 0, rgba(255, 255, 255, $opacity)); @include text_shadow(0, 1px, 0, rgba(255, 255, 255, $opacity));
} }
} }
/** /**
@ -228,14 +228,14 @@
margin-top: -.5em; margin-top: -.5em;
display: block; display: block;
-webkit-animation: spin 1s ease-in-out infinite; -webkit-animation: spin 1s ease-in-out infinite;
-moz-animation: spin 1s ease-in-out infinite; -moz-animation: spin 1s ease-in-out infinite;
animation: spin 1s ease-in-out infinite; animation: spin 1s ease-in-out infinite;
content: ""; content: "";
background: url(../images/icons/loader.svg) center center; background: url(../images/icons/loader.svg) center center;
background-size: cover; background-size: cover;
line-height: 1; line-height: 1;
text-align: center; text-align: center;
font-size: 2em; font-size: 2em;
color: rgba(#000,0.75); color: rgba(#000,0.75);
} }
} }