File size: 491 Bytes
85729b1 |
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 |
body {
background-color: #000;
margin: 0;
padding: 20px;
font-family: monospace;
}
#terminal {
background-color: #000;
color: #0f0;
height: 100vh;
}
#terminal-container {
padding: 10px;
}
#terminal-input {
background: transparent;
border: none;
color: #0f0;
font-family: monospace;
font-size: 16px;
outline: none;
width: 90%;
}
.prompt {
color: #0f0;
margin-right: 10px;
}
#terminal-output {
margin-bottom: 10px;
} |