feat: add active users and update user list style

This commit is contained in:
iodomi
2026-06-22 16:01:47 +02:00
parent 49beaa601a
commit a9dd0ab799
3 changed files with 96 additions and 10 deletions

View File

@@ -103,11 +103,54 @@ footer#footer > *:not(:last-child)::after {
}
pre.ascii {
margin-top: 2rem;
margin-bottom: 2rem;
font-size: 1rem;
overflow: auto;
}
.scroll {
display: flex;
overflow: hidden;
white-space: pre;
align-items: center;
}
.scroll h3 {
flex-shrink:0;
}
.scroll a:before {
content:"~";
}
.scroll marquee {
margin-bottom: -.3rem;
width: 60%;
}
.scroll a {
padding: .3rem
}
.user-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
}
.user-list a {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
flex: 10em;
padding-bottom: .3rem;
padding-top: .3rem;
}
.user-list a:before {
content:"~";
}
.user_home {
display: grid;
grid-template-columns: 100px 30px 100px 100px 40px 120px 15px;