Removed light gray as it isn't used

This commit is contained in:
Barry Clark 2014-06-01 18:20:29 -04:00
parent e9a65e6c3f
commit 4b6808430d
2 changed files with 6 additions and 7 deletions

View file

@ -11,8 +11,7 @@ $black: #000;
$darkerGray: #222; $darkerGray: #222;
$darkGray: #333; $darkGray: #333;
$gray: #666; $gray: #666;
$lightGray: #aaa; $lightGray: #eee;
$lighterGray: #eee;
$white: #fff; $white: #fff;
// Font stacks // Font stacks

View file

@ -118,11 +118,11 @@ img {
// Specify the color of the selection // Specify the color of the selection
::-moz-selection { ::-moz-selection {
color: $black; color: $black;
background: $lighterGray; background: $lightGray;
} }
::selection { ::selection {
color: $black; color: $black;
background: $lighterGray; background: $lightGray;
} }
// Nicolas Gallagher's micro clearfix hack // Nicolas Gallagher's micro clearfix hack
@ -151,7 +151,7 @@ img {
.masthead { .masthead {
padding: 20px 0; padding: 20px 0;
border-bottom: 1px solid $lighterGray; border-bottom: 1px solid $lightGray;
@include mobile { @include mobile {
text-align: center; text-align: center;
@ -238,7 +238,7 @@ nav {
.posts > .post { .posts > .post {
padding-bottom: 2em; padding-bottom: 2em;
border-bottom: 1px solid $lighterGray; border-bottom: 1px solid $lightGray;
} }
.posts > .post:last-child { .posts > .post:last-child {
@ -260,7 +260,7 @@ nav {
.wrapper-footer { .wrapper-footer {
margin-top: 50px; margin-top: 50px;
border-top: 1px solid #ddd; border-top: 1px solid #ddd;
background-color: $lighterGray; background-color: $lightGray;
} }
footer { footer {