Compare commits

...

2 Commits

Author SHA1 Message Date
cc5e975ea6 feat: release 2.17.1
All checks were successful
test-build / guarddog (push) Successful in 1m5s
renovate / renovate (push) Successful in 1m29s
release-image-harbor / build (push) Successful in 2m44s
release-image-gitea / build (push) Successful in 2m48s
test-build / build (push) Successful in 4m40s
release-image-gitea / release (push) Successful in 8m7s
release-image-harbor / release (push) Successful in 8m15s
2026-02-26 21:23:28 -06:00
ea15224eae feat: tweaks to background to be more pastel 2026-02-26 21:23:08 -06:00
3 changed files with 13 additions and 13 deletions

View File

@@ -22,7 +22,7 @@ WORKDIR /app
COPY --from=prod-deps /app/node_modules /app/node_modules
COPY --from=build /app/dist /app/dist
LABEL version="2.17.0"
LABEL version="2.17.1"
LABEL description="Astro based personal website"
ENV HOST=0.0.0.0

View File

@@ -1,7 +1,7 @@
{
"name": "site-profile",
"type": "module",
"version": "2.17.0",
"version": "2.17.1",
"homepage": "https://www.alexlebens.dev",
"bugs": {
"url": "https://gitea.alexlebens.dev/alexlebens/site-profile/issues",

View File

@@ -133,23 +133,23 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
/* Background that creates the "glimmer" effect */
.bg {
animation: slide 20s ease-in-out infinite alternate;
background-image: linear-gradient(-60deg, var(--bg-primary) 33.3%, var(--bg-secondary) 33.3%, var(--bg-secondary) 66.6%, var(--bg-tertiary) 66.6%);
filter: blur(80px);
animation: slide 25s ease-in-out infinite alternate;
background-image: linear-gradient(-55deg, var(--bg-primary) 33.3%, var(--bg-secondary) 33.3%, var(--bg-secondary) 66.6%, var(--bg-tertiary) 66.6%);
filter: blur(40px);
top: 0;
bottom: 0;
left: -50%;
right: -50%;
left: -70%;
right: -70%;
opacity: .5;
position: fixed;
z-index: -1;
--bg-primary: #e5e5e5;
--bg-secondary: #d9d9d9;
--bg-tertiary: #ededed;
--bg-secondary: #dce3eb;
--bg-tertiary: #f4f6f8;
}
:global(.dark) .bg {
--bg-primary: #292524;
--bg-primary: #332f2e;
--bg-secondary: #44403c;
--bg-tertiary: #57534e;
}
@@ -160,15 +160,15 @@ const normalizeTitle = !title ? global.name : `${title} | ${global.name}`;
}
.bg3 {
animation-duration: 25s;
animation-duration: 20s;
}
@keyframes slide {
0% {
transform:translateX(-25%);
transform: translateX(-30%);
}
100% {
transform:translateX(25%);
transform: translateX(30%);
}
}
</style>