added project n5 to games page; added dates to game page banners; added link to copyparty on main page

This commit is contained in:
2025-08-16 16:42:16 +02:00
parent 35ec418adc
commit 71cb69a290
5 changed files with 69 additions and 8 deletions

View File

@@ -237,13 +237,18 @@
margin-top: 0;
font-family: var(--font-mono);
}
.project-banner {
.project-banner-container {
position: relative;
width: 80%;
margin-left: auto;
margin-right: auto;
display: flex;
}
.project-banner {
margin: 0; /* reset left/right margins */
}
.project-icon {
float: left;
@@ -251,6 +256,22 @@
width: 20%;
}
.project-date {
font-size: 1rem;
font-weight: 700;
position: absolute;
left: 0;
bottom: 0;
margin: 0;
padding: 0;
line-height: 1rem;
color: var(--color-text-dark);
background-color: var(--color-highlight);
font-family: 'Space Mono', monospace;
padding: 4px;
}
.pixelated-img {
image-rendering: pixelated;
}