File size: 499 Bytes
f716e02
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
body {
    font-family: monospace;
    background-color: #000;
    color: #0f0;
    margin: 0;
    padding: 20px;
}

#terminal {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
}

#output {
    white-space: pre-wrap;
}

#input-line {
    display: flex;
    margin-top: 10px;
}

#prompt {
    margin-right: 5px;
}

#command-input {
    flex-grow: 1;
    background-color: transparent;
    border: none;
    color: #0f0;
    font-family: inherit;
    font-size: inherit;
    outline: none;
}