nci/static/css/sources/components/terminal.less

26 lines
396 B
Plaintext
Raw Normal View History

2015-05-10 17:18:02 +00:00
.terminal {
2015-06-14 15:24:03 +00:00
box-sizing: border-box;
2015-07-08 20:37:31 +00:00
2015-05-10 17:18:02 +00:00
&_code {
height: 420px;
padding: 8px 12px;
2015-06-14 15:24:03 +00:00
box-sizing: border-box;
overflow-y: scroll;
border: none;
color: white;
background-color: black;
2015-07-08 20:37:31 +00:00
line-height: 0.8;
font-size: 13px;
font-family: 'Ubuntu', sans-serif;
2015-07-08 20:37:31 +00:00
&_newline {
display: block;
margin: 0.8em 0;
white-space: pre;
&:first-child {
margin-top: 0;
}
}
2015-05-10 17:18:02 +00:00
}
}