adds some basic background
This commit is contained in:
parent
412cd7b45a
commit
7e09edd11e
4
_includes/background.html
Normal file
4
_includes/background.html
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<div class="background">
|
||||||
|
<div id="bg-bluedither"></div>
|
||||||
|
<div id="bg-grass"></div>
|
||||||
|
</div>
|
@ -15,6 +15,7 @@ navbar: topnav
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<script data-goatcounter="https://slimepondcount.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
<script data-goatcounter="https://slimepondcount.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
||||||
|
|
||||||
|
{% include background.html %}
|
||||||
<div class="vcol">
|
<div class="vcol">
|
||||||
<div class="columns">
|
<div class="columns">
|
||||||
<div class="left-sidebar">
|
<div class="left-sidebar">
|
||||||
|
21
_sass/background.scss
Normal file
21
_sass/background.scss
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
.background {
|
||||||
|
z-index: -99 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bg-bluedither {
|
||||||
|
image-rendering: pixelated;
|
||||||
|
background-image: url('/assets/images/decor/bluedither.png');
|
||||||
|
background-size: contain;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bg-grass {
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 50%;
|
||||||
|
background-image: url('/assets/images/decor/grass.png');
|
||||||
|
background-repeat: repeat-x;
|
||||||
|
background-position: bottom;
|
||||||
|
background-size: auto 15vh;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
@ -2,6 +2,7 @@
|
|||||||
@import "statuscafe";
|
@import "statuscafe";
|
||||||
@import "fonts";
|
@import "fonts";
|
||||||
@import "mobile";
|
@import "mobile";
|
||||||
|
@import "background";
|
||||||
|
|
||||||
html {
|
html {
|
||||||
background-color: #2196F3;
|
background-color: #2196F3;
|
||||||
@ -26,13 +27,16 @@ img {
|
|||||||
margin: 2px;
|
margin: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.overlay {
|
.overlay, .background {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
top: 0; bottom: 0;
|
top: 0; bottom: 0;
|
||||||
left: 0; right: 0;
|
left: 0; right: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.overlay {
|
||||||
z-index: 1000001;
|
z-index: 1000001;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
BIN
assets/images/decor/bluedither.png
Normal file
BIN
assets/images/decor/bluedither.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1013 B |
BIN
assets/images/decor/grass.png
Normal file
BIN
assets/images/decor/grass.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
Loading…
x
Reference in New Issue
Block a user