demo page does that anchor box thing

This commit is contained in:
chimchooree
2022-07-31 00:12:43 -05:00
parent 3fac134469
commit 52a8fbc4fb
3 changed files with 100 additions and 66 deletions
+24 -36
View File
@@ -4,16 +4,29 @@
grid-template-columns: 1fr;
grid-template-rows: auto auto auto;
grid-column-gap: 0px;
grid-row-gap: 2em;
color: white
grid-row-gap: 0em;
height: 45em;
}
.banner {
.jump {
grid-area: 1 / 1 / 2 / 2;
text-align: center;
margin-top: 2em;
margin: auto;
font-size: 1.5em;
}
.box img { width: 10em; }
.jump img { width: 5em; }
.long {
grid-area: grid-area: 2 / 1 / 3 / 2;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(5, auto);
grid-row-gap: 95vh;
height: 45em;
color: white;
overflow: auto;
}
.demo-game iframe {
border: 2px solid #df85a5;
padding: 10px;
@@ -25,35 +38,10 @@
padding: 10px;
margin: auto;
}
.demo {
grid-area: 2 / 1 / 3 / 2;
}
.box {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 2.5em 42em;
grid-column-gap: 0px;
grid-row-gap: 0px;
}
.jump {
grid-area: 1 / 1 / 2 / 2;
margin: auto;
font-size: 2em;
}
.long {
grid-area: grid-area: 2 / 1 / 3 / 2;
height: 44.625em;
overflow: hidden;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(5, auto);
grid-row-gap: 50em;
}
.splash { grid-area: 1 / 1 / 2 / 2; }
.system { grid-area: 2 / 1 / 3 / 2 }
.story { grid-area: 3 / 1 / 4 / 2; }
.characters { grid-area: 4 / 1 / 5 / 2; }
.info { grid-area: 5 / 1 / 6 / 2;
.demo { grid-area: 1 / 1 / 2 / 2;
}
.system { grid-area: 2 / 1 / 3 / 2;}
.story { grid-area: 3 / 1 / 4 / 2;}
.characters { grid-area: 4 / 1 / 5 / 2;}
.info { grid-area: 5 / 1 / 6 / 2;
height: 50em;}