Basic Discord functionality with assignments

This commit is contained in:
2026-01-25 18:56:11 -05:00
parent ee7114d25d
commit 055abd501f
9 changed files with 431 additions and 5 deletions

View File

@@ -198,6 +198,42 @@ button {
}
button:hover { background-color: #3399ff; }
/* Bot control button */
.bot-btn {
background-color: #4CAF50;
color: white;
padding: 0.6rem 1rem;
font-size: 1rem;
font-weight: bold;
border-radius: 8px;
transition: background-color 0.3s;
}
.bot-btn:hover {
opacity: 0.9;
}
.bot-btn[data-running="true"] {
background-color: #ff4444;
}
/* Reset button */
.reset-btn {
background-color: #ff8800;
color: white;
}
.reset-btn:hover {
background-color: #ff6600;
}
/* Top controls layout */
.top-controls {
display: flex;
gap: 1rem;
align-items: center;
}
/* scrollbar niceties for drop zones and lists */
.member-list::-webkit-scrollbar, .drop-zone::-webkit-scrollbar { width: 8px; height: 8px; }
.member-list::-webkit-scrollbar-thumb, .drop-zone::-webkit-scrollbar-thumb { background: #66ccff; border-radius: 4px; }