-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.css
136 lines (117 loc) · 2.13 KB
/
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#control-row {
display: flex;
flex-direction: row;
/* justify-content: center; */
width: 100%;
padding: 5px;
}
#control-row > div {
margin: 5px;
}
#left-control-column {
display: flex;
flex-direction: column;
width: fit-content;
}
#left-control-column .ui.slider {
width: 150px;
}
#left-control-column .ui.input {
width: 80px;
height: 30px;
margin-left: 10px;
}
#left-control-column > div {
width: fit-content;
display: flex;
flex-direction: row;
align-items: center;
}
#left-control-column > div > span {
width: 100px;
}
#right-control-column {
display: flex;
flex-direction: column;
width: fit-content;
}
#right-control-column > div > span {
position: relative;
right: 0;
left: auto;
}
#right-control-column > div {
width:150px;
margin-top: 5px;
}
#keyboard-buttons {
position: relative;
width: fit-content;
margin-left: auto;
margin-right: auto;
}
#keyboard-buttons > span {
padding: 5px;
}
#keyboard {
position: relative;
margin-left: auto;
margin-right: auto;
margin-top: 10;
height: 100px;
}
#editor {
flex: 1;
height: 500px;
}
.white {
width: 20px;
height: 100px;
position: absolute;
top: 0;
border-right-style: none;
border-width: 1px;
border-color: black;
background: white;
display: flex;
justify-content: center;
color: black;
align-items: flex-end;
}
.black {
width: 10px;
height: 60px;
position: absolute;
border-color: black;
border-width: 1px;
background: black;
display: flex;
justify-content: center;
align-items: flex-end;
color: white;
}
.black:hover {
background-color: dimgrey;
}
.white:hover {
background-color: lightgray;
}
#overlay {
background: rgba(0, 0, 0, .9);
color: #fff;
cursor: pointer;
width: 100%;
height: 100%;
z-index: 10;
top: 0;
left: 0;
position: fixed;
display: flex;
justify-content: center;
align-items: center;
}
.overlay-text {
width: fit-content;
margin: auto;
z-index: 11;
}