/* ------------------------------------------------------------ * Name : admin.css * Desc : Admin StyleSheet * Created : 2016/9/11 Tri-aBility by Junheum,Choi * Updated : ------------------------------------------------------------ */ * { margin: 0px; padding: 0px; font-size: 14px; } body { height: 100vw; /* 화면 넓이의 100% */ height: 100vh; /* 화면 높이의 100% */ background-color: #efefef; /* border:1px solid blue; */ } div.layout > nav.head { height: 51px; border-top: 1px solid gray; border-bottom: 1px solid gray; background-color: #f8f9fa; } div.layout > nav.tail { height: 51px; bottom: 0; left: 0; width: 100%; background-color: silver; text-align: center; padding: 10px; } div.layout > div.center > div.left_menu { /* border-color: 1px solid red; */ } div.layout > div.center > div.content { margin: 15px 15px 15px 25px; } div.layout > div.center > div.content > div.header { /*content 헤더라인*/ height: 50px; background-color: #e7e7e7; } div.layout > div.center > div.content > div.header > ul.nav { /*nav-tabs 헤더라인*/ border-top: 1px solid gray; border-left: 1px solid gray; border-right: 1px solid gray; border-radius: 15px 15px 0px 0px; } div.layout > div.center > div.content > div.center { /*content 부분*/ height: 100%; padding: 15px; /* border: 1px solid gray; */ border-left: 1px solid gray; border-right: 1px solid gray; background-color: white; } div.layout > div.center > div.content div.footer { /*content 하단라인*/ height: 20px; border-left: 1px solid gray; border-right: 1px solid gray; border-bottom: 1px solid gray; border-radius: 0px 0px 15px 15px; }