File tree Expand file tree Collapse file tree 1 file changed +85
-0
lines changed
Expand file tree Collapse file tree 1 file changed +85
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments