Changes for 2.8.3

This commit is contained in:
khr 2019-05-22 19:31:14 -07:00
parent 95497e252e
commit fdb5d33445
1 changed files with 35 additions and 6 deletions

View File

@ -6,7 +6,9 @@ $ui-base-lighter-color: darken($ui-base-color, 40%); // Lighter darkest
$ui-secondary-color: darken($ui-base-color, 15%); // "lightest" $ui-secondary-color: darken($ui-base-color, 15%); // "lightest"
$ui-primary-color: #5f4770; // "lighter" $ui-primary-color: #5f4770; // "lighter"
$ui-highlight-color: #5f4770; // "vibrant" $ui-highlight-color: #5f4770; // "vibrant"
$dark-text-color: #ca748f; $dark-text-color: #333;
$darker-text-color: #333;
$secondary-text-color: #333;
$primary-text-color: #333; $primary-text-color: #333;
$header-color: $ui-primary-color; $header-color: $ui-primary-color;
@ -24,25 +26,43 @@ $ui-base-lighter-color: darken($ui-base-color, 40%); // Lighter darkest
$gold-star: #dd9d08; $gold-star: #dd9d08;
.landing-page__hero { .landing .hero-widget__img {
position:relative; position:relative;
overflow:visible;
} }
.landing-page__hero::before { .landing .hero-widget__img::before {
content: " "; content: " ";
display:block; display:block;
background-image:url("../images/handshake.png"); background-image:url("../images/handshake.png");
background-size:100% auto; background-size:100% auto;
background-repeat:no-repeat; background-repeat:no-repeat;
background-position:bottom center; background-position:bottom center;
width:600px; width:465px;
height:600px; height:300px;
position:absolute; position:absolute;
bottom:-64px; bottom:-50px;
} }
/* about.scss */ /* about.scss */
.public-layout .header .nav-link {
color: white;
&:hover {
color: white;
}
&.nav-button {
color: $ui-highlight-color;
&:hover {
color: $ui-highlight-color;
}
}
}
.information-board__section span:last-child {
color: $primary-text-color;
}
.landing-page { .landing-page {
h1, h3, h6 { h1, h3, h6 {
color: $about-page-text; color: $about-page-text;
@ -609,6 +629,15 @@ button.icon-button {
color: $ui-highlight-color; color: $ui-highlight-color;
} }
/* polls.scss */
.poll__chart {
background: saturate(lighten($ui-highlight-color, 50%), 10%);
&.leading {
background: saturate(lighten($ui-highlight-color, 40%), 20%);
}
}
/* forms.scss */ /* forms.scss */
.block-button, .button, button { .block-button, .button, button {
background-color: $ui-primary-color; background-color: $ui-primary-color;