Spaces:
Running
Running
File size: 390 Bytes
2d2e027 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
// Filename starts with a z to keep things in order.
@import "variables.less";
code, pre, div.pre {
background-color: rgba(0,0,0,0.04);
border-radius: 3px;
padding: 2px 6px;
font-family: @fontMonospace;
font-size: 12px;
}
div.pre {
span.value {
white-space: pre;
color: #840a6e;
&.string { color: #000; }
&.boolean { color: #0086b3; }
&.number { color: #40a070; }
}
}
|