2022-07-02 20:58:33 +00:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Major+Mono+Display');
|
|
|
|
|
2022-07-02 16:30:30 +00:00
|
|
|
body {
|
2022-07-04 22:13:41 +00:00
|
|
|
font: 18px "Courier New", monospace;
|
|
|
|
background-color: black;
|
|
|
|
background-image: radial-gradient(at bottom right, rgb(30 30 30), black);
|
|
|
|
height: 100vh;
|
|
|
|
overflow: hidden;
|
2022-07-02 20:58:33 +00:00
|
|
|
color: #02d300;
|
2022-07-04 22:13:41 +00:00
|
|
|
text-shadow: 0 0 6px #73ff71;
|
2022-07-02 20:58:33 +00:00
|
|
|
margin: 20px;
|
2022-07-04 22:13:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100vw;
|
|
|
|
height: 99vh;
|
|
|
|
background: repeating-linear-gradient( 0deg, rgb(0 0 0 / 0.15), rgb(0 0 0 / 0.15) 3px, transparent 2px, transparent 6px);
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
::selection{
|
|
|
|
background: #793d71;
|
|
|
|
text-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.console {
|
|
|
|
padding-left: 6em;
|
|
|
|
padding-top: 10vh;
|
|
|
|
height: 80vh;
|
|
|
|
overflow: hidden;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo {
|
2022-07-02 20:58:33 +00:00
|
|
|
white-space: pre-wrap;
|
2022-07-02 16:30:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-04 22:13:41 +00:00
|
|
|
.fail-text {
|
2022-07-03 02:30:48 +00:00
|
|
|
color: #d82222;
|
2022-07-04 22:13:41 +00:00
|
|
|
text-shadow: 0 0 6px #ff1111;
|
|
|
|
}
|
|
|
|
|
|
|
|
.terminal-window{
|
|
|
|
width: 40%;
|
|
|
|
height: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
flex-grow: 1;
|
2022-07-03 02:30:48 +00:00
|
|
|
}
|
|
|
|
|
2022-07-04 00:43:28 +00:00
|
|
|
.active-line{
|
|
|
|
outline: none;
|
|
|
|
width: 2em;
|
|
|
|
resize:horizontal;
|
|
|
|
}
|
|
|
|
|
2022-07-03 02:30:48 +00:00
|
|
|
.blink-text {
|
|
|
|
animation: blinker 1s step-start infinite;
|
|
|
|
}
|
|
|
|
|
2022-07-04 22:13:41 +00:00
|
|
|
.typed-line{
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.terminal-line th{
|
|
|
|
text-align: right;
|
|
|
|
vertical-align: top;
|
|
|
|
padding-right: 0.2em;
|
|
|
|
width: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.terminal-line td{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
2022-07-03 02:30:48 +00:00
|
|
|
@keyframes blinker {
|
|
|
|
50% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|