make goober export some env variables for cogs to use and add webserver
This commit is contained in:
parent
c72368010d
commit
b5c8895b4d
6 changed files with 429 additions and 8 deletions
118
cogs/styles.css
Normal file
118
cogs/styles.css
Normal file
|
@ -0,0 +1,118 @@
|
|||
|
||||
.topnav {
|
||||
background-color: rgb(95, 27, 27);
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
padding: 10px;
|
||||
gap: 20px;
|
||||
}
|
||||
|
||||
.topnav a {
|
||||
color: #f2f2f2;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.topnav a:hover {
|
||||
background-color: #ddd;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
color: white;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.stat-title {
|
||||
font-weight: bold;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: black;
|
||||
color: white;
|
||||
font-family: Arial, sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.stats-container {
|
||||
max-width: 800px;
|
||||
margin: 20px auto;
|
||||
padding: 20px;
|
||||
background-color: #1a1a1a;
|
||||
border-radius: 8px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.balls {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
background-color: #2a2a2a;
|
||||
padding: 15px;
|
||||
margin: 10px 0;
|
||||
border-radius: 5px;
|
||||
border-left: 4px solid rgb(95, 27, 27);
|
||||
}
|
||||
|
||||
.guild-list {
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
background-color: #2a2a2a;
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.guild-item {
|
||||
padding: 5px 0;
|
||||
border-bottom: 1px solid #444;
|
||||
}
|
||||
|
||||
.guild-item:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
hr {
|
||||
border-color: rgb(95, 27, 27);
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-container-row {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
gap: 20px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.bot-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.bot-avatar {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 0%;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color:black;
|
||||
color: white;
|
||||
cursor: pointer;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue