-
Notifications
You must be signed in to change notification settings - Fork 9
/
coding.css
65 lines (50 loc) · 1001 Bytes
/
coding.css
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
.output_displayed_text {
color: blue;
}
.output_error {
color: red;
}
.p-link {
text-decoration: underline;
text-align: right;
}
.p-link:hover {
cursor:pointer;
}
.output {
font-family: monospace;
font-style: italic;
padding: 0pt 4pt;
color: #444;
}
/*autoscroll*/
.CodeMirror-scroll {
height: auto;
width: auto;
overflow-y: hidden;
overflow-x: auto;
}
/*identifying editable portions*/
.CodeMirror-scroll:hover:not(.static):not(.CodeMirror-focused) {
background: rgba(0,0,0,0.05);
}
.CodeMirror-scroll:hover.static:not(.CodeMirror-focused) {
background-color: rgba(0,0,0,0.01);
}
.CodeMirror-focused:not(:hover) {
background: rgba(0,0,0,0.07);
}
.CodeMirror-focused:hover {
background: rgba(0,0,0,0.075);
}
/**/
.CodeMirror-matchingbracket {
background: rgba(0,0,0,0.1);
}
/**/
div.CodeMirror span.CodeMirror-matchingbracket {
color: #5f5f5f; /*#869CEB; /*why can't we use .CodeMirror-matchingbracket? */
}
.CodeMirror {
line-height: 1.3em;
}