Skip to content

Commit

Permalink
Marquee Revamp
Browse files Browse the repository at this point in the history
The frontpage marquee was jank before, thanks to a bit of help from
Tropical <tropical.nekoweb.org>, it is no longer jank. That marquee was
causing me physical pain 🙃

Also, the XCF (used in GIMP) file for my Nekoweb cursor is here, it's
not used on the site, just for Nekoweb.org.

I will put a small blog post on my website about the marquee on the
frontpage so that maybe some other people can find that and be able to
it.
  • Loading branch information
Steve0Greatness committed May 27, 2024
1 parent e5c4212 commit f51007a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
Binary file added Kitty-Cur.xcf
Binary file not shown.
15 changes: 13 additions & 2 deletions static/src/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ input:is([type=radio], [type=checkbox]):checked {
animation: infinite linear ticker 14s;
white-space: nowrap;
display: inline-block;
min-width: 100%;
box-sizing: content-box;
}

Expand All @@ -200,14 +199,26 @@ input:is([type=radio], [type=checkbox]):checked {

@keyframes ticker {
0% {
transform: translateX(100%);
margin-left: 100%;
transform: translateX(0%);
}

100% {
margin-left: 0;
transform: translateX(-100%);
}
}

.cool-people-prj :any-link {
text-decoration: none;
}

@media (prefers-reduced-motion) {
.ticker-wrapper .ticker {
animation: none;
}

.ticker-wrapper {
overflow: scroll;
}
}

0 comments on commit f51007a

Please sign in to comment.