blob: df30726f82e90c94ad99c05570a10c72ce075951 (
plain)
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
|
body {
background-color: wheat;
height: 100%;
overflow: hidden;
margin: 0px;
padding: 0px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.controls > * {
padding: 0px;
margin: 0px;
}
.footer {
position: relative;
}
.controls {
position: absolute;
bottom: 0;
background-color: rgb(0%, 0%, 0%, 0.5);
height: 10vh;
width: 100%;
padding: 5px 10px 5px 10px;
border-radius: 10px 10px 0px 0px;
margin: 0px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 5px;
}
.controlBtn {
background-color: rgb(0%, 0%, 0%, 0);
border: 1px solid black;
border-radius: 5px;
background-color: lightgray;
padding-left: 5px;
padding-right: 5px;
margin: 10px;
}
input {
width: 12vw;
}
.controlElem {
margin: 5px 2px;
padding: 1vh;
}
|