-
Notifications
You must be signed in to change notification settings - Fork 0
/
notebook.css
67 lines (54 loc) · 1023 Bytes
/
notebook.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
66
67
* {
box-sizing: border-box;
}
.source-with-result {
display: flex;
flex-direction: row;
}
.source {
font-family: 'Courier New', Courier, monospace;
font-size: 20px;
width: 40%;
vertical-align: top;
}
.CodeMirror {
border: 1px solid gray;
margin: 0.2em;
height: auto;
}
.cm-word.cm-good {}
.cm-word.cm-unknown {
text-decoration: wavy underline red;
}
.cm-word.cm-error {
text-decoration: underline orange;
}
.eval-position.cm-good {
border-bottom: 2px solid skyblue;
}
.eval-position.cm-unknown {
border-left: 2px solid red;
}
.eval-position.cm-error {
border-left: 2px solid orange;
}
.result {
width: 60%;
vertical-align: top;
}
.before-stack {
height: 0.8ex;
width: 100%;
background: linear-gradient( skyblue, snow);
}
.stack {
padding: 4px;
}
.animation {
padding-left: 0.2em;
padding-right: 0.2em;
border-left: 1px solid gray;
border-right: 1px solid gray;
margin-top: 0.5ex;
width: max-content;
}