TerminalHomepage/css/main.css

35 lines
430 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
}
2023-01-13 06:27:13 +00:00
#input:hover {
cursor: default;
}
2022-05-27 16:13:33 +00:00
#textbox {
color: lime;
}
#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
}