##// END OF EJS Templates
Tweaking and cleanup of notebook.css....
Brian Granger -
Show More
@@ -66,7 +66,7 b' pre, code, kbd, samp { font-family: monospace, sans-serif; }'
66
66
67 body {
67 body {
68 background-color: white;
68 background-color: white;
69 font-size: 10pt;
69 font-size: 11pt;
70
70
71 /* This makes sure that the body covers the entire window and needs to
71 /* This makes sure that the body covers the entire window and needs to
72 be in a different element than the display: box in wrapper below */
72 be in a different element than the display: box in wrapper below */
@@ -97,18 +97,14 b' div#wrapper {'
97 }
97 }
98
98
99 span#ipython_notebook h1 {
99 span#ipython_notebook h1 {
100 font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
100 font-family: Verdana, "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
101 font-size: 32pt;
101 font-size: 26pt;
102 padding: 10px;
102 padding: 10px;
103 margin: 10px;
103 margin: 10px;
104 }
104 }
105
105
106 div#toolbar {
106 div#tools {
107 width: 100%;
107 font-size: 9pt;
108 border-bottom-width: 2px;
109 border-bottom-style: solid;
110 border-bottom-color: black;
111 padding: 5px;
112 }
108 }
113
109
114 span#kernel_status {
110 span#kernel_status {
@@ -154,7 +150,6 b' div.notebook {'
154
150
155 div.cell {
151 div.cell {
156 width: 100%;
152 width: 100%;
157 /* margin: 10px;*/
158 padding: 5px;
153 padding: 5px;
159 position: relative;
154 position: relative;
160 display: table;
155 display: table;
@@ -179,10 +174,6 b' div.prompt {'
179 }
174 }
180
175
181 div.input {
176 div.input {
182 display: table-row;
183 padding: 0px;
184 margin: 0px;
185
186 display: box;
177 display: box;
187 box-orient: horizontal;
178 box-orient: horizontal;
188
179
@@ -206,9 +197,6 b' textarea.input_area {'
206 padding: 0px;
197 padding: 0px;
207 margin: 0px;
198 margin: 0px;
208 overflow: auto;
199 overflow: auto;
209 font-weight: normal;
210 font-style: normal;
211 /* width: 650px;*/
212 outline: none;
200 outline: none;
213 resize: none;
201 resize: none;
214
202
@@ -221,9 +209,14 b' textarea.input_area {'
221 }
209 }
222
210
223 div.output {
211 div.output {
224 display: table-row;
212 display: box;
225 padding: 0px;
213 box-orient: horizontal;
226 margin: 0px;
214
215 display: -webkit-box;
216 -webkit-box-orient: horizontal;
217
218 display: -moz-box;
219 -moz-box-orient: horizontal;
227 }
220 }
228
221
229 div.output_prompt {
222 div.output_prompt {
@@ -233,10 +226,7 b' div.output_prompt {'
233 div.output_area {
226 div.output_area {
234 text-align: left;
227 text-align: left;
235 font-family: Menlo, "Courier New", Courier, mono;
228 font-family: Menlo, "Courier New", Courier, mono;
236 padding: 0px;
237 margin: 0px;
238 display: table-cell;
229 display: table-cell;
239 /* width: 650px;*/
240 }
230 }
241
231
242 div.text_cell {
232 div.text_cell {
@@ -245,25 +235,24 b' div.text_cell {'
245
235
246 textarea.text_cell_input {
236 textarea.text_cell_input {
247 font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
237 font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
248 font-size: inherit;
238 font-size: 12pt;
249 outline: none;
239 outline: none;
250 resize: none;
240 resize: none;
251 width: inherit;
241 width: inherit;
252 border-style: none;
242 border-style: none;
253 padding: 0;
243 padding: 0px;
254 margin: 0;
244 margin: 0px;
255 color: black;
245 color: black;
256 }
246 }
257
247
258 div.text_cell_render {
248 div.text_cell_render {
259 font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
249 font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
260 font-size: inherit;
250 font-size: 12pt;
261 outline: none;
251 outline: none;
262 resize: none;
252 resize: none;
263 width: inherit;
253 width: inherit;
264 border-style: none;
254 border-style: none;
265 padding: 0;
255 padding: 5px;
266 margin: 0;
267 color: black;
256 color: black;
268 }
257 }
269
258
@@ -21,7 +21,7 b''
21 <div id="wrapper">
21 <div id="wrapper">
22
22
23 <div id="header">
23 <div id="header">
24 <span id="ipython_notebook"><h1>IPython Notebook</h1></span>
24 <span id="ipython_notebook"><h1>|I|Python Notebook</h1></span>
25 </div>
25 </div>
26
26
27
27
General Comments 0
You need to be logged in to leave comments. Login now