retro-terminaljs
Version:
Create retro terminals feeding live data.
28 lines • 466 B
CSS
#term {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #000000;
}
p {
color: lime;
font-family: Courier New;
}
button {
position: absolute;
cursor: pointer;
background-color: transparent;
border: 2px solid lime;
outline: none;
color: lime;
font-family: Courier New;
}
.background {
background-color: rgba(0, 255, 0, 0.25)
}
.centerAlign {
position: absolute;
text-align: center;
}