templates for self-hosting game jams (or any other kind of jam tbh)
1.screenshots { 2 display: grid; 3 grid-template-columns: repeat(5, 1fr); 4 gap: 10px; 5 margin-top: .5em; 6} 7 8.screenshot { 9 width: 100%; 10 padding-top: 100%; 11 border: 1px #DDDDDD solid; 12 border-radius: 2px; 13 background-color: white; 14 position: relative; 15 display: flex; 16 justify-content: center; 17 align-items: center; 18 box-sizing: border-box; 19 20 a { 21 position: absolute; 22 top: 2px; 23 right: 2px; 24 bottom: 2px; 25 left: 2px; 26 display: flex; 27 justify-content: center; 28 align-items: center; 29 } 30 31 img { 32 position: absolute; 33 top: 2px; 34 right: 2px; 35 bottom: 2px; 36 left: 2px; 37 object-fit: cover; 38 } 39}