mirror of
https://github.com/ae-utbm/sith.git
synced 2024-10-31 19:38:04 +00:00
Merge pull request #482 from ae-utbm/pinktober-patch-patch
Patch to fix the pinktober patch
This commit is contained in:
commit
f4d7fae8ca
Binary file not shown.
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 8.2 KiB |
@ -25,8 +25,11 @@ $black-color: hsl(0, 0%, 17%);
|
|||||||
|
|
||||||
$faceblue: hsl(221, 44%, 41%);
|
$faceblue: hsl(221, 44%, 41%);
|
||||||
$twitblue: hsl(206, 82%, 63%);
|
$twitblue: hsl(206, 82%, 63%);
|
||||||
$pinktober: hsl(313, 88%, 76%);
|
$pinktober: #ff5674;
|
||||||
$pinktober-secondary: hsl(294, 87%, 15%);
|
$pinktober-secondary: #8a2536;
|
||||||
|
$pinktober-primary-text: white;
|
||||||
|
$pinktober-bar-closed: $pinktober-secondary;
|
||||||
|
$pinktober-bar-opened: #388E3C;
|
||||||
|
|
||||||
$shadow-color: rgb(223, 223, 223);
|
$shadow-color: rgb(223, 223, 223);
|
||||||
|
|
||||||
@ -160,19 +163,25 @@ header {
|
|||||||
display: flex;
|
display: flex;
|
||||||
box-shadow: $shadow-color 0px 0px 15px;
|
box-shadow: $shadow-color 0px 0px 15px;
|
||||||
border-top: none;
|
border-top: none;
|
||||||
background-color: $pinktober;
|
//background-color: $primary-neutral-dark-color;
|
||||||
border-radius: 0px 0px 10px 10px;
|
border-radius: 0px 0px 10px 10px;
|
||||||
|
|
||||||
|
// PINKTOBER
|
||||||
|
background-color: $pinktober;
|
||||||
border-bottom: 5px solid $pinktober-secondary;
|
border-bottom: 5px solid $pinktober-secondary;
|
||||||
|
margin-bottom: -5px;
|
||||||
|
border-radius: 0 0 5px 7px;
|
||||||
|
|
||||||
#header_logo {
|
#header_logo {
|
||||||
background-color: $white-color;
|
background-color: $white-color;
|
||||||
padding: 0.2em;
|
padding: 0.2em;
|
||||||
border-bottom: 5px solid $shadow-color;
|
border-bottom: 5px solid $shadow-color;
|
||||||
border-radius: 0px 0px 0px 9px;
|
border-radius: 0px 0px 0px 5px;
|
||||||
margin-bottom: -5px;
|
margin-bottom: -5px;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
display: inline-block;
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@ -195,6 +204,7 @@ header {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
label {
|
label {
|
||||||
display: inline;
|
display: inline;
|
||||||
|
color: $pinktober-primary-text;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
a {
|
a {
|
||||||
@ -215,7 +225,8 @@ header {
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: $white-color;
|
color: $white-color;
|
||||||
&:hover {
|
&:hover {
|
||||||
color: $pinktober-secondary;
|
color: $pinktober-primary-text;
|
||||||
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -223,6 +234,14 @@ header {
|
|||||||
flex: initial;
|
flex: initial;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0.2em 0.2em;
|
margin: 0.2em 0.2em;
|
||||||
|
|
||||||
|
& .fa.fa-times {
|
||||||
|
color: $pinktober-bar-closed !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
& .fa.fa-check {
|
||||||
|
color: $pinktober-bar-opened !important;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#header_search {
|
#header_search {
|
||||||
|
Loading…
Reference in New Issue
Block a user