mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 23:55:07 +00:00
63 lines
937 B
Plaintext
63 lines
937 B
Plaintext
.terminal {
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
|
|
&_header {
|
|
|
|
}
|
|
|
|
&_code {
|
|
clear: left;
|
|
min-height: 42px;
|
|
padding: 15px 0;
|
|
color: #F1F1F1;
|
|
font-family: monospace;
|
|
font-size: 12px;
|
|
line-height: 19px;
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
background-color: #2a2a2a;
|
|
counter-reset: line-numbering;
|
|
margin-top: 0;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
&_footer {
|
|
|
|
}
|
|
}
|
|
|
|
.code-line {
|
|
position: relative;
|
|
padding: 0 15px 0 55px;
|
|
margin: 0;
|
|
min-height: 16px;
|
|
|
|
&_counter {
|
|
display: inline-block;
|
|
text-align: right;
|
|
min-width: 40px;
|
|
margin-left: -33px;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
color: darken(@gray-lighter, 15%);
|
|
&:before {
|
|
content: counter(line-numbering);
|
|
counter-increment: line-numbering;
|
|
padding-right: 1em;
|
|
}
|
|
&:hover {
|
|
text-decoration: none;
|
|
color: @gray-lighter;
|
|
}
|
|
}
|
|
|
|
&_body {
|
|
display: inline-block;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: #444;
|
|
}
|
|
}
|