-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
56 lines (48 loc) · 789 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
html,
body,
#root {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
}
.colors {
position: absolute;
top: 15%;
left: 0%;
width: 42px;
height: 430px;
z-index: 50;
color: rgb(252, 233, 79);
}
ul {
padding: 0px 0px 0px 12px;
list-style-type: none;
}
.color-dot {
border: 1px solid white;
border-radius: 50%;
width: 20px;
height: 20px;
margin: 3px auto;
}
.selected-color {
border: 4px solid orange;
}
#cursor {
visibility: hidden;
position: absolute;
color: white;
font-family: sans-serif;
z-index: 50;
}
#currentCommand {
position: absolute;
color: white;
font-family: sans-serif;
z-index: 50;
top: 4%;
left: 47%;
text-align: center;
}