forked from skulpt/skulpt
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathipython.css
More file actions
74 lines (69 loc) · 1.12 KB
/
ipython.css
File metadata and controls
74 lines (69 loc) · 1.12 KB
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
68
69
70
71
72
73
74
.container {
display: flex;
flex-direction: column;
min-height: 400px;
max-height: 80vh;
margin: auto;
width: 80vw;
}
#clickGuard {
flex-grow: 1;
}
#editor {
min-height: 30px;
padding: 7px;
overflow: scroll;
}
#editor > div {
min-height: 15px;
max-height: 200vh;
width: 100%;
}
#editor > div > .ace_gutter-cell:first-child {
margin-left: 0px;
}
.ace_gutter-cell {
visibility: hidden;
padding-left: 0;
padding-right: 13px;
}
.in-gutter::before {
content: "In [";
}
.out-gutter::after,
.in-gutter::after {
content: "]:";
position: absolute;
right: 0;
}
.out-gutter::before {
content: "Out[";
}
.out-gutter::before,
.in-gutter::before {
position: absolute;
left: 5px;
padding: 0;
}
.out-gutter,
.in-gutter {
padding-left: 30px;
visibility: visible;
display: block;
}
.in-gutter {
color: mediumseagreen;
}
.out-gutter {
color: crimson;
}
.ace_gutter {
font-size: 11px;
}
.ace_gutter-cell:not(:first-child):after {
content: "...:";
visibility: visible;
position: absolute;
right: 0;
color: mediumseagreen;
}