Fix colors on the home page

This commit is contained in:
Ray Schamp 2015-08-10 10:28:53 -04:00
parent 00f9fe4e45
commit e31e10b422
3 changed files with 17 additions and 4 deletions

View file

@ -1226,8 +1226,8 @@ body.page-home > main > header {
#home {
padding-top: 0; }
#home > header {
background: url(../images/editor.png);
background-size: cover;
background-image: linear-gradient(to bottom, rgba(63, 89, 117, 0) 67%, #3f5975 33%), url(../images/editor.png);
background-size: cover, cover;
padding-top: 3.75em; }
#home > header h1 {
font-weight: normal; }
@ -1350,6 +1350,10 @@ body.page-home > main > header {
-moz-osx-font-smoothing: grayscale;
font-size: 1.5em;
padding-right: 0.375em; }
#home > header .bottom-row > div > aside a {
color: #4ABFF9; }
#home > header .bottom-row > div > aside a:hover {
color: #fff; }
#home > header .bottom-row > div > a {
float: left;
display: block;

View file

@ -16,8 +16,8 @@ body.page-home > main > header {
padding-top: 0;
> header {
background: url(../images/editor.png);
background-size: cover;
background-image: linear-gradient(to bottom, rgba($dark-blue, 0) 67%, rgba($dark-blue, 1) 33%), url(../images/editor.png);
background-size: cover, cover;
padding-top: $vertical-base * 10;
h1 {
@ -92,6 +92,14 @@ body.page-home > main > header {
font-size: 1.5 * $base-font-size;
padding-right: $vertical-base;
}
a {
color: $bright-blue-dark-bg;
&:hover {
color: $white;
}
}
}
> a {

View file

@ -24,6 +24,7 @@ $base-z-index: 0;
$white: #fff;
$blue: #21b4f0;
$bright-blue: #24a3ec;
$bright-blue-dark-bg: #4ABFF9;
$light-blue: #d7e5f3;
$dark-blue: #3f5975;
$dark-gray: #58595b;