File: highlighting.less

package info (click to toggle)
node-jade 1.5.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 1,984 kB
  • ctags: 315
  • sloc: makefile: 4
file content (37 lines) | stat: -rw-r--r-- 632 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
@import (npm) "inconsolata";
@import (npm) "code-mirror/codemirror";

pre code, pre, pre span {
  font-family: 'Inconsolata' monospace;
  font-size: 17px;
  overflow: auto;
  word-wrap: normal;
  white-space: pre;
  line-height: 1.2;
}
pre {
  padding: 4px;
}
.CodeMirror {
  font-size: 17px;
  font-family: 'Inconsolata' monospace;
}

.CodeMirror {
  height: auto;
}
.CodeMirror-scroll {
  overflow-y: hidden;
  overflow-x: auto;
}

pre, .CodeMirror, .code {
  border: 2px solid grey;
  background: white;
  border-radius: 0;
  margin-bottom: 10px;
}

.read-only-code-mirror .CodeMirror-cursor {
  visibility: hidden !important;
}