81 lines
1.7 KiB
CSS
81 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;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
div.layout_top {
|
|
height: 51px;
|
|
margin-bottom: 10px;
|
|
border-top: 1px solid gray;
|
|
border-bottom: 1px solid gray;
|
|
background-color: #e8e9ea;
|
|
}
|
|
|
|
div.layout_bottom {
|
|
height: 51px;
|
|
margin-top: 10px;
|
|
border-top: 1px solid gray;
|
|
border-bottom: 1px solid gray;
|
|
background-color: #efefef;
|
|
background-color: #e8e9ea;
|
|
}
|
|
|
|
table.layout_middle {
|
|
width: 100%;
|
|
/* border: 1px solid blue; */
|
|
}
|
|
|
|
table.layout_middle td.layout_left {
|
|
vertical-align: top;
|
|
/* border: 1px solid red; */
|
|
}
|
|
|
|
table.layout_middle td.layout_right {
|
|
padding-top: 5px;
|
|
padding-left: 23px;
|
|
padding-right: 5px;
|
|
padding-bottom: 5px;
|
|
/* overflow: auto; */
|
|
/* border: 1px solid blue; */
|
|
}
|
|
|
|
table.layout_middle td.layout_right div.layout_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;
|
|
}
|
|
|
|
table.layout_middle td.layout_right div.layout_header li.nav-item {}
|
|
|
|
table.layout_middle td.layout_right div.layout_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;
|
|
}
|
|
|
|
table.layout_middle td.layout_right div.layout_content {
|
|
/*content 부분*/
|
|
padding: 5px;
|
|
border-left: 1px solid gray;
|
|
border-right: 1px solid gray;
|
|
} |