-
Notifications
You must be signed in to change notification settings - Fork 1
/
look.css
84 lines (69 loc) · 1.1 KB
/
look.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
* {
box-sizing: border-box;
}
body {
margin: 0;
overflow: hidden;
font-family: monospace;
}
.loading {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: flex;
align-items: center;
justify-content: center;
color: black;
background: white;
}
.dbg {
white-space: break-spaces;
}
.hide-on-blur {
opacity: 0;
}
.hide-on-blur:hover {
opacity: 1;
}
.control-panel {
position: absolute;
top: 0;
right: 0;
bottom: 0;
overflow: auto;
color: white;
padding: 8px;
background: #222;
}
.control-panel .ui-item {
margin: 0 0 8px 0;
}
.control-panel .section {
margin: 0 0 8px 0;
border-bottom: 1px solid white;
padding: 0 0 8px 8px;
}
.control-panel .ui-item input {
float: right;
}
.control-panel .ui-item .caption {
margin: 0 8px 0 0;
}
.control-panel .ui-item .button {
cursor: pointer;
display: inline-block;
}
.control-panel .ui-item .button:hover {
font-weight: bold;
}
.control-panel .ui-item .narrow-32 {
width: 32px;
}
.control-panel .ui-item .narrow-48 {
width: 48px;
}
.control-panel .ui-item .narrow-64 {
width: 64px;
}