CoolFace
Apppublic

ErftgRftg/linux-kernel-emulator-cli

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
style.css46 linesDownload Raw Back to root
1/* Reset margins and force a pure black background */2body, html {3    margin: 0;4    padding: 0;5    background-color: #000000;6    color: #00ff00; /* Classic matrix green text, change to #ffffff for pure white */7    font-family: 'Courier New', Courier, monospace;8    font-size: 16px;9    height: 100%;10    overflow: hidden;11}12 13/* The terminal container */14#terminal {15    padding: 20px;16    height: calc(100% - 40px);17    overflow-y: auto;18    box-sizing: border-box;19}20 21/* Style for the command input line */22.input-line {23    display: flex;24    align-items: center;25}26 27/* The prompt styling (user@linux:~$) */28.prompt {29    color: #00ff00; 30    font-weight: bold;31    margin-right: 10px;32    white-space: nowrap;33}34 35/* The invisible input field that captures typing */36#cmd-input {37    background: transparent;38    border: none;39    color: inherit;40    font-family: inherit;41    font-size: inherit;42    outline: none;43    flex-grow: 1;44    padding: 0;45    margin: 0;46}