blob: c8dd9fd2e0f2d3541885cfbe0ede8a517d4eb724 (
plain)
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
|
.cq-con {
color: greenyellow;
font-family: "Courier Menlo", Monaco, Consolas, "Courier New", monospace;
word-break: break-all;
}
.cq-con-line {
white-space: pre-wrap;
background-color: transparent;
border: none;
color: inherit;
line-height: normal;
margin: 0;
padding: 0;
}
.cq-con-text {
}
.cq-con-cursor {
color: black;
background: greenyellow;
}
.cq-con-cursor.inverted {
color: greenyellow;
background: black;
}
.cq-con-text.input {
color: #a6e1ec;
}
.cq-con-text.error {
color: #d9534f;
}
|