118 lines
1.7 KiB
CSS
118 lines
1.7 KiB
CSS
![]() |
|
||
|
.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;
|
||
|
}
|