Fix color styling of lines etc

This commit is contained in:
2025-12-22 13:04:36 +01:00
parent f7a76623df
commit aaa909709d
2 changed files with 21 additions and 6 deletions

View File

@@ -1,7 +1,19 @@
@use "sass:color";
$color-red: #cd1013;
$color-blue: #193f78;
$color-blue-light: color.adjust($color-blue, $lightness: 40%);
$color-blue-super-light: color.adjust($color-blue, $lightness: 60%);
$color-blue-thin: color.adjust($color-blue, $lightness: 65%);
$color-blue-super-thin: color.adjust($color-blue, $lightness: 69%);
$color-background-mobile-menu: #f5f5f5;
$color-background-mobile-menu: $color-blue-super-thin;
$color-background-mobile-menu-header: #e0e0e0;
$color-hor-line: #a5a5a5;
$color-background-mobile-menu-header: $color-blue-super-light;
$color-hor-line: $color-blue-light;
$color-vh-vorne: #ddcb55;
$color-vh-mitte: #c98879;
$color-vh-hinten: #0082c9;

View File

@@ -13,7 +13,7 @@ $left-menu-width: 180px;
@mixin menu-style() {
font-family: 'Open Sans Condensed', sans-serif;
color: black;
color: $color-blue;
text-decoration: none;
&.active, &:hover {
@@ -71,7 +71,7 @@ h1 {
.announcements {
margin-top: 20px;
background-color: #ececec;
background-color: $color-blue-thin;
.entry {
margin: 25px 0;
@@ -110,7 +110,7 @@ h1 {
padding: 0 15px;
font: 1.5em 'Open Sans Condensed', sans-serif;
color: black;
background-color: #ececec;
background-color: $color-blue-thin;
&.active, &:hover {
background-color: $color-red;
@@ -200,6 +200,7 @@ table {
#header {
border-bottom: 2px solid rgba(173, 173, 173, 50%);
border-bottom: 2px solid $color-blue-light;
margin: 0 auto 30px;
width: 100%;
@@ -232,8 +233,8 @@ table {
// height: 250px;
display: none;
padding: 0 10px;
border-right: 20px solid $color-red;
border-left: 20px solid $color-red;
border-right: 20px solid $color-blue;
border-left: 20px solid $color-blue;
position: relative;
@include r.media-large {
@@ -326,6 +327,7 @@ table {
align-items: center;
border-top: 1px solid $color-hor-line;
box-sizing: border-box;
color: $color-blue;
.first-entry {
font: 1em 'Open Sans Condensed', sans-serif;
@@ -355,6 +357,7 @@ table {
a {
@include menu-style;
color: $color-blue;
}
}
}