25 lines
314 B
CSS
25 lines
314 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;
|
|
}
|
|
|
|
#textbox {
|
|
color: lime;
|
|
}
|
|
|
|
#current {
|
|
color: lightgrey;
|
|
} |