-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (41 loc) · 938 Bytes
/
style.css
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
body, html {
margin: 0;
padding: 0;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #15202B;
color: #D7DADC;
font-weight: bold;
}
.canvas-container {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
background-color: #ffffff;
}
#worldCanvas {
border: 1px solid black; /* Optional: To give a border to the canvas */
}
.controls {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 40px;
}
label {
font-size: 16px;
margin-bottom: 5px;
}
#log {
overflow-y: scroll;
}
#agentSelection, #timeBetweenUpdatesInput, #gridSizeInput, #dirtCoveragePercentageInput, #resetButton, #playPauseButton {
padding: 5px;
font-size: 16px;
margin-bottom: 10px;
width: 200px; /* Optional: Set a fixed width for the input field */
}