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.

69 lines
1.3 KiB

6 years ago
  1. /*公共样式*/
  2. /*登录页*/
  3. .login-body{
  4. display: flex;
  5. align-items: center;
  6. height: 100vh;
  7. }
  8. .login-body .line {
  9. border-bottom: 1px solid #dadada;
  10. line-height: 0.1em;
  11. margin: 10px 0 20px;
  12. }
  13. .login-body .line span {
  14. background: #fff;
  15. padding: 0 10px;
  16. }
  17. .login-form {
  18. box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  19. margin: 0 auto;
  20. }
  21. .login-form h2{
  22. text-align: center;
  23. margin-bottom: 20px;
  24. }
  25. .login-form h6 {
  26. text-align: center;
  27. }
  28. /*datatable修改*/
  29. table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting,
  30. table.dataTable thead > tr > td.sorting_asc,
  31. table.dataTable thead > tr > td.sorting_desc,
  32. table.dataTable thead > tr > td.sorting {
  33. padding-right: 8px;
  34. }
  35. table.dataTable thead > tr > th > a{
  36. position: relative;
  37. display: block;
  38. color:#333333;
  39. font-family: 'Glyphicons Halflings';
  40. }
  41. table.dataTable thead > tr > th > a:after{
  42. position: absolute;
  43. right: 0px;
  44. opacity: 0.2;
  45. content: "\e150";
  46. }
  47. table.dataTable thead > tr > th > a.asc:after{
  48. position: absolute;
  49. right: 0px;
  50. content: "\e155";
  51. opacity: 0.6;
  52. }
  53. table.dataTable thead > tr > th > a.desc:after{
  54. position: absolute;
  55. right: 0px;
  56. content: "\e156";
  57. opacity: 0.6;
  58. }