pip-webui
Version:
HTML5 UI for LOB applications
69 lines (58 loc) • 1.48 kB
text/less
// @file CSS styles for main layout container
// @copyright Digital Living Software Corp. 2014-2015
.pip-main {
.flex-container;
.flex-direction-column;
.position-fill;
background-color: @color-window;
//font-family: @font-family;
font-size: 14px;
overflow-x: hidden;
.pip-body-nav {
.flex-fixed;
min-height: 0px;
.md-paginator{
margin-right: 0px ;
}
}
.pip-main-body {
position: relative;
.flex-container;
.flex-direction-column;
.flex-var;
.flex-vertical-center;
//.flex-horizontal-start;
overflow: hidden;
}
&.black, &.dark {
md-content {
color: @color-primary-dark ;
}
}
}
// Borders
//------------
.pip-no-border {
.border-radius(0px);
box-shadow: none;
background: none;
}
.pip-border {
background-color: @color-content;
box-shadow: @box-shadow;
.border-radius(@border-radius);
.shadow-card();
}
.pip-border-no-top {
box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.26);
.border-radius-top(0px);
.border-radius-bottom(@border-radius);
.shadow-card();
}
// On tablet
@media (max-width: 1200px) {
.pip-border, .pip-border-no-top {
.border-radius(0px);
box-shadow: none;
}
}