-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (51 loc) · 770 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
html,
body {
height: 100%;
margin: 0;
}
#root-window {
height: 100%;
}
#render-target {
height: 100%;
}
#ui-container {
position: absolute;
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
height: 100vh;
}
#fillMode {
color: #ffffff;
margin-left: 20px;
}
.ui-btn {
cursor: pointer;
background: none;
border: none;
border: 1px solid #ffffff;
padding: 10px 20px;
margin: 20px;
color: #ffffff;
border-radius: 6px;
}
#instruct {
margin-right: 40px;
border: 1px solid #ffffff;
max-width: 20vw;
padding-left: 10px;
}
p {
color: #ffffff;
}
._red {
color: red;
}
._green {
color: rgb(0, 255, 0);
}
._blue {
color: blue;
}