Clear up color variable usage in the Scss
parent
3d5bee2205
commit
e9a65e6c3f
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
$blue: #4183C4;
|
$blue: #4183C4;
|
||||||
$orange: #D26911;
|
|
||||||
|
|
||||||
// Grays
|
// Grays
|
||||||
$black: #000;
|
$black: #000;
|
||||||
|
|
|
@ -197,7 +197,7 @@ img {
|
||||||
|
|
||||||
.site-description {
|
.site-description {
|
||||||
margin: -5px 0 0 0;
|
margin: -5px 0 0 0;
|
||||||
color: #777;
|
color: $gray;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
|
||||||
@include mobile {
|
@include mobile {
|
||||||
|
@ -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: #eee;
|
background-color: $lighterGray;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
|
|
@ -174,7 +174,7 @@ img {
|
||||||
|
|
||||||
.site-description {
|
.site-description {
|
||||||
margin: -5px 0 0 0;
|
margin: -5px 0 0 0;
|
||||||
color: #777777;
|
color: #666666;
|
||||||
font-size: 16px; }
|
font-size: 16px; }
|
||||||
@media screen and (max-width: 520px) {
|
@media screen and (max-width: 520px) {
|
||||||
.site-description {
|
.site-description {
|
||||||
|
|
Loading…
Reference in New Issue