Update style.css

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

View File

@ -300,9 +300,10 @@ pre {
overflow: hidden;
box-sizing: border-box;
padding: 10px;
background-color: #f9f9f9;
background-color: #111; /* Match the sites background color */
border-radius: 0.25em;
border: 1px solid #ccc;
border: 1px solid #fb5; /* Match the border color to the site's theme */
color: #fb5; /* Match the text color to the site's theme */
}
.active-users-list ul {
@ -316,6 +317,8 @@ pre {
.active-users-list li {
display: inline;
padding: 0 20px; /* Space between usernames */
color: #fb5; /* Ensure the username color matches the theme */
font-family: "courier new", monospace; /* Match the font to the rest of the site */
}
@keyframes scroll-left {
@ -327,3 +330,4 @@ pre {
}
}