85 lines
1.7 KiB
CSS
85 lines
1.7 KiB
CSS
/* ------------------------------------------------------------
|
|
* Name : admin.css
|
|
* Desc : Admin StyleSheet
|
|
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
|
* Updated :
|
|
------------------------------------------------------------ */
|
|
* {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px;
|
|
/* font-size: 15px; */
|
|
}
|
|
|
|
body {
|
|
background-color: #efefef;
|
|
}
|
|
|
|
div.top {
|
|
height: 51px;
|
|
margin-bottom: 10px;
|
|
border-top: 1px solid gray;
|
|
border-bottom: 1px solid gray;
|
|
background-color: #e8e9ea;
|
|
}
|
|
|
|
div.middle {
|
|
/* height: 100%; */
|
|
/* display: flex; */
|
|
}
|
|
|
|
div.middle div.left {
|
|
width: 217px;
|
|
/* overflow: auto; */
|
|
/* border: 1px solid red; */
|
|
}
|
|
|
|
div.middle div.center {
|
|
width: 100%;
|
|
/* overflow: auto; */
|
|
/* border: 1px solid blue; */
|
|
}
|
|
|
|
div.middle div.center div.header {
|
|
/*content 헤더라인*/
|
|
height: 55px;
|
|
padding-top: 15px;
|
|
background-color: #e7e7e7;
|
|
border-top: 1px solid gray;
|
|
border-left: 1px solid gray;
|
|
border-right: 1px solid gray;
|
|
border-radius: 15px 15px 0px 0px;
|
|
}
|
|
|
|
div.middle div.center div.header li.nav-item {
|
|
height: 40px;
|
|
}
|
|
|
|
div.middle div.center div.content {
|
|
/*content 부분*/
|
|
padding-top: 15px;
|
|
padding-left: 23px;
|
|
padding-right: 15px;
|
|
padding-bottom: 15px;
|
|
border-left: 1px solid gray;
|
|
border-right: 1px solid gray;
|
|
background-color: white;
|
|
}
|
|
|
|
div.middle div.center 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;
|
|
}
|
|
|
|
div.bottom {
|
|
height: 51px;
|
|
margin-top: 10px;
|
|
border-top: 1px solid gray;
|
|
border-bottom: 1px solid gray;
|
|
background-color: #efefef;
|
|
background-color: #e8e9ea;
|
|
} |