-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (98 loc) · 1.78 KB
/
styles.css
File metadata and controls
105 lines (98 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body {
font-family: Arial, sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background: #f0f0f0;
}
.container {
display: grid;
grid-template-columns: auto 300px;
gap: 20px;
}
.simulation {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.controls {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.control-group {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
}
.control-group label {
margin-right: 10px;
}
.control-group input {
block: 1;
max-width: 150px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
button {
padding: 8px 16px;
background: #4caf50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
margin: 5px 0;
width: 100%;
}
button:hover {
background: #45a049;
}
.stats {
margin-top: 0px;
padding: 0px;
background: #f8f8f8;
border-radius: 4px;
}
.keyboard-controls {
margin-top: 20px;
padding: 10px;
background: #f8f8f8;
border-radius: 4px;
}
.keyboard-controls kbd {
background: #eee;
border-radius: 3px;
border: 1px solid #b4b4b4;
padding: 2px 4px;
font-size: 0.9em;
}
.scores-table-container {
margin-top: 20px;
max-height: 400px;
overflow-y: auto;
}
.scores-table {
width: 100%;
border-collapse: collapse;
background-color: white;
}
.scores-table th,
.scores-table td {
padding: 8px;
border: 1px solid #ddd;
text-align: left;
}
.scores-table th {
background-color: #f4f4f4;
position: sticky;
top: 0;
}
.scores-table tr:nth-child(even) {
background-color: #f8f8f8;
}