common.css 3.57 KB
/*reset start*/
body, p, blockquote, figure, hr, h1, h2, h3, h4, h5, h6, ul, menu, dir, ol, dl, dd, fieldset, input[type=radio], input[type=checkbox], input[type=range], pre, xmp, plaintext, listing {
    margin: 0;
    white-space: inherit;
}
ul, menu, dir, ol, legend, fieldset, input, input[type=password], input[type=search], textarea, input[type=hidden], input[type=image], input[type=file], input[type=radio], input[type=checkbox], input[type=range], input[type=button], input[type=submit], input[type=reset], button {
    padding: 0;
}
input[type=search], input[type=button], input[type=submit], input[type=reset] {
    -webkit-appearance: none;
}
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 400;
}
cite, var, address, em {
    font-style: normal;
}
a:-webkit-any-link {
    text-decoration: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
fieldset, iframe {
    border: 0;
}
ol, ul {
    list-style: none;
}
input, textarea, select, button {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    margin: 0;
}
input, select, button {
    vertical-align: middle;
    color: inherit;
}
button {
    *overflow: visible;
}
html {
    -webkit-text-size-adjust: none;
}
em,i {
    font-style: normal;
}
:active {
    outline: 0 none;
}
img {
    display: block;
    border: none;
}
a:link, a:visited, a:active {
    text-decoration: none;
}
input,input:focus {outline:none;}
textarea,textarea:focus {outline:none;}
select {
	border: none;
	outline: none;
}
.clearfix:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.clearfix {
    zoom: 1;
}
.extra {
    position: relative;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.t-l {
    text-align: left;
}
.t-c {
    text-align: center;
}
.t-r {
    text-align: right;
}
.relative {
	position: relative;
    right: 0;
    top: 0;
}
.absolute {
	position: absolute;
    right: 0;
    top: 0;
}
.window-shadow {
    background: none !important;
    -moz-box-shadow: 0px 0px 0px #cccccc !important;
    -webkit-box-shadow: 0px 0px 0px #cccccc !important;
    box-shadow: 0px 0px 0px #cccccc !important;
    filter: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
}
/*reset end*/
/* button */
.btn,input.btn {
    display: inline-block;
    padding: 7px 15px;
    border: 1px solid #bfbfbf;
    text-align: center;
    cursor: pointer;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    outline: none;
    line-height: normal;
}
.btn.btn-c-block {
    font-size: 14px;
    font-weight: 400;
    padding: 0px 0px;
    width: 96px;
    height: 42px;
    line-height: 42px;
}
.btn.btn-block {
    font-size: 16px;
    border: none;
}
.btn.btn-primary{
    color: #fff;
    border-color: #4a8bc5;
    background-color: #4a8bc5;
}
.btn.btn-primary:hover {
	color: #fff;
    border-color: #3c78ad;
    background-color: #3c78ad;
}
.btn.btn-success {
	color: #fff;
    border-color: #02afae;
    background-color: #02afae;
}
.btn.btn-success:hover {
	color: #fff;
    border-color: #009a99;
    background-color: #009a99;
}
.btn.btn-cancel {
	color: #fff;
    border-color: #c4c4c6;
    background-color: #c4c4c6;
}
.btn.btn-cancel:hover {
	color: #fff;
    border-color: #b2a9a9;
    background-color: #b2a9a9;
}
/* radio */
.radio-span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    border: 1px solid #81bbbc;
    background: #fff;
    margin-right: 5px;
    vertical-align: middle;
}