move fast and break things (I'm publishing without rigorous testing)
All checks were successful
Build / Build-Docker-Image (push) Successful in 44s

This commit is contained in:
2025-04-29 14:04:27 -04:00
parent 90929170cb
commit 08313ad62e
8 changed files with 139 additions and 16 deletions

View File

@@ -47,14 +47,11 @@ h3, b {
font-family: "URW Gothic Bold";
}
body > div {
min-height: 100vh;
}
.flex-col, .flex-row {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.flex-col {
@@ -69,7 +66,7 @@ body > div {
position: absolute;
bottom: 50px;
left: 50vw;
transform: translate(-50%, -100%);
transform: translate(-50%, 0%);
margin: 0px;
}
@@ -118,6 +115,35 @@ i {
font-family: "URW Gothic Oblique";
}
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, 300px);
max-width: 1200px;
width: max-content;
margin-left: auto;
margin-right: auto;
}
.product > img {
max-width: 100%;
}
.product {
margin: 50px;
background-color: white;
box-shadow: 0px 0px 30px 30px rgb(61, 61, 61);
text-decoration: none;
transition: box-shadow 0.5s;
}
.product > * {
color: black;
}
.product:hover {
box-shadow: 0px 0px 0px 0px rgb(61, 61, 61);
}
@media (max-width: 1000px) {
h1 {
font-size: 3em;
@@ -134,4 +160,19 @@ i {
.four-grid {
grid-template-columns: 1fr;
}
.four-grid > * {
margin-left: 20px;
margin-right: 20px;
}
ul {
font-size: 1.5em;
}
}
#foot {
height: max-content !important;
padding: 50px !important;
box-shadow: 0px 0px 0px 0px rgb(61, 61, 61);
}