Commit 18bbefee by Trent White

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

parent bd0357b6
...@@ -50,7 +50,7 @@ $critical: #ed2e18; ...@@ -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;
......
...@@ -56,7 +56,7 @@ $critical: #EC2128; ...@@ -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;
......
...@@ -20,7 +20,7 @@ ...@@ -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;
......
.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;
......
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