-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcontroller.css
More file actions
91 lines (80 loc) · 1.22 KB
/
Copy pathcontroller.css
File metadata and controls
91 lines (80 loc) · 1.22 KB
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
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap");
html,
body {
background: #111;
width: 100%;
margin: 0;
padding: 0;
}
main {
padding: 1em 2em 0;
margin-bottom: 240px;
}
h1 {
font: inherit;
margin: 1em 0 0 0;
padding: 0;
}
body,
a:link,
a:visited,
h1,
p,
div {
color: #eee;
font-family: "JetBrains Mono", monospace;
font-size: 16px;
text-decoration: none;
line-height: 1.4;
}
.about {
position: absolute;
top: 1em;
right: 1em;
display: block;
width: 3.4em;
padding: 1em 0;
text-align: center;
}
a:link,
a:visited,
select {
background: rgba(255, 255, 255, 0.05);
}
#midi-signals {
white-space: pre;
margin-top: 1em;
line-height: 1;
}
select {
border: none;
color: inherit;
font: inherit;
margin-left: -4px;
outline: none;
padding: 0 1em;
line-height: 2.8;
appearance: none;
cursor: pointer;
}
a:hover,
select:hover {
background: #eee;
color: 111;
}
iframe {
width: 390px;
height: 320px;
border: 0;
pointer-events: none;
margin: 0 auto;
position: fixed;
bottom: -80px;
left: 0;
right: 0;
filter: grayscale(100%) opacity(0.1);
}
iframe.active {
filter: grayscale(0%) opacity(0.5);
transition: filter 2s;
}