Merge pull request #482 from ae-utbm/pinktober-patch-patch

Patch to fix the pinktober patch
This commit is contained in:
TheRolf 2022-10-13 20:56:00 +02:00 committed by GitHub
commit f4d7fae8ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 6 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -25,8 +25,11 @@ $black-color: hsl(0, 0%, 17%);
$faceblue: hsl(221, 44%, 41%);
$twitblue: hsl(206, 82%, 63%);
$pinktober: hsl(313, 88%, 76%);
$pinktober-secondary: hsl(294, 87%, 15%);
$pinktober: #ff5674;
$pinktober-secondary: #8a2536;
$pinktober-primary-text: white;
$pinktober-bar-closed: $pinktober-secondary;
$pinktober-bar-opened: #388E3C;
$shadow-color: rgb(223, 223, 223);
@ -160,19 +163,25 @@ header {
display: flex;
box-shadow: $shadow-color 0px 0px 15px;
border-top: none;
background-color: $pinktober;
//background-color: $primary-neutral-dark-color;
border-radius: 0px 0px 10px 10px;
// PINKTOBER
background-color: $pinktober;
border-bottom: 5px solid $pinktober-secondary;
margin-bottom: -5px;
border-radius: 0 0 5px 7px;
#header_logo {
background-color: $white-color;
padding: 0.2em;
border-bottom: 5px solid $shadow-color;
border-radius: 0px 0px 0px 9px;
border-radius: 0px 0px 0px 5px;
margin-bottom: -5px;
a {
display: inline-block;
display: flex;
align-items: center;
margin: 0px;
width: 100%;
height: 100%;
@ -195,6 +204,7 @@ header {
width: 100%;
label {
display: inline;
color: $pinktober-primary-text;
}
}
a {
@ -215,7 +225,8 @@ header {
font-weight: bold;
color: $white-color;
&:hover {
color: $pinktober-secondary;
color: $pinktober-primary-text;
text-decoration: underline;
}
}
@ -223,6 +234,14 @@ header {
flex: initial;
list-style-type: none;
margin: 0.2em 0.2em;
& .fa.fa-times {
color: $pinktober-bar-closed !important;
}
& .fa.fa-check {
color: $pinktober-bar-opened !important;
}
}
#header_search {