More movign around of things in notebook and js/less.

This commit is contained in:
Brian E. Granger 2013-05-15 16:05:10 -07:00
parent 08fba69314
commit a35b7a7e81
4 changed files with 14 additions and 13 deletions

View File

@ -0,0 +1,11 @@
// Mixin CSS classes
.border-box-sizing {
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.corner-all {
border-radius: @corner_radius;
}

View File

@ -1,5 +1,3 @@
// Our customizations to bootstrap
// Our customizations to bootstrap no here.
@textColor: @black;
@baseFontSize: 10pt;

View File

@ -1,3 +1,5 @@
// Bootstrap customizations specific to this page.
@corner_radius: 4px;
@notebook_background : white;
@cell_selected_background: darken(@notebook_background, 2%);
@ -6,14 +8,4 @@
@light_border_color: darken(@cell_selected_background, 17%);
@borderwidth : 1px;
@fontBaseColor : black;
@baseFontSize: 30pt;
// utilities mixins
.corner-all {
border-radius:@corner_radius;
}