pip-webui
Version:
HTML5 UI for LOB applications
36 lines (26 loc) • 870 B
text/less
// @file Positioning styles
// @copyright Digital Living Software Corp. 2014-2015
// Floats
// -------------------------
.clearfix { .clearfix(); }
.center-block { .center-block(); }
.pull-right { float: right ; }
.pull-left { float: left ; }
// Visibility
//------------
.invisible { visibility: hidden; }
.display{ display: block}
// Hide from screenreaders and browsers
// Credit: HTML5 Boilerplate
.hidden {
display: none ;
visibility: hidden ;
}
// Positioning
//--------------
.position-relative { .position-relative(); }
.position-fixed { .position-fixed(); }
.position-fill { .position-fill(); }
.position-top { .position-top(); }
.position-bottom { .position-bottom(); }
.position-right { .position-absolute(0, none, 0, none)}