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.
 
 
 
 
 
 

100 lines
2.0 KiB

  1. /*
  2. * 版 本 Learun-ADMS V7.0.3 力软敏捷开发框架(http://www.learun.cn)
  3. * Copyright (c) 2013-2018 上海力软信息技术有限公司
  4. * 创建人:力软-前端开发组
  5. * 日 期:2017.03.16
  6. * 描 述:前端通用样式表
  7. */
  8. *,
  9. *:before,
  10. *:after {
  11. -moz-box-sizing: border-box;
  12. -webkit-box-sizing: border-box;
  13. box-sizing: border-box;
  14. }
  15. ::-webkit-scrollbar-track {
  16. border-radius: 10px;
  17. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  18. }
  19. ::-webkit-scrollbar-thumb {
  20. background-color: rgba(0, 0, 0, 0.05);
  21. border-radius: 10px;
  22. -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
  23. }
  24. ::-webkit-scrollbar-thumb {
  25. background-color: rgba(0, 0, 0, 0.2);
  26. border-radius: 10px;
  27. -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, .1);
  28. }
  29. ::-webkit-scrollbar {
  30. width: 16px;
  31. height: 16px;
  32. }
  33. ::-webkit-scrollbar-track,
  34. ::-webkit-scrollbar-thumb {
  35. border-radius: 999px;
  36. border: 5px solid transparent;
  37. }
  38. ::-webkit-scrollbar-track {
  39. box-shadow: 1px 1px 5px rgba(144, 146, 152, 0.3) inset;
  40. }
  41. ::-webkit-scrollbar-thumb {
  42. min-height: 20px;
  43. background-clip: content-box;
  44. box-shadow: 0 0 0 5px rgba(144, 146, 152, 0.3) inset;
  45. }
  46. ::-webkit-scrollbar-corner {
  47. background: transparent;
  48. }
  49. html {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. body {
  54. margin: 0px;
  55. padding: 0px;
  56. width: 100%;
  57. height: 100%;
  58. font-family: PingFangSC-Regular,Microsoft YaHei,SimSun,Arial,Helvetica,Verdana,sans-serif !important;
  59. color: #333;
  60. font-size: 12px;
  61. background-color: initial;
  62. overflow: hidden;
  63. }
  64. ul,li {
  65. list-style: none;
  66. margin: 0px;
  67. padding: 0px;
  68. }
  69. a {
  70. color: #000000;
  71. text-decoration: none;
  72. }
  73. a:hover {
  74. color: #000000;
  75. text-decoration: none;
  76. }
  77. a:focus {
  78. outline: none;
  79. -moz-outline: none;
  80. color: #000000;
  81. text-decoration: none;
  82. }
  83. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  84. background-color: #fff;
  85. opacity: 1;
  86. }
  87. .row {
  88. margin:0;
  89. }