testing the new room discovery changes. you can neow discover public rooms ( ones with no password )

This commit is contained in:
2025-08-31 22:28:14 +02:00
parent b21759b16a
commit 1aefa1a58d
4 changed files with 854 additions and 19 deletions

View File

@@ -616,4 +616,78 @@ ul.release-list a:hover {
.laptopimg {
max-width: 100%;
object-fit: contain;
}
/* discovery */
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.room-card {
background: #252525;
border: 1px solid #333;
border-radius: 8px;
padding: 1rem;
margin-bottom: 0.75rem;
transition: all 0.2s ease;
cursor: pointer;
}
.room-card:hover {
background: #2a2a2a;
border-color: #00ff88;
transform: translateY(-1px);
}
.room-title {
font-size: 1.1rem;
font-weight: 600;
margin: 0 0 0.5rem 0;
color: #ffffff;
display: flex;
align-items: center;
gap: 0.5rem;
}
.room-description {
color: #b0b0b0;
font-size: 0.9rem;
margin: 0 0 0.75rem 0;
line-height: 1.4;
}
.room-stats {
display: flex;
gap: 1rem;
flex-wrap: wrap;
font-size: 0.8rem;
color: #888;
}
.room-stat {
display: flex;
align-items: center;
gap: 0.25rem;
}
.activity-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
display: inline-block;
}
.activity-active { background: #00ff88; }
.activity-recent { background: #ffa500; }
.activity-old { background: #666; }
@media (max-width: 768px) {
.room-stats {
gap: 0.5rem;
}
.room-card {
padding: 0.75rem;
}
}