Commit 28283428 authored by Derek Myers's avatar Derek Myers

Changed text shadows to use mixin

parent 482f0b99
......@@ -483,7 +483,7 @@ html, body {
aside {
padding-top: 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-bottom: 1.5em;
background: $aside-notice-bg;
......@@ -491,12 +491,12 @@ html, body {
&.warning {
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 {
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;
border-radius: 4px;
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%));
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment