use only 2% darkening for menu

This commit is contained in:
Jonas Leder 2021-01-11 19:39:22 +01:00
parent b6d27c9daf
commit 190480a931
5 changed files with 16 additions and 5 deletions

View file

@ -1,3 +1,3 @@
$back-color-2: darken($back-color, $darker-color);
$back-color-3: darken($back-color-2, $darker-color);
$back-color-3: darken($back-color, $darker-color-2);
$accent-color-2: darken($accent-color, $darker-color);

View file

@ -36,6 +36,11 @@ a{
}
}
h1 {
color: $title-color;
text-transform: uppercase;
}
.red {
color: red;
}

View file

@ -94,10 +94,9 @@ p.header-subtitle {
background-color: #ebebeb;
position: relative;
}
h1.heading8 {
h1 {
font-weight: 600;
font-size: 2.2em;
color: #fff;
margin-bottom: 25px;
}
.header-description-row {

View file

@ -27,11 +27,16 @@
width: max-content;
left: 50%;
transform: translateX(-50%);
background-color: $back-color;
background-color: $back-color-3;
a {
border-bottom: $back-color-2 solid 2px;
width: 100%;
color: $text-color;
&:last-child{
border-bottom: none;
}
}
}

View file

@ -1,6 +1,8 @@
$back-color: #1a2332;
$text-color: #b3b3b3;
$title-color: #fff;
$accent-color: #1cb09a;
$content-footer-div-color: #03A8F4;
$darker-color: 5%;
$darker-color: 5%;
$darker-color-2: 2%;