TerminalHomepage/css/main.css

30 lines
369 B
CSS
Raw Normal View History

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