35 lines
430 B
CSS
35 lines
430 B
CSS
body {
|
|
background-color: black;
|
|
font-family: Consolas, serif;
|
|
font-size: large;
|
|
}
|
|
|
|
#cursor {
|
|
position: absolute;
|
|
z-index: -1;
|
|
background-color: white;
|
|
display: inline-block;
|
|
opacity: 1;
|
|
}
|
|
|
|
#input {
|
|
opacity: 0;
|
|
}
|
|
|
|
#input:hover {
|
|
cursor: default;
|
|
}
|
|
|
|
#textbox {
|
|
color: lime;
|
|
}
|
|
|
|
#current {
|
|
color: lightgrey;
|
|
white-space: pre;
|
|
}
|
|
|
|
#asciiArt {
|
|
text-align: center;
|
|
color: red;
|
|
} |