-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
88 lines (79 loc) · 1.54 KB
/
custom.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*This file contains any manual css for this page that needs to override the global styles.
This is only required when different pages style the same element differently. This is just
a hack to deal with our current css styles and no new styling should be added in this file.*/
#ipython-main-app {
position: relative;
}
#jupyter-main-app {
position: relative;
}
/* OWN STYLES */
/*code box styles*/
.cm-s-ipython.CodeMirror {
color: #282828;
font-size: 10pt;
}
/*font colors*/
.cm-s-ipython span.cm-comment {
color: #9e9b8e;
font-style: italic;
}
.cm-s-ipython span.cm-atom {
color: #ae81ff;
}
.cm-s-ipython span.cm-number {
color: #ae81ff;
}
.cm-s-ipython span.cm-property {
color: #282828;
}
.cm-s-ipython span.cm-attribute {
color: #fd971f;
}
.cm-s-ipython span.cm-keyword {
color: #f92672;
font-weight: bold;
}
.cm-s-ipython span.cm-string {
color: #268bd2;
}
.cm-s-ipython span.cm-meta {
color: #fd971f;
}
.cm-s-ipython span.cm-operator {
color: #fd971f;
}
.cm-s-ipython span.cm-builtin {
color: #fd971f;
}
.cm-s-ipython span.cm-variable {
color: #282828;
}
.cm-s-ipython span.cm-variable-2 {
color: #17a589;
}
.cm-s-ipython span.cm-variable-3 {
color: #fd971f;
}
.cm-s-ipython span.cm-def {
color: #17a589;
font-weight: bold;
}
.cm-s-ipython span.cm-error {
background: rgba(249,38,114,.4);
}
.cm-s-ipython span.cm-tag {
color: #ae81ff;
}
.cm-s-ipython span.cm-link {
color: #17a589;
}
.cm-s-ipython span.cm-storage {
color: #ae81ff;
}
.cm-s-ipython span.cm-entity {
color: #17a589;
}
.cm-s-ipython span.cm-quote {
color: #268bd2;
}