cofee color
This commit is contained in:
parent
526d36bc03
commit
869f7ac03f
1 changed files with 26 additions and 25 deletions
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
background: #D2B48C;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
@ -28,7 +28,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.panel {
|
.panel {
|
||||||
background: white;
|
background: #F5E6D3;
|
||||||
border-radius: 15px;
|
border-radius: 15px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
||||||
|
|
@ -46,22 +46,22 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
color: #333;
|
color: #5C4033;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stats {
|
.stats {
|
||||||
background: #f8f9fa;
|
background: #E8D5B7;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #666;
|
color: #5C4033;
|
||||||
}
|
}
|
||||||
|
|
||||||
.stats strong {
|
.stats strong {
|
||||||
color: #667eea;
|
color: #8B6F47;
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -80,7 +80,7 @@
|
||||||
|
|
||||||
.search-box input:focus {
|
.search-box input:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
border-color: #667eea;
|
border-color: #8B6F47;
|
||||||
}
|
}
|
||||||
|
|
||||||
.users-list {
|
.users-list {
|
||||||
|
|
@ -90,7 +90,7 @@
|
||||||
.user-item {
|
.user-item {
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
background: #f8f9fa;
|
background: #E8D5B7;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.3s;
|
transition: all 0.3s;
|
||||||
|
|
@ -98,14 +98,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-item:hover {
|
.user-item:hover {
|
||||||
background: #e9ecef;
|
background: #DDC9A3;
|
||||||
transform: translateX(5px);
|
transform: translateX(5px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-item.active {
|
.user-item.active {
|
||||||
background: #667eea;
|
background: #8B6F47;
|
||||||
color: white;
|
color: white;
|
||||||
border-color: #5568d3;
|
border-color: #6B5432;
|
||||||
}
|
}
|
||||||
|
|
||||||
.user-item.active .user-stats {
|
.user-item.active .user-stats {
|
||||||
|
|
@ -120,7 +120,7 @@
|
||||||
|
|
||||||
.user-info {
|
.user-info {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #666;
|
color: #5C4033;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -130,7 +130,7 @@
|
||||||
|
|
||||||
.user-stats {
|
.user-stats {
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #667eea;
|
color: #8B6F47;
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 15px;
|
gap: 15px;
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
|
|
@ -142,7 +142,7 @@
|
||||||
|
|
||||||
.user-stats span {
|
.user-stats span {
|
||||||
padding: 3px 8px;
|
padding: 3px 8px;
|
||||||
background: white;
|
background: #F5E6D3;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -157,21 +157,22 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.gamers-table th {
|
.gamers-table th {
|
||||||
background: #f8f9fa;
|
background: #E8D5B7;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
color: #333;
|
color: #5C4033;
|
||||||
border-bottom: 2px solid #dee2e6;
|
border-bottom: 2px solid #D2B48C;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gamers-table td {
|
.gamers-table td {
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
border-bottom: 1px solid #dee2e6;
|
border-bottom: 1px solid #D2B48C;
|
||||||
|
color: #5C4033;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gamers-table tr:hover {
|
.gamers-table tr:hover {
|
||||||
background: #f8f9fa;
|
background: #E8D5B7;
|
||||||
}
|
}
|
||||||
|
|
||||||
.badge {
|
.badge {
|
||||||
|
|
@ -209,32 +210,32 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.selected-user-info {
|
.selected-user-info {
|
||||||
background: #f8f9fa;
|
background: #E8D5B7;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selected-user-info h2 {
|
.selected-user-info h2 {
|
||||||
color: #333;
|
color: #5C4033;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.selected-user-info p {
|
.selected-user-info p {
|
||||||
color: #666;
|
color: #5C4033;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gamer-link {
|
.gamer-link {
|
||||||
color: #667eea !important;
|
color: #8B6F47 !important;
|
||||||
text-decoration: none !important;
|
text-decoration: none !important;
|
||||||
transition: color 0.3s;
|
transition: color 0.3s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.gamer-link:hover {
|
.gamer-link:hover {
|
||||||
color: #5568d3 !important;
|
color: #6B5432 !important;
|
||||||
text-decoration: underline !important;
|
text-decoration: underline !important;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
@ -250,7 +251,7 @@
|
||||||
Кол-во игроков: <strong id="total-gamers">0</strong>
|
Кол-во игроков: <strong id="total-gamers">0</strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="stats" style="margin-top: 15px; padding: 15px; background: #f5f5f5; border-radius: 8px;">
|
<div class="stats" style="margin-top: 15px; padding: 15px; background: #E8D5B7; border-radius: 8px;">
|
||||||
<h3 style="margin-top: 0; margin-bottom: 10px; font-size: 16px;">📨 Счетчики сообщений</h3>
|
<h3 style="margin-top: 0; margin-bottom: 10px; font-size: 16px;">📨 Счетчики сообщений</h3>
|
||||||
<div style="margin-bottom: 8px;">
|
<div style="margin-bottom: 8px;">
|
||||||
Всего отправлено: <strong id="total-messages-all">0</strong>
|
Всего отправлено: <strong id="total-messages-all">0</strong>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue