You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.3 KiB
70 lines
1.3 KiB
/*公共样式*/
|
|
|
|
/*登录页*/
|
|
.login-body{
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.login-body .line {
|
|
border-bottom: 1px solid #dadada;
|
|
line-height: 0.1em;
|
|
margin: 10px 0 20px;
|
|
}
|
|
|
|
.login-body .line span {
|
|
background: #fff;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.login-form {
|
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.login-form h2{
|
|
text-align: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.login-form h6 {
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
/*datatable修改*/
|
|
table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
|
|
table.dataTable thead > tr > td.sorting_asc,
|
|
table.dataTable thead > tr > td.sorting_desc,
|
|
table.dataTable thead > tr > td.sorting {
|
|
padding-right: 8px;
|
|
}
|
|
|
|
table.dataTable thead > tr > th > a{
|
|
position: relative;
|
|
display: block;
|
|
color:#333333;
|
|
font-family: 'Glyphicons Halflings';
|
|
}
|
|
|
|
table.dataTable thead > tr > th > a:after{
|
|
position: absolute;
|
|
right: 0px;
|
|
opacity: 0.2;
|
|
content: "\e150";
|
|
}
|
|
|
|
table.dataTable thead > tr > th > a.asc:after{
|
|
position: absolute;
|
|
right: 0px;
|
|
content: "\e155";
|
|
opacity: 0.6;
|
|
}
|
|
|
|
table.dataTable thead > tr > th > a.desc:after{
|
|
position: absolute;
|
|
right: 0px;
|
|
content: "\e156";
|
|
opacity: 0.6;
|
|
}
|