Simplify banner and improve readability when used
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
#banner {
|
#banner {
|
||||||
$mask: linear-gradient(rgba(0, 0, 0, 0.7), transparent);
|
$mask: linear-gradient(black, transparent);
|
||||||
-webkit-mask-image: $mask;
|
-webkit-mask-image: $mask;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0;
|
top: 0;
|
||||||
@ -9,10 +9,8 @@
|
|||||||
transition: none;
|
transition: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
user-select: none;
|
user-select: none;
|
||||||
|
}
|
||||||
&.bright {
|
|
||||||
$mask: linear-gradient(rgba(0, 0, 0, 0.3), transparent);
|
.banner-margin {
|
||||||
-webkit-mask-image: $mask;
|
margin-top: 35vw;
|
||||||
mask-image: $mask;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -5,10 +5,10 @@
|
|||||||
{%- set date_locale = macros_translate::translate(key="date_locale", default="en_US", language_strings=language_strings) -%}
|
{%- set date_locale = macros_translate::translate(key="date_locale", default="en_US", language_strings=language_strings) -%}
|
||||||
<article>
|
<article>
|
||||||
{%- if page.extra.banner -%}
|
{%- if page.extra.banner -%}
|
||||||
<img id="banner" class="full-bleed{% if page.extra.banner_bright %} bright{% endif %}" src="{{ current_url | safe }}{{ page.extra.banner }}" />
|
<img id="banner" class="full-bleed" src="{{ current_url | safe }}{{ page.extra.banner }}" />
|
||||||
{%- endif -%}
|
{%- endif -%}
|
||||||
|
|
||||||
<h1>{{ page.title }}</h1>
|
<h1 {% if page.extra.banner %}class="banner-margin"{%- endif -%}>{{ page.title }}</h1>
|
||||||
|
|
||||||
{%- if page.date -%}
|
{%- if page.date -%}
|
||||||
<small>
|
<small>
|
||||||
|
Reference in New Issue
Block a user