close to prerelase

This commit is contained in:
Quentin Wolkensperg 2024-11-11 14:52:00 -05:00
parent e55fbb5b67
commit 31022358ed
181 changed files with 2118 additions and 141 deletions

View file

@ -1,3 +1,3 @@
masterSite=thirdculture.top
siteTitle='third culture'
siteTitle='Third Culture Collective'
siteSubTitle='the members of third culture'

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

View file

@ -0,0 +1,38 @@
.main {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.grid-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
grid-template-rows: repeat(31, minmax(31px, 1fr));
gap: 5px;
width: 100%;
max-width: 100%;
height: 100%;
}
.grid-item {
display: flex;
justify-content: center;
align-items: center;
background-color: var(--bg-primary);
border: 2px solid var(--color-secondary);
width: 88px;
height: 31px;
}
.grid-item:hover img {
color: white;
text-decoration: underline;
}
.grid-item img {
max-width: 100%;
max-height: 100%;
color: var(--color-accent)
}