Show overlay on staging

master
Simon Bruder 2022-01-22 15:03:55 +01:00
parent 8d996651aa
commit 5052394ae4
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
3 changed files with 16 additions and 0 deletions

View File

@ -61,6 +61,17 @@ h2 a {
font-size: 0.75rem;
}
#staging-overlay {
background-image: url("/assets/staging.svg");
position: fixed;
top: 0;
width: 100%;
height: 100%;
z-index: 10000;
opacity: 0.075;
pointer-events: none;
}
// noscript fallbacks
.podlove-player > audio {

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -27,6 +27,9 @@
{%- endblock metadata %}
</head>
<body>
{%- if config.base_url is containing("staging") %}
<div id="staging-overlay"></div>
{%- endif %}
<div class="container has-background-white" id="page-wrapper">
{%- block banner %}
<a href="{{ get_url(path="/") }}"><img id="banner" src="{{ get_url(path="assets/banner.jpg") | safe }}" alt="Banner von {{ config.title }}"></a>