-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimulationDisplay.css
More file actions
93 lines (79 loc) · 1.52 KB
/
SimulationDisplay.css
File metadata and controls
93 lines (79 loc) · 1.52 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
.simulation-display {
flex: 1;
max-width: 300px;
background-color: #1a2634;
color: #ecf0f1;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
padding: 20px;
font-family: monospace;
}
.simulation-display h2 {
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
}
.simulation-display canvas {
width: 100%;
height: auto;
margin-bottom: 20px;
border-radius: 8px;
border: 2px solid #34495e;
}
.control-group {
margin-bottom: 15px;
}
.control-group label {
display: block;
margin-bottom: 5px;
font-size: 14px;
}
.control-group input[type="range"] {
width: 100%;
accent-color: #e74c3c;
}
.button-group {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.button {
flex-grow: 1;
padding: 10px;
color: #ecf0f1;
border-radius: 4px;
border: none;
font-weight: bold;
text-transform: uppercase;
cursor: pointer;
}
.button:not(:last-child) {
margin-right: 5px;
}
.button-start {
background-color: #27ae60;
}
.button-start:disabled {
background-color: #34495e;
cursor: not-allowed;
}
.button-pause {
background-color: #c0392b;
}
.button-pause:disabled {
background-color: #34495e;
cursor: not-allowed;
}
.button-reset {
background-color: #f39c12;
}
.simulation-status {
margin-top: 20px;
font-size: 14px;
color: #bdc3c7;
border-top: 1px solid #34495e;
padding-top: 15px;
}