-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.css
54 lines (47 loc) · 901 Bytes
/
index.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
48
49
50
51
52
53
54
body {
overflow: hidden;
margin: 0;
}
#debugModal {
background-color: rgba(0, 0, 0, 0.5);
padding: 20px;
font-family: Arial, sans-serif;
font-size: 18px;
border-radius: 10px;
}
.debug-hud__wrapper {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: flex-start;
gap: 8px;
}
.debug-hud__item-group {
display: flex;
flex-flow: column nowrap;
justify-content: center;
align-items: flex-start;
gap: 8px;
}
.debug-hud__item {
background-color:rgba(200, 200, 200, 1);
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
gap: 20px;
/* width: calc(100% - 10px); */
width: 350px;
padding: 5px;
}
.debug-hud__item label {
font-weight: bold;
}
.debug-hud__item input,
.debug-hud__item button {
font-size: 18px;
width: 100px;
}
.debug-hud__item button {
text-transform: uppercase;
}