/ src / terminal / Terminal.css
Terminal.css
 1  .terminal {
 2    background-color: #000;
 3    color: #fff;
 4    font-family: 'Courier New', monospace;
 5    padding: 20px;
 6    height: 40vh;
 7    width: 60vw;
 8    border: 2px solid #fff;
 9  
10    overflow: auto;
11  }
12  .terminal::-webkit-scrollbar {
13    width: 3px;
14    height: 3px;
15  }
16  .terminal::-webkit-scrollbar-track {
17    background-color: #000;
18  }
19  .terminal::-webkit-scrollbar-thumb {
20    background-color: #fff;
21  }
22  
23  .input-line {
24    display: flex;
25    align-items: flex-start;
26  }
27  
28  .prompt {
29    display: inline;
30    font-family: 'Courier New', Courier, monospace;
31    white-space: nowrap;
32  }
33  
34  .input-spacer {
35    width: 10px;
36  }
37  
38  .command-input {
39    width: 100%;
40    display: inline;
41    margin: 0;
42    padding: 0;
43    
44  
45    background-color: transparent;
46    border: none;
47    outline: none;
48    color: #fff;
49    font-family: 'Courier New', monospace;
50    font-size: 16px;
51  }