Merge pull request #84 from teaxyz/background-grid-edits

Added a Different Background Grid
This commit is contained in:
Thomas Smith 2022-12-14 14:00:11 -05:00 committed by GitHub
commit 78de78f52e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 8 deletions

View file

@ -49,14 +49,31 @@
height: 100vh; height: 100vh;
overflow-y: scroll; overflow-y: scroll;
} }
figure { @media screen and (min-width: 1215px) {
position: fixed; figure {
z-index: 0; position: fixed;
top: 220px; z-index: 0;
left: 240px; top: 220px;
right: 0px; left: 240px;
bottom: 0px; right: 0px;
background-image: url('/images/footer-grid-element.svg'); bottom: 0px;
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