Change the logo to center and transparent
This commit is contained in:
parent
59d14d98e4
commit
1edb0e8f7c
2 changed files with 11 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
<main class="front-screen" {{ if $.Params.background }}
|
<main class="front-screen">
|
||||||
style="background-image: url('{{ $.Site.BaseURL }}{{ print (index $.Params.background 0) }}');" {{ end }}>
|
{{ if $.Params.background }}
|
||||||
|
<img class="front-screen_image" src="{{ $.Site.BaseURL }}{{ print (index $.Params.background 0) }}"/> {{ end }}
|
||||||
<div class="front-screen_caption">
|
<div class="front-screen_caption">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -234,10 +234,16 @@ body {
|
||||||
margin: auto;
|
margin: auto;
|
||||||
max-width: var(--max-width-full);
|
max-width: var(--max-width-full);
|
||||||
}
|
}
|
||||||
|
.front-screen_image {
|
||||||
|
opacity: 0.5;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
.front-screen_caption {
|
.front-screen_caption {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateY(-50%);
|
left: 50%;
|
||||||
|
transform: translateY(-50%) translateX(-50%);
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
.front-screen_caption h1 {
|
.front-screen_caption h1 {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
|
|
Loading…
Reference in a new issue