[2025-03-02] Creating post archive, some style updates

This commit is contained in:
Andrew Conlin 2025-03-02 15:32:18 +00:00
parent a99b4a47c8
commit d3242f91d4
21 changed files with 72 additions and 55 deletions

View file

@ -59,7 +59,8 @@ div.content {
}
body {
background-color: #242424;
//background-color: #242424;
background-color: #000000;
color: #E7D7AD;
}
@ -79,7 +80,7 @@ a {
}
a:hover {
color: #242424;
color: #000000;
background: #FABD2F;
text-decoration: none;
border-bottom: 3px solid #FABD2F;
@ -95,6 +96,25 @@ img {
}
::selection {
color: #242424;
color: #000000;
background: #FABD2F;
}
span.growshrink {
display: inline-block;
animation-duration: 5s;
animation-name: grow-shrink;
animation-iteration-count: infinite;
}
@keyframes grow-shrink {
25%,
75% {
scale: 100%;
}
50% {
scale: 110%;
color: #FABD2F;
}
}