Style notebook as a document

Matthias Bussonnier 12 years ago committed by Jonathan Frederic
parent 4d62ad0df6
commit 6e9ef7abeb

@ -31,6 +31,16 @@ div#notebook {
margin: 0px;
outline: none;
.border-box-sizing();
background-color : @notebook_dark_background;
}
#notebook-container{
padding-right:80px;
padding-top:10px;
border-color: @body-bg;
background-color : @body-bg;
box-shadow: 0px 0px 12px 1px rgba(87,87,87,0.2);
}
div.ui-widget-content {

@ -7,6 +7,7 @@
@light_border_color: darken(@cell_selected_background, 17%);
@border_width: 1px;
@notebook_font_size: 14px;
@notebook_dark_background: #EEE;
@notebook_line_height: 20px;
@code_line_height: 1.21429em; // changed from 1.231 to get 17px even
@code_padding: 0.4em; // 5.6 px

@ -9492,6 +9492,14 @@ div#notebook {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
background-color: #eeeeee;
}
#notebook-container {
padding-right: 80px;
padding-top: 10px;
border-color: #ffffff;
background-color: #ffffff;
box-shadow: 0px 0px 12px 1px rgba(87, 87, 87, 0.2);
}
div.ui-widget-content {
border: 1px solid #ababab;

Loading…
Cancel
Save