BoSLOO/GroundControl/frontend/src/index.css

126 lines
2 KiB
CSS
Raw Normal View History

2022-07-05 19:27:52 +00:00
@import url('https://fonts.googleapis.com/css?family=VT323');
2022-07-02 20:58:33 +00:00
body {
2022-07-05 19:27:52 +00:00
font: 18px "VT323", "Courier New", monospace;
2022-07-04 22:13:41 +00:00
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;
}
body::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 99vh;
2022-07-05 01:46:29 +00:00
background: repeating-linear-gradient( 0deg, rgb(0 0 0 / 0.20), rgb(0 0 0 / 0.15) 3px, transparent 2px, transparent 6px);
2022-07-04 22:13:41 +00:00
pointer-events: none;
}
::selection{
background: #793d71;
text-shadow: none;
}
.power-on-container {
height: 90vh;
align-items:center;
justify-items:center;
text-align: center;
}
.power-on-box {
2022-07-05 01:16:35 +00:00
position: relative;
justify-self: center;
margin-top: 20vh;
2022-07-05 01:16:35 +00:00
}
2022-07-05 01:16:35 +00:00
#start-text {
font-size: 30px;
2022-07-05 01:16:35 +00:00
border: ridge;
padding: 2em 6em;
box-shadow: 0 0 3px 1px rgb(49 255 0 / 0.70);
}
2022-07-04 22:13:41 +00:00
.console {
padding-top: 15vh;
height: 70vh;
2022-07-04 22:13:41 +00:00
overflow: hidden;
display: flex;
flex-direction: column;
}
.logo {
2022-07-02 20:58:33 +00:00
white-space: pre-wrap;
}
2022-07-04 22:13:41 +00:00
.fail-text {
color: #d82222;
2022-07-04 22:13:41 +00:00
text-shadow: 0 0 6px #ff1111;
}
2022-07-05 01:16:35 +00:00
.power-on-self-test{
2022-07-05 01:46:29 +00:00
padding-left: 4em;
2022-07-05 01:16:35 +00:00
}
.terminal-window {
2022-07-05 01:46:29 +00:00
}
.power-on-self-test, .terminal-window {
2022-07-05 19:27:52 +00:00
border:groove;
2022-07-05 01:46:29 +00:00
margin-left: 5vw;
margin-top: -5vh;
padding-bottom: 1em;
2022-07-05 19:27:52 +00:00
padding-right: 2em;
2022-07-05 01:16:35 +00:00
width: 60vw;
2022-07-05 19:27:52 +00:00
overflow-y: auto;
overflow-x: hidden;
2022-07-04 22:13:41 +00:00
flex-grow: 1;
display: flex;
flex-direction: column-reverse;
2022-07-05 19:27:52 +00:00
box-sizing: border-box;
box-shadow: 0 0 3px 1px rgb(49 255 0 / 0.70);
2022-07-05 01:16:35 +00:00
}
.terminal{
}
.active-line{
outline: none;
width: 2em;
resize:horizontal;
}
.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;
}
@keyframes blinker {
50% {
opacity: 0;
}
}