File size: 1,244 Bytes
58c47f3
 
 
 
 
 
 
 
 
 
 
 
 
35bb0e9
58c47f3
 
 
 
 
 
 
 
 
 
35bb0e9
 
58c47f3
 
 
 
 
 
 
 
 
35bb0e9
58c47f3
35bb0e9
58c47f3
 
35bb0e9
58c47f3
 
 
 
 
 
 
 
 
 
35bb0e9
 
58c47f3
 
 
 
 
 
 
35bb0e9
 
58c47f3
 
 
35bb0e9
58c47f3
 
 
 
35bb0e9
58c47f3
 
 
35bb0e9
58c47f3
35bb0e9
58c47f3
35bb0e9
 
58c47f3
 
 
 
35bb0e9
 
58c47f3
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
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
    background:#000;
    color:#00ff66;
    font-family:monospace;
    overflow:hidden;
}

#terminal{
    display:flex;
    flex-direction:column;
    height:100vh;
}

#output{
    flex:1;
    overflow:auto;
    padding:15px;
    white-space:pre-wrap;
    word-break:break-word;
    font-size:15px;
}

#input-bar{
    display:flex;
    align-items:flex-end;
    gap:10px;
    padding:10px;
    border-top:1px solid #222;
    background:#111;
}

#input-bar span{
    font-weight:bold;
}

#command{
    flex:1;
    resize:none;
    border:none;
    outline:none;
    background:transparent;
    color:#00ff66;
    font:inherit;
    max-height:180px;
}

#send{
    width:48px;
    height:48px;
    border:none;
    background:#00aa44;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

#hardkeys{
    display:flex;
    gap:6px;
    overflow-x:auto;
    padding:8px;
    background:#1a1a1a;
    border-top:1px solid #222;
}

#hardkeys button{
    min-width:58px;
    padding:8px;
    border:none;
    border-radius:6px;
    background:#2d2d2d;
    color:#ddd;
    cursor:pointer;
}

#hardkeys button:active{
    background:#555;
}