crayon-syntax-highlighter/util/sample/less.txt

14 lines
279 B
Plaintext
Raw Normal View History

2019-08-30 19:30:19 +02:00
@import "lib.css";
@the-border: 1px;
@base-color: #111;
@red: #842210;
#header {
color: (@base-color * 3);
border-left: @the-border;
border-right: (@the-border * 2);
}
#footer {
color: (@base-color + #003300);
border-color: desaturate(@red, 10%);
}