460 lines
8.0 KiB
Plaintext
460 lines
8.0 KiB
Plaintext
// Farbvariablen
|
|
@primary: #e94560;
|
|
@primary-glow: rgba(233, 69, 96, 0.3);
|
|
@bg-dark: rgba(0, 0, 0, 0.3);
|
|
@bg-darker: rgba(0, 0, 0, 0.4);
|
|
@text-muted: #aaa;
|
|
@text-light: #e0e0e0;
|
|
@text-white: #fff;
|
|
@accent-green: #4ade80;
|
|
@gold: #ffd700;
|
|
@font-mono: 'Courier New', monospace;
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
|
|
color: @text-light;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
header {
|
|
background: rgba(0, 0, 0, 0.4);
|
|
padding: 16px 24px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 12px;
|
|
border-bottom: 2px solid @primary;
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
color: @text-white;
|
|
text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
|
|
}
|
|
}
|
|
|
|
#status-bar {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
font-size: 0.85rem;
|
|
color: @text-muted;
|
|
}
|
|
|
|
#last-update, #refresh-timer {
|
|
font-family: @font-mono;
|
|
font-size: 0.9rem;
|
|
color: @accent-green;
|
|
background: @bg-darker;
|
|
padding: 4px 10px;
|
|
border-radius: 6px;
|
|
border: 1px solid rgba(74, 222, 128, 0.2);
|
|
}
|
|
|
|
#refresh-btn {
|
|
background: @primary;
|
|
border: none;
|
|
color: white;
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
font-size: 1.2rem;
|
|
transition: transform 0.3s, background 0.3s;
|
|
|
|
&:hover {
|
|
background: #ff6b6b;
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
|
|
#main-content {
|
|
display: flex;
|
|
gap: 24px;
|
|
padding: 24px;
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
/* Board Section */
|
|
#board-section {
|
|
flex: 1;
|
|
min-width: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.player-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
width: 100%;
|
|
max-width: 500px;
|
|
padding: 12px 16px;
|
|
background: @bg-dark;
|
|
border-radius: 12px;
|
|
border: 2px solid transparent;
|
|
transition: border-color 0.3s, box-shadow 0.3s;
|
|
|
|
&.active {
|
|
border-color: @primary;
|
|
box-shadow: 0 0 15px @primary-glow;
|
|
}
|
|
}
|
|
|
|
.player-avatar {
|
|
font-size: 2rem;
|
|
width: 48px;
|
|
height: 48px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border-radius: 50%;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.player-details {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2px;
|
|
}
|
|
|
|
.player-name {
|
|
font-weight: 600;
|
|
font-size: 1.1rem;
|
|
color: @text-white;
|
|
}
|
|
|
|
.player-elo {
|
|
font-size: 0.85rem;
|
|
color: @text-muted;
|
|
}
|
|
|
|
.player-clock {
|
|
font-family: @font-mono;
|
|
font-size: 1.3rem;
|
|
font-weight: bold;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
padding: 6px 12px;
|
|
border-radius: 8px;
|
|
min-width: 100px;
|
|
text-align: center;
|
|
color: @accent-green;
|
|
}
|
|
|
|
#board {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
|
|
[data-square].last-move-highlight {
|
|
box-shadow: inset 0 0 3px 3px rgba(255, 200, 0, 0.7);
|
|
}
|
|
}
|
|
|
|
#pgn-panel {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
background: @bg-dark;
|
|
border-radius: 12px;
|
|
padding: 12px 16px;
|
|
}
|
|
|
|
.pgn-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 8px;
|
|
color: @primary;
|
|
font-weight: bold;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#copy-pgn-btn {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
border: none;
|
|
color: #ccc;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
transition: background 0.2s;
|
|
|
|
&:hover {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
}
|
|
}
|
|
|
|
#pgn-text {
|
|
font-family: @font-mono;
|
|
font-size: 0.78rem;
|
|
line-height: 1.5;
|
|
color: @text-muted;
|
|
white-space: pre-wrap;
|
|
word-break: break-all;
|
|
max-height: 160px;
|
|
overflow-y: auto;
|
|
padding: 8px;
|
|
background: @bg-darker;
|
|
border-radius: 6px;
|
|
-webkit-user-select: text;
|
|
user-select: text;
|
|
}
|
|
|
|
/* Info Section */
|
|
#info-section {
|
|
flex: 0 0 380px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 20px;
|
|
}
|
|
|
|
#game-info h2 {
|
|
font-size: 1.3rem;
|
|
color: @primary;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
#result-info {
|
|
font-size: 1.1rem;
|
|
padding: 8px 12px;
|
|
background: @bg-dark;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#moves-panel, #all-games-panel, #standings-panel {
|
|
background: @bg-dark;
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
|
|
h3 {
|
|
margin-bottom: 12px;
|
|
color: @primary;
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
#standings-content {
|
|
font-size: 0.9rem;
|
|
line-height: 1.6;
|
|
|
|
.standings-loading {
|
|
color: #888;
|
|
font-style: italic;
|
|
}
|
|
}
|
|
|
|
.standings-row {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 6px 0;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
|
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
.standings-label {
|
|
color: @text-muted;
|
|
}
|
|
|
|
.standings-value {
|
|
color: @text-white;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.standings-rank {
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
color: @primary;
|
|
text-align: center;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.standings-rank-label {
|
|
font-size: 0.8rem;
|
|
color: #888;
|
|
text-align: center;
|
|
}
|
|
|
|
.standings-header {
|
|
text-align: center;
|
|
margin-bottom: 8px;
|
|
color: @gold;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
#moves-list {
|
|
max-height: 300px;
|
|
overflow-y: auto;
|
|
font-family: @font-mono;
|
|
font-size: 0.95rem;
|
|
line-height: 1.8;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 4px;
|
|
|
|
.move-number {
|
|
color: #888;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.move {
|
|
color: @text-light;
|
|
cursor: pointer;
|
|
padding: 2px 6px;
|
|
border-radius: 4px;
|
|
transition: background 0.2s;
|
|
|
|
&:hover {
|
|
background: @primary-glow;
|
|
}
|
|
|
|
&.current {
|
|
background: @primary;
|
|
color: @text-white;
|
|
}
|
|
}
|
|
|
|
.lara-move {
|
|
color: @gold;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.opp-move {
|
|
color: @text-muted;
|
|
}
|
|
}
|
|
|
|
#all-games-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.game-entry {
|
|
padding: 10px 12px;
|
|
background: rgba(255, 255, 255, 0.05);
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
transition: background 0.2s;
|
|
border-left: 3px solid transparent;
|
|
|
|
&:hover {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
&.active {
|
|
border-left-color: @primary;
|
|
background: rgba(233, 69, 96, 0.15);
|
|
}
|
|
|
|
.game-round {
|
|
font-weight: bold;
|
|
color: @primary;
|
|
font-size: 0.85rem;
|
|
}
|
|
|
|
.game-players {
|
|
font-size: 0.9rem;
|
|
color: #ccc;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.game-result {
|
|
font-size: 0.8rem;
|
|
color: #888;
|
|
margin-top: 2px;
|
|
}
|
|
}
|
|
|
|
/* Overlays */
|
|
#loading-overlay, #error-overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: rgba(26, 26, 46, 0.95);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 1000;
|
|
gap: 16px;
|
|
|
|
p {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|
|
|
|
#error-overlay button {
|
|
padding: 10px 24px;
|
|
background: @primary;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.spinner {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: 4px solid @primary-glow;
|
|
border-top-color: @primary;
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
/* Scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: @primary;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 900px) {
|
|
#main-content {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#info-section {
|
|
flex: none;
|
|
width: 100%;
|
|
max-width: 500px;
|
|
}
|
|
|
|
header h1 {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|