-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcustom.css
More file actions
102 lines (78 loc) · 2.3 KB
/
custom.css
File metadata and controls
102 lines (78 loc) · 2.3 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
Placeholder for custom user CSS
mainly to be overridden in profile/static/custom/custom.css
This will always be an empty file in IPython
*/
body {
background-color: #111;
color: #ccc;
}
.modal {
color: #222;
}
div#header {
background-color: #eef;
color: #111;
}
div.input_prompt {
color: cornflowerblue;
}
div.input_area {
border: 1px solid #010101;
}
div.text_cell_render {
color: #ccc;
}
div.text_cell_render,
div.output_area pre {
color: #ccc;
}
div.out_prompt_overlay:hover{
background: rgba(50, 50, 50, 0.5);}
div.output_collapsed {
background-color: #272822;
}
.breadcrumb>li {
text-shadow: 0 1px 0 #222;
}
.cell.selected {
border: thin #272822 solid;
}
div.text_cell_input {
background: #272822;
color: #f8f8f2;
}
div.output_stderr {
background-color: #362a2a;
}
.ipython_tooltip {
box-shadow: 0px 6px 10px -1px #000;
}
.CodeMirror {color: #f8f8f2;}
div.CodeMirror-selected {background: #49483E !important;}
.CodeMirror-gutters {background: #272822; border-right: 0px;}
.CodeMirror-linenumber {color: #d0d0d0;}
.CodeMirror-cursor {border-left: 1px solid #f8f8f0 !important;}
.cm-s-default .cm-header {color: #f8f8f2;}
.cm-s-ipython.CodeMirror {background: #272822; color: #f8f8f2; font-weight: 500;}
.cm-s-ipython div.CodeMirror-selected {background: #49483E !important;}
.cm-s-ipython .CodeMirror-gutters {background: #272822; border-right: 0px;}
.cm-s-ipython .CodeMirror-linenumber {color: #d0d0d0;}
.cm-s-ipython .CodeMirror-cursor {border-left: 1px solid #f8f8f0 !important;}
.cm-s-ipython span.cm-comment {color: #75715e;}
.cm-s-ipython span.cm-atom {color: #ae81ff;}
.cm-s-ipython span.cm-number {color: #ae81ff;}
.cm-s-ipython span.cm-property, .cm-s-ipython span.cm-attribute {color: #a6e22e;}
.cm-s-ipython span.cm-keyword {color: #f92672;}
.cm-s-ipython span.cm-string {color: #e6db74;}
.cm-s-ipython span.cm-variable {color: #F8F8F2;}
.cm-s-ipython span.cm-variable-2 {color: #9effff;}
.cm-s-ipython span.cm-def {color: #fd971f;}
.cm-s-ipython span.cm-error {background: #f92672; color: #f8f8f0;}
.cm-s-ipython span.cm-bracket {color: #f8f8f2;}
.cm-s-ipython span.cm-tag {color: #f92672;}
.cm-s-ipython span.cm-link {color: #ae81ff;}
.cm-s-ipython .CodeMirror-matchingbracket {
text-decoration: underline;
color: white !important;
}