Different background grid

This commit is contained in:
Thomas Smith 2022-12-13 17:26:39 -05:00
parent ed78e98b0f
commit 48c57567fe
2 changed files with 26 additions and 8 deletions

View file

@ -49,6 +49,7 @@
height: 100vh; height: 100vh;
overflow-y: scroll; overflow-y: scroll;
} }
@media screen and (min-width: 1215px) {
figure { figure {
position: fixed; position: fixed;
z-index: 0; z-index: 0;
@ -56,7 +57,23 @@
left: 240px; left: 240px;
right: 0px; right: 0px;
bottom: 0px; bottom: 0px;
background-image: url('/images/footer-grid-element.svg'); background-image: url('/images/gui-background-grid.svg');
background-size: cover;
background-repeat: repeat;
}
}
@media screen and (max-width: 1215px) {
figure {
position: fixed;
z-index: 0;
top: 220px;
left: 240px;
right: 0px;
bottom: 0px;
background-image: url('/images/gui-background-grid.svg');
background-size: contain;
background-repeat: repeat;
}
} }
header { header {
position: absolute; position: absolute;

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 26 KiB