forked from grimalschi/calque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (52 loc) · 887 Bytes
/
style.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
body {
margin: 0;
padding: 0;
}
.interface {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
height: 100%;
}
.interface .input, .interface .output {
position: absolute;
top: 0;
right: 0;
left: 0;
width: 100%;
font-family: monospace;
font-size: 16px;
line-height: 1.5;
padding: 20px;
box-sizing: border-box;
white-space: pre;
}
.interface .input {
overflow: auto;
border: none;
outline: none;
background: none;
resize: none;
}
.interface .output {
overflow: hidden;
}
.interface .output div {
display: block;
}
.interface .output .prefix:before {
content: attr(data-prefix);
color: #E9E9E9;
}
.interface .output .data {
z-index: 1;
position: relative;
}
.interface .output .result {
color: silver;
}
.interface .output .error {
color: red;
}