mirror of
https://github.com/openstf/stf
synced 2025-10-05 10:39:25 +02:00
19 lines
371 B
CSS
19 lines
371 B
CSS
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
/*height: 100%;*/
|
|
cursor: text;
|
|
background: #000;
|
|
}
|
|
|
|
.terminal {
|
|
font-family: Monaco, FreeMono, monospace;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
line-height: 14px;
|
|
-webkit-font-smoothing: antialiased;
|
|
font-smoothing: antialiased;
|
|
cursor: text;
|
|
/*min-height: 100%;*/
|
|
}
|