##// END OF EJS Templates
Fine tuning of notebook styles....
Brian Granger -
Show More
@@ -136,7 +136,7 b' div.notebook {'
136 height: 15px;
136 height: 15px;
137 overflow-y: auto;
137 overflow-y: auto;
138 overflow-x: hidden;
138 overflow-x: hidden;
139 padding: 5px;
139 padding: 0px 40px;
140 background-color: white;
140 background-color: white;
141 font-size: 12pt;
141 font-size: 12pt;
142
142
@@ -153,6 +153,8 b' div.notebook {'
153 div.cell {
153 div.cell {
154 width: 100%;
154 width: 100%;
155 padding: 5px;
155 padding: 5px;
156 /* This acts as a spacer between cells, that is outside the border */
157 margin: 15px 0px 15px 0px;
156 position: relative;
158 position: relative;
157
159
158 box-sizing: border-box;
160 box-sizing: border-box;
@@ -166,6 +168,9 b' div.cell {'
166 box-orient: vertical;
168 box-orient: vertical;
167 -webkit-box-orient: vertical;
169 -webkit-box-orient: vertical;
168 -moz-box-orient: vertical;
170 -moz-box-orient: vertical;
171
172 /* border-width: 1px;*/
173 /* border-style: solid;*/
169 }
174 }
170
175
171 div.code_cell {
176 div.code_cell {
@@ -187,6 +192,13 b' div.input {'
187 box-orient: horizontal;
192 box-orient: horizontal;
188 -webkit-box-orient: horizontal;
193 -webkit-box-orient: horizontal;
189 -moz-box-orient: horizontal;
194 -moz-box-orient: horizontal;
195
196 box-sizing: border-box;
197 -moz-box-sizing: border-box;
198 -webkit-box-sizing: border-box;
199
200 /* border-width: 1px;*/
201 /* border-style: solid;*/
190 }
202 }
191
203
192 div.input_prompt {
204 div.input_prompt {
@@ -217,6 +229,9 b' textarea.input_textarea {'
217 }
229 }
218
230
219 div.output {
231 div.output {
232 /* This is a spacer between the input and output of each cell */
233 margin-top: 15px;
234
220 display: box;
235 display: box;
221 display: -webkit-box;
236 display: -webkit-box;
222 display: -moz-box;
237 display: -moz-box;
@@ -224,6 +239,13 b' div.output {'
224 box-orient: vertical;
239 box-orient: vertical;
225 -webkit-box-orient: vertical;
240 -webkit-box-orient: vertical;
226 -moz-box-orient: vertical;
241 -moz-box-orient: vertical;
242
243 box-sizing: border-box;
244 -moz-box-sizing: border-box;
245 -webkit-box-sizing: border-box;
246
247 /* border-width: 1px;*/
248 /* border-style: solid;*/
227 }
249 }
228
250
229 div.output_pyout {
251 div.output_pyout {
General Comments 0
You need to be logged in to leave comments. Login now