187 lines
2.5 KiB
CSS
187 lines
2.5 KiB
CSS
body, h1, h2, h3, h4, h5, h6 {
|
|
font-family: 微软雅黑, "Microsoft YaHei";
|
|
word-break: break-all;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
*:focus {
|
|
outline: none !important;
|
|
}
|
|
|
|
input[type="checkbox"],
|
|
input[type="radio"] {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.radio input[type="radio"],
|
|
.radio-inline input[type="radio"],
|
|
.checkbox input[type="checkbox"],
|
|
.checkbox-inline input[type="checkbox"] {
|
|
margin-top: 5px;
|
|
margin-top: 1px \9;
|
|
/* IE8-9 */
|
|
}
|
|
|
|
|
|
.margin-top-xs {
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.margin-top-xs {
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.margin-top-med {
|
|
margin-top: 100px;
|
|
}
|
|
|
|
.margin-top-lg {
|
|
margin-top: 150px;
|
|
}
|
|
|
|
.margin-top-ex {
|
|
margin-top: 200px;
|
|
}
|
|
|
|
.container-90 {
|
|
width: 90%;
|
|
}
|
|
|
|
.container-80 {
|
|
width: 80%;
|
|
}
|
|
|
|
.container-70 {
|
|
width: 70%;
|
|
}
|
|
|
|
.container-60 {
|
|
width: 60%;
|
|
}
|
|
|
|
.rowByRow .row + .row {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.modal-mini .modal-header {
|
|
padding: 5px;
|
|
}
|
|
|
|
.modal-mini .modal-header h4 {
|
|
margin: 0;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.modal-mini .modal-body {
|
|
padding: 8px;
|
|
}
|
|
|
|
.modal-mini .modal-footer {
|
|
margin-top: 5px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.modal-mini .modal-dialog {
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.modal-wide .modal-dialog {
|
|
width: 900px;
|
|
}
|
|
|
|
|
|
.form-inline select {
|
|
width: auto;
|
|
}
|
|
|
|
select.select-sm {
|
|
padding: 3px 5px;
|
|
font-size: 12px;
|
|
height: auto;
|
|
}
|
|
|
|
select.form-control-sm {
|
|
padding: 3px 5px;
|
|
font-size: 12px;
|
|
height: 30px;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
box-shadow: 0 0 10px #b1b1b1;
|
|
}
|
|
|
|
.glyphicon, .fa {
|
|
transition: all linear 0.3s;
|
|
}
|
|
|
|
*:hover > .glyphicon,
|
|
*:hover > .fa {
|
|
transition: all linear 0.3s;
|
|
-webkit-transform: rotate(360deg);
|
|
-moz-transform: rotate(360deg);
|
|
-o-transform: rotate(360deg);
|
|
transform: rotate(360deg);
|
|
}
|
|
|
|
/*按钮动画*/
|
|
.btn-mini {
|
|
padding: 3px 5px;
|
|
font-size: 80%;
|
|
}
|
|
|
|
.btn {
|
|
transition: all linear 0.3s;
|
|
}
|
|
|
|
.btn:hover {
|
|
transition: all linear 0.3s;
|
|
}
|
|
|
|
/*弹出菜单动画*/
|
|
.caret {
|
|
transition: all linear 0.2s;
|
|
}
|
|
|
|
.open .caret {
|
|
-moz-transform: rotate(180deg);
|
|
-ms-transform: rotate(180deg);
|
|
-o-transform: rotate(180deg);
|
|
-webkit-transform: rotate(180deg);
|
|
transform: rotate(180deg);
|
|
transition: all linear 0.2s;
|
|
}
|
|
|
|
/*按钮组修正*/
|
|
.input-group-addon .checkbox-inline,
|
|
.input-group-addon > label {
|
|
vertical-align: initial;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/*修正样式*/
|
|
.text-upper {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.text-capitalize {
|
|
text-transform: capitalize;
|
|
}
|
|
|
|
.label {
|
|
vertical-align: middle;
|
|
text-shadow: none;
|
|
}
|
|
|
|
.label-normal {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.label-mini {
|
|
font-size: 11px;
|
|
font-weight: normal;
|
|
padding: 0.1em 0.4em 0.1em 0.4em;
|
|
vertical-align: middle;
|
|
}
|