summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_includes/views/banner.html8
1 files changed, 7 insertions, 1 deletions
diff --git a/_includes/views/banner.html b/_includes/views/banner.html
index eb622d7..4b5f5c0 100644
--- a/_includes/views/banner.html
+++ b/_includes/views/banner.html
@@ -16,19 +16,25 @@
{%- include functions.html func='get_banner' -%}
{% if banner_image %}
+ {% if banner_height %}
<style>
html .page-banner {
height: {{ banner_height }};
}
+ </style>
+ {% endif %}
+ {% if banner_opacity %}
+ <style>
html .page-banner .page-banner-img > *:first-child {
opacity: {{ banner_opacity }};
}
html[data-theme="dark"] .page-banner .page-banner-img > *:first-child {
- opacity: {{ banner_opacity | times: 0.6 }};
+ opacity: {{ banner_opacity | times: 0.718 }};
}
</style>
+ {% endif %}
<section class="page-banner">
<div class="page-banner-img">
<div style="background-image: url({{ banner_image }})"></div>