cfmgrv4/public/css/admin.css
2024-09-24 17:29:05 +09:00

67 lines
1.6 KiB
CSS

/* ------------------------------------------------------------
* 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 > div.head {
height: 51px;
border: 1px solid gray;
background-color: #f8f9fa;
}
div.layout > div.tail {
height: 51px;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: lightgray;
text-align: center;
padding: 10px;
}
div.layout > div.center > div.content {
margin-top: 20px;
margin-left: 25px;
margin-right: 20px;
}
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;
}