fixed nav grid resizing differenly at low res (links with longer link text shrunk more slowly); added gallery to character pages

This commit is contained in:
chimchooree
2022-07-17 23:19:29 -05:00
parent 219d251539
commit 35b8d6e233
19 changed files with 228 additions and 199 deletions
+11
View File
@@ -2,3 +2,14 @@
margin: auto;
color: white;
}
.gallery {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-column-gap: 0px;
grid-row-gap: 0px;
margin: auto;
}
.gallery img {
height: 200px;}