This repository was archived by the owner on Apr 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
150 lines (128 loc) · 3.02 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
.container { width:100% !important; }
body {
color: #333;
background: #f6f6f6;
width: 980px;
margin: auto;
}
#notebook_panel { /* main background */
color: #f6f6f6;
margin: auto;
}
div #notebook { /* center the content */
background: #4b4b4b;
color: #333;
padding-left: 1em;
padding-right: 1em;
padding-top: 2ex;
text-align: justify;
}
#notebook li { /* More space between bullets. */
margin-top: 0.8em;
}
div.text_cell {
text-align: justify;
width: 105ex /* instead of 100%, */
}
div.text_cell_render{
text-align: justify;
padding: 0em 1em 0em 1em;
font-family: Verdana, Geneva, sans-serif;
line-height: 145%; /* added for some line spacing of text. */
width: 842px; /* instead of 'inherit' for shorter lines */
font-weight: Light;
font-size: 13pt;
}
div.text_cell_render.border-box-sizing.rendered_html {
margin: 0;
padding: 1em;
margin-left: 4ex;
text-align: justify;
}
div.cell.text_cell.border-box-sizing {
margin: 0;
padding: 0;
text-align: justify;
}
.rendered_html h1 { /* Main titles big with more space*/
margin-top: 2.2em;
line-height: 1.4em;
margin-bottom: 0.1em;
padding: 0;
font-family: "Open Sans", Sans-Serif;
font-weight: Light;
}
.rendered_html h2 {
margin-top:2.0em;
margin-bottome:0.0em;
margin: 0;
padding: 0;
font-family: "Open Sans", Sans-Serif; font-weight: Light;
}
.rendered_html h3 {
margin: 0;
padding: 0;
font-family: "Open Sans", Sans-Serif; font-weight: Light;
}
div.cell { /* set cell width to about 80 chars */
margin-top:1em;
margin-bottom:1em;
margin-left:auto;
margin-right:auto;
width: 842px;
text-align: justify;
}
.cell.command_mode.selected {
border-color: rgba(0,0,0,0.1);
}
.cell.edit_mode.selected {
border-color: rgba(0,0,0,0.15);
box-shadow: 0px 0px 5px #f0f0f0;
-webkit-box-shadow: 0px 0px 5px #f0f0f0;
}
div.cell.code_cell { /* Area containing both code and output */
background-color: #FFF;
border-radius: 10px;
border-style: solid;
border-width: 1px;
border-color: gray;
padding: 1em;
}
div.cell.selected { /* Current cell */
border-radius: 5px;
border-color: #1E90FF; /* Dodger blue*/
border-width: 2px;
}
div.cell.running{ /* Cell the is running */
border: 3px dashed #f33;
}
div.input_area { /* box around box with code */
border: none;
background: #f5f5f5;
border: 2px solid #ccc;
border-radius: 10px;
padding-top: 0.5ex;
padding-bottom: 0.5ex;
padding-left: 0.5em;
}
div.input { /* box with code */
width: 810px;
}
div.CodeMirror { /* code font */
font-family: "Droid Sans Mono", monospace;
font-size: 12pt;
}
div.prompt { /* remove In/Out prompt */
display: none;
}
div.cell.border-box-sizing.code_cell.rendered {
font-size: 12pt;
}
div.output_subarea {
border:none;
font-size: 12pt;
}
/* header colors and fonts */
h1 { color: #444; }
h2 { color: #444; }
h3 { color: #444; font-style: italic; font-weight: normal}