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