104 lines
2.4 KiB
CSS
104 lines
2.4 KiB
CSS
/* ------------------------------------------------------------
|
|
* Name : admin.css
|
|
* Desc : Admin StyleSheet
|
|
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
|
* Updated :
|
|
------------------------------------------------------------ */
|
|
|
|
@charset "utf-8";
|
|
/*###########################################################################################
|
|
#############################공통 레이아웃###################################################
|
|
#############################################################################################*/
|
|
/* CSS Document */
|
|
|
|
/*
|
|
* * Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com)
|
|
* * Code licensed under the Apache License v2.0.
|
|
* * For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
|
*/
|
|
|
|
* {
|
|
margin:0px;
|
|
padding:0px;
|
|
border:0px;
|
|
font-size:14px;
|
|
}
|
|
|
|
body {
|
|
background-color: #eee;
|
|
}
|
|
|
|
input[type=text],input[type=password]{
|
|
display: inline-block;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
white-space: nowrap;
|
|
}
|
|
select,textarea,button {
|
|
display: inline-block;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
white-space: nowrap;
|
|
}
|
|
a:link { text-decoration: none; }
|
|
a:visited { text-decoration: none; }
|
|
a:hover { text-decoration: underline; }
|
|
a:active { text-decoration: underline; }
|
|
|
|
div#main{
|
|
padding-top:10px;
|
|
padding-bottom:10px;
|
|
/* border:1px solid blue; */
|
|
width:100%;
|
|
}
|
|
|
|
div#main div#content{
|
|
padding-top:10px;
|
|
padding-left:30px;
|
|
/* border:1px solid red; */
|
|
width:100%;
|
|
}
|
|
|
|
div.indexTable_wrapper{
|
|
width: 100%;
|
|
}
|
|
div.indexTable_wrapper div.indexTable_head {
|
|
padding:5px 0;
|
|
}
|
|
div.indexTable_wrapper div.indexTable_head ul.nav li.nav-item{
|
|
/* border:1px solid red; */
|
|
margin-left:15px;
|
|
}
|
|
div.indexTable_wrapper div.indexTable_body {
|
|
width:100%;
|
|
overflow-x: auto;
|
|
padding-top:5px;
|
|
padding-bottom:5px;
|
|
}
|
|
div.indexTable_wrapper div.indexTable_body table.indexTable{
|
|
white-space: nowrap;
|
|
}
|
|
div.indexTable_wrapper div.indexTable_body table.indexTable th{
|
|
text-align:center;
|
|
font-size: 16px;
|
|
}
|
|
div.indexTable_wrapper div.indexTable_body table.indexTable td{
|
|
text-align:center;
|
|
}
|
|
|
|
div.indexTable_wrapper div.indexTable_body ul.nav li.nav-item{
|
|
/* border:1px solid red; */
|
|
margin-left:15px;
|
|
}
|
|
|
|
|
|
div.indexTable_wrapper div.indexTable_tail {
|
|
text-align:center;
|
|
}
|
|
div.indexTable_wrapper div.indexTable_tail ul.justify-content-center {
|
|
/* border:1px solid red; */
|
|
margin-top:20px;
|
|
}
|