saw how checkbox images were called in css variables, so updated pageImgURL variable.

This commit is contained in:
Trent White 2016-02-19 17:39:18 -05:00
parent bd0357b637
commit 18bbefee1c
4 changed files with 4 additions and 4 deletions

View File

@ -50,7 +50,7 @@ $critical: #ed2e18;
// ------------------------- // -------------------------
$body-bg: rgb(20,20,20); $body-bg: rgb(20,20,20);
$page-bg: $dark-2; $page-bg: $dark-2;
$page-img-bg: url('../img/angle_gradient_rev.png'); $pageImageUrl: '../img/angle_gradient_rev.png';
$body-color: $gray-4; $body-color: $gray-4;
$text-color: $gray-4; $text-color: $gray-4;

View File

@ -56,7 +56,7 @@ $critical: #EC2128;
$body-bg: $white; $body-bg: $white;
$page-bg: $white; $page-bg: $white;
$page-img-bg: url('../img/angle_gradient_light_rev.png'); $pageImageUrl: '../img/angle_gradient_light_rev.png';
$body-color: $gray-1; $body-color: $gray-1;
$text-color: $gray-1; $text-color: $gray-1;

View File

@ -20,7 +20,7 @@
.page-container { .page-container {
background-color: $page-bg; background-color: $page-bg;
background-image: $page-img-bg; /* this is an experiment */ background-image: url($pageImageUrl); /* this is an experiment */
background-position: left; background-position: left;
background-size: 60%; background-size: 60%;
background-repeat: no-repeat; background-repeat: no-repeat;

View File

@ -1,5 +1,5 @@
.login-container { .login-container {
background-image: $page-img-bg; /* this is an experiment */ background-image: url($pageImageUrl); /* this is an experiment */
background-position: left; background-position: left;
background-size: 60%; background-size: 60%;
background-repeat: no-repeat; background-repeat: no-repeat;