Update style.css

This commit is contained in:
deepend-tildeclub 2024-08-17 10:38:49 -06:00 committed by GitHub
parent 2c12d1a77a
commit dc7e57c915
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -307,15 +307,15 @@ pre {
.active-users-list ul { .active-users-list ul {
display: inline-block; display: inline-block;
padding-left: 100%; /* Initial offset for animation */ padding-left: 100%; /* Start position for the animation */
animation: scroll-left 15s linear infinite; /* Adjust duration as needed */ animation: scroll-left 15s linear infinite; /* Adjust the duration as needed */
margin: 0; margin: 0;
list-style-type: none; list-style-type: none;
} }
.active-users-list li { .active-users-list li {
display: inline; display: inline;
padding: 0 20px; /* Space between names */ padding: 0 20px; /* Space between usernames */
} }
@keyframes scroll-left { @keyframes scroll-left {
@ -326,3 +326,4 @@ pre {
transform: translateX(-100%); transform: translateX(-100%);
} }
} }