header improvements, add error handling for images on about page, update deps

This commit is contained in:
Aidan 2025-01-11 00:08:47 -05:00
parent c32abf7eba
commit 1950e8fca9
5 changed files with 79 additions and 41 deletions

View file

@ -24,16 +24,6 @@ body {
}
}
.rounded-full {
border-radius: 9999px;
}
.transition-colors {
transition-property: background-color, border-color, color, fill, stroke;
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
transition-duration: 150ms;
}
html {
scroll-behavior: smooth;
}
@ -42,3 +32,16 @@ html {
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
@keyframes pulse-glow {
0%, 100% {
text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}
50% {
text-shadow: 0 0 20px rgba(255, 255, 255, 1);
}
}
.hover\:glow:hover {
animation: pulse-glow 2s infinite;
}