30 lines
803 B
SCSS
30 lines
803 B
SCSS
|
.brand-logo,.site-brand {
|
||
|
.site-name,.site-description {
|
||
|
display: none;
|
||
|
}
|
||
|
&::before {
|
||
|
content: '';
|
||
|
display:inline-block;
|
||
|
margin-top:-$global-padding;
|
||
|
width: 100%;
|
||
|
height: $global-padding*5;
|
||
|
background-size: contain;
|
||
|
background-repeat: no-repeat;
|
||
|
background-position: center;
|
||
|
}
|
||
|
&.archive{
|
||
|
&::before {
|
||
|
max-width: 10rem;
|
||
|
background-image: url('../img/ARC-HIVE-logo.svg');
|
||
|
}
|
||
|
}
|
||
|
&.eu{
|
||
|
&::before {
|
||
|
max-width: 15rem;
|
||
|
//background-image: url('../img/eu_flag_creative_europe_co_funded_black_right.svg');
|
||
|
background-image: url('../img/eu_flag_creative_europe_co_funded_left.svg');
|
||
|
//background-image: url('../img/rechts_co-funded-by-the-creative-europe-media-programme-of-the-european-union-flag.png');
|
||
|
}
|
||
|
}
|
||
|
}
|