BoSLOO/GroundControl/frontend/src/index.css

29 lines
449 B
CSS
Raw Normal View History

2022-07-02 20:58:33 +00:00
@import url('https://fonts.googleapis.com/css?family=Major+Mono+Display');
body {
2022-07-02 20:58:33 +00:00
font: 14px "Courier New", monospace;
background: #0d0d0d;
2022-07-02 20:58:33 +00:00
color: #02d300;
margin: 20px;
white-space: pre-wrap;
}
.fail-text{
color: #d82222;
}
.active-line{
outline: none;
width: 2em;
resize:horizontal;
}
.blink-text {
animation: blinker 1s step-start infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}