37 lines
490 B
CSS
37 lines
490 B
CSS
:root {
|
|
--bg: black;
|
|
--fg: white;
|
|
}
|
|
|
|
body {
|
|
line-height: 1.5em;
|
|
font-family: 'Courier 10 Pitch', monospace;
|
|
font-size: 12pt;
|
|
background-color: var(--bg);
|
|
color: var(--fg);
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#output {
|
|
width: 80ch;
|
|
margin: 1.5em auto;
|
|
white-space: pre;
|
|
}
|
|
|
|
#cursor {
|
|
background-color: var(--fg);
|
|
color: var(--bg);
|
|
}
|
|
|
|
.blinking {
|
|
animation: blink 1.5s step-start infinite;
|
|
}
|
|
|
|
@keyframes blink {
|
|
50% {
|
|
background-color: var(--bg);
|
|
color: var(--fg);
|
|
}
|
|
}
|