Merge pull request #131 from dmyers/text-shadow

Changed text shadows to use mixin
This commit is contained in:
Robert Lord 2014-11-13 14:53:35 -06:00
commit c74bf7b50e

View file

@ -483,7 +483,7 @@ html, body {
aside { aside {
padding-top: 1em; padding-top: 1em;
padding-bottom: 1em; padding-bottom: 1em;
text-shadow: 0 1px 0 lighten($aside-notice-bg, 15%); @include text-shadow(0 1px 0 lighten($aside-notice-bg, 15%));
margin-top: 1.5em; margin-top: 1.5em;
margin-bottom: 1.5em; margin-bottom: 1.5em;
background: $aside-notice-bg; background: $aside-notice-bg;
@ -491,12 +491,12 @@ html, body {
&.warning { &.warning {
background-color: $aside-warning-bg; background-color: $aside-warning-bg;
text-shadow: 0 1px 0 lighten($aside-warning-bg, 15%); @include text-shadow(0 1px 0 lighten($aside-warning-bg, 15%));
} }
&.success { &.success {
background-color: $aside-success-bg; background-color: $aside-success-bg;
text-shadow: 0 1px 0 lighten($aside-success-bg, 15%); @include text-shadow(0 1px 0 lighten($aside-success-bg, 15%));
} }
} }
@ -523,7 +523,7 @@ html, body {
margin: -2px; margin: -2px;
border-radius: 4px; border-radius: 4px;
border: 1px solid #F7E633; border: 1px solid #F7E633;
text-shadow: 1px 1px 0 #666; @include text-shadow(1px 1px 0 #666);
@include background(linear-gradient(bottom right, #F7E633 0%, #F1D32F 100%)); @include background(linear-gradient(bottom right, #F7E633 0%, #F1D32F 100%));
} }
} }