forked from ISUE/PitchPipe
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
55 lines (48 loc) · 925 Bytes
/
main.css
File metadata and controls
55 lines (48 loc) · 925 Bytes
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
html, body {
margin: 0;
overflow-x: hidden;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans;
color: #565656;
background-color: #444;
}
body::-webkit-scrollbar { width: 0 !important }
#app {
display: flex;
}
#playground {
size: initial;
background-color: white;
cursor: none;
}
#configurator {
position: relative;
background-color: #565656;
color: #e0e0e0;
font-size: 8pt;
z-index: 2;
overflow: auto;
overflow-x: hidden;
padding: 5px;
}
#configurator ul {
padding: 0;
}
#configurator li {
padding-left: 2em;
list-style-type: none;
}
#configurator h1 {
font-size: 12pt;
padding-left: 3pt;
}
#configurator h2 {
font-size: 10pt;
}