37 lines
816 B
CSS
37 lines
816 B
CSS
/* ------------------------------------------------------------
|
|
* Name : admin.css
|
|
* Desc : Admin StyleSheet
|
|
* Created : 2016/9/11 Tri-aBility by Junheum,Choi
|
|
* 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;
|
|
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; } |