111 lines
1.4 KiB
CSS
111 lines
1.4 KiB
CSS
/* 应用bootstrap之后,定制化的css, less是个问题
|
||
*******************************************************************************/
|
||
* {
|
||
font-family: Helvetica, Tahoma, Arial, "Microsoft YaHei", "微软雅黑", SimSun, "宋体", STXihei, "华文细黑", Heiti, "黑体", sans-serif !important;
|
||
}
|
||
body{
|
||
padding-top: 70px;
|
||
}
|
||
|
||
.float-left{ float: left; }
|
||
.float-right{ float: right; }
|
||
.clearfix {
|
||
width: 100%;
|
||
height: 0px;
|
||
clear: both;
|
||
display: block;
|
||
}
|
||
.ul-style-none{
|
||
list-style-type: none;
|
||
}
|
||
|
||
.block-inline{
|
||
display: inline-block;
|
||
}
|
||
|
||
.border-box {
|
||
-webkit-box-sizing: border-box;
|
||
-moz-box-sizing: border-box;
|
||
-box-sizing: border-box;
|
||
}
|
||
|
||
.div-inline {
|
||
display: inline-block;
|
||
}
|
||
|
||
/*文字不换行*/
|
||
.text_nowrap {
|
||
word-break: keep-all;
|
||
white-space: nowrap;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
}
|
||
|
||
/*字体 斜体*/
|
||
.font-italic {
|
||
font-style: italic;
|
||
}
|
||
|
||
/*字体加粗*/
|
||
.font-bolder {
|
||
font-weight: bolder;
|
||
}
|
||
|
||
.text-center {
|
||
text-align: center;
|
||
}
|
||
|
||
.clear-both {
|
||
clear: both;
|
||
}
|
||
|
||
.full-width-layouts{
|
||
padding: 0 15px;
|
||
}
|
||
/* block 未定义宽度时候 居中 */
|
||
.center {
|
||
width: auto;
|
||
display: table;
|
||
margin-left: auto;
|
||
margin-right: auto;
|
||
}
|
||
.text-center {
|
||
text-align: center;
|
||
}
|
||
|
||
/*颜色*/
|
||
.muted{
|
||
color: #999999;
|
||
}
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/* footer */
|
||
#footer{
|
||
margin-top: 50px;
|
||
}
|
||
#footer .desc a{
|
||
margin: 0px 5px;
|
||
}
|