Add folders to index.html

This commit is contained in:
Will Toohey
2022-07-02 11:00:19 +10:00
parent 0057364e14
commit f328014be7
12 changed files with 268 additions and 313 deletions
+29 -9
View File
@@ -9,15 +9,25 @@
font-style: normal;
}
.icons {
display: flex;
flex-wrap: wrap;
.icons, .subsection {
display: grid;
grid-template-columns: repeat(auto-fit, 180px);
grid-auto-flow: dense;
align-items: stretch;
margin: 0 auto;
text-align: center;
justify-content: center;
}
.subsection {
grid-column: 1 / -1;
background-color: #a2a2a2;
margin: unset;
/* I don't understand anything */
margin-right: -15px;
padding-right: 15px;
}
.gameicon,
.patchContainer {
border-radius: 2px;
@@ -37,6 +47,20 @@
justify-content: center;
}
label.gameicon {
cursor: pointer;
background: #fffcf0;
}
input.sectionToggle,
input.sectionToggle + div {
display: none;
}
input:checked.sectionToggle + div {
display: grid;
}
.gameicon:hover,
.dragover {
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
@@ -52,15 +76,11 @@
margin-top: 5px;
}
.gameicon>div>div {
margin-top: auto;
margin-bottom: auto;
}
.gameicon>div {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.fileInput {
@@ -323,4 +343,4 @@ input[type=checkbox]:checked ~ ul > li.patch-on {
}
input[type=checkbox]:checked ~ ul > li.patch-off {
display: list-item;
}
}