2022-05-27 16:13:33 +00:00
|
|
|
body {
|
|
|
|
background-color: black;
|
2023-01-12 13:37:33 +00:00
|
|
|
font-family: Consolas, serif;
|
2022-05-27 16:13:33 +00:00
|
|
|
font-size: large;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cursor {
|
2023-01-12 06:25:46 +00:00
|
|
|
position: absolute;
|
|
|
|
z-index: -1;
|
|
|
|
background-color: white;
|
|
|
|
display: inline-block;
|
2022-05-27 16:13:33 +00:00
|
|
|
opacity: 1;
|
2023-01-05 23:13:56 +00:00
|
|
|
}
|
|
|
|
|
2023-01-12 06:25:46 +00:00
|
|
|
#input {
|
|
|
|
opacity: 0;
|
2022-05-27 16:13:33 +00:00
|
|
|
}
|
|
|
|
|
2023-01-13 06:27:13 +00:00
|
|
|
#input:hover {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
2022-05-27 16:13:33 +00:00
|
|
|
#textbox {
|
|
|
|
color: lime;
|
|
|
|
}
|
|
|
|
|
2023-01-12 06:25:46 +00:00
|
|
|
#current {
|
2022-05-27 16:13:33 +00:00
|
|
|
color: lightgrey;
|
2023-01-13 12:05:59 +00:00
|
|
|
white-space: pre;
|
2023-01-12 14:10:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#asciiArt {
|
|
|
|
text-align: center;
|
|
|
|
color: red;
|
2022-05-27 16:13:33 +00:00
|
|
|
}
|