44 lines
1.0 KiB
CSS
44 lines
1.0 KiB
CSS
/* ------------------------------------------------------------
|
|
* Name : default.css
|
|
* Desc : GIGSNS Layout
|
|
* Created : 2012/07 GIGAKOREA by Donghee,kim
|
|
* Updated :
|
|
------------------------------------------------------------ */
|
|
@charset "utf-8";
|
|
/*###########################################################################################
|
|
#############################공통 레이아웃###################################################
|
|
#############################################################################################*/
|
|
|
|
* {
|
|
margin:0px;
|
|
padding:0px;
|
|
border:0px;
|
|
font-size:14px;
|
|
}
|
|
|
|
body {
|
|
background-color: white;
|
|
}
|
|
|
|
input[type=text],input[type=password]{
|
|
display: inline-block;
|
|
width:300px;
|
|
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;
|
|
}
|
|
|
|
div.pagination {
|
|
text-align:center;
|
|
padding-top:5px;
|
|
}
|