TechNote/style.css
Joey Payne 03238ad179 Add proper resizing of scrollable Notebook area
Resizing needed to be 100% of the height, but css would not work. Jquery
is now used.
2016-03-03 11:35:14 -07:00

34 lines
456 B
CSS

body, html{
margin: 0px;
height: 100%;
overflow: hidden;
}
#main{
}
.fill-height{
height: 100%;
}
.noselect{
-webkit-user-select: none;
}
.inline{
display: inline-block;
vertical-align: top;
}
.left{
}
.right{
float: right;
}
#library-nav{
border-right: solid 1px #d9d9d9;
width: 300px;
height: 100%;
min-height: 100%;
}
#nblist{
padding-bottom: 0px !important;
}
#notebook-list{
overflow-y: auto;
}