Basic Discord functionality with assignments
This commit is contained in:
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user