Skip to content

Commit 50bfd4c

Browse files
authored
Add files via upload
1 parent 4925a0e commit 50bfd4c

File tree

1 file changed

+85
-0
lines changed

1 file changed

+85
-0
lines changed

1d-with-sound/style.css

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
:root{
2+
--bg:#000;
3+
--panel:#0a0a0a;
4+
--cyan:#5ff;
5+
--magenta:#f5f;
6+
--white:#fff;
7+
--dim:#777;
8+
}
9+
10+
body{
11+
background:var(--bg);
12+
color:var(--white);
13+
font-family:monospace;
14+
padding:16px;
15+
}
16+
17+
.panel{
18+
border:1px solid var(--cyan);
19+
background:var(--panel);
20+
padding:12px 14px;
21+
display:inline-block;
22+
margin:0 10px 10px 0;
23+
vertical-align:top;
24+
}
25+
26+
.panel-cyan{ border-color:var(--cyan); }
27+
.panel-magenta{ border-color:var(--magenta); }
28+
29+
.panel-title{
30+
color:var(--cyan);
31+
font-weight:bold;
32+
margin-bottom:8px;
33+
}
34+
35+
label{
36+
display:block;
37+
margin-bottom:8px;
38+
}
39+
40+
input, select, button{
41+
background:#000;
42+
color:var(--white);
43+
border:1px solid var(--cyan);
44+
font-family:monospace;
45+
padding:4px 6px;
46+
}
47+
48+
button{
49+
cursor:pointer;
50+
margin-right:6px;
51+
}
52+
53+
button:hover{
54+
border-color:var(--magenta);
55+
color:var(--magenta);
56+
}
57+
58+
.pad-switch{
59+
display:flex;
60+
gap:12px;
61+
margin-bottom:6px;
62+
font-size:12px;
63+
}
64+
65+
.row{
66+
margin-top:8px;
67+
}
68+
69+
.hint{
70+
color:var(--dim);
71+
font-size:12px;
72+
margin-top:6px;
73+
max-width:420px;
74+
}
75+
76+
canvas{
77+
display:block;
78+
margin-top:10px;
79+
border:1px solid var(--cyan);
80+
}
81+
82+
#kernelDump{
83+
margin-top:10px;
84+
color:var(--dim);
85+
}

0 commit comments

Comments
 (0)