Skip to content
Snippets Groups Projects
Commit ddaa02da authored by codecraft's avatar codecraft :crocodile:
Browse files

FIX: broken transparency property in hero_section

parent ebf755b1
No related branches found
No related tags found
1 merge request!49Fix broken transparency
...@@ -46,6 +46,15 @@ figure.image>figcaption { ...@@ -46,6 +46,15 @@ figure.image>figcaption {
.box { .box {
color: black; color: black;
} }
}
.container.is-transparent {
bottom: 0 !important;
opacity: 1;
.box {
background: none;
box-shadow: none;
}
} }
} }
......
<section class="hero is-fullheight-with-navbar {% if background_img %}has-background{% endif %}"> <section class="hero is-fullheight-with-navbar {% if background_img %}has-background{% endif %}">
{% if background_img %} {% if background_img %}
{% set image = resize_image(path="@/" ~ page.colocated_path ~ "/" ~ background_img, width=800, height=600) -%} {% set image = resize_image(path="@/" ~ page.colocated_path ~ "/" ~ background_img, width=800, height=600) -%}
<img class="hero-background" src="{{ image.url }}" alt=""> <img class="hero-background {% if background_transparent %}is-transparent{% endif %}" src="{{ image.url }}" alt="">
{% endif -%} {% endif -%}
<div class="hero-body pl-0 pr-0"> <div class="hero-body pl-0 pr-0">
<div class="container has-text-centered"> <div class="container has-text-centered {% if background_transparent %}is-transparent{% endif %}">
<div class="box is-radiusless"> <div class="box is-radiusless">
<h1 class="title is-1 mb-5">{{ title | default(value=page.title) | safe }}</h1> <h1 class="title is-1 mb-5">{{ title | default(value=page.title) | safe }}</h1>
{% if body or page.description %}<p class="subtitle">{{ body | default(value=page.description) | safe }}</p>{% endif -%} {% if body or page.description %}<p class="subtitle">{{ body | default(value=page.description) | safe }}</p>{% endif -%}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment