common.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. * {
  2. font-family: PingFangSC-Regular, serif;
  3. }
  4. .pageContainer-body {
  5. width: calc(100% - 175px);
  6. height: 100%;
  7. display: inline-block;
  8. }
  9. .pageContainer-content {
  10. width: 100%;
  11. height: calc(100% - 60px);
  12. padding: 0px 10px 5px;
  13. overflow: hidden;
  14. overflow-y: auto;
  15. }
  16. .page-query-core {
  17. background-color: #ffffff;
  18. /* border:1px solid red; */
  19. /* padding: 12px 12px 8px; */
  20. padding: 0 12px;
  21. border-radius: 4px;
  22. }
  23. .ant-btn {
  24. margin: 0 3px !important;
  25. }
  26. .card-style {
  27. padding: 0 12px;
  28. border-radius: 4px;
  29. }
  30. @font-face {
  31. font-family: numberMH;
  32. src: url(../assets/fonts/Digiface-Regular.ttf);
  33. }
  34. @font-face {
  35. font-family: PingFangSC-Regular;
  36. src: url(../assets/fonts/PingFangSC-Regular.ttf);
  37. }
  38. @font-face {
  39. font-family: PingFangSC-Bold;
  40. src: url(../assets/fonts/PingFangSC-Bold.ttf);
  41. }
  42. /*滚动条样式*/
  43. ::-webkit-scrollbar {
  44. width: 8px;
  45. height: 8px;
  46. }
  47. ::-webkit-scrollbar-thumb {
  48. border-radius: 10px;
  49. background: #dddddd;
  50. }
  51. ::-webkit-scrollbar-track {
  52. border-radius: 10px;
  53. background: #eeeeee;
  54. }
  55. /*边框阴影*/
  56. .border-shadow {
  57. -webkit-box-shadow: 0 0 4px #0000004d;
  58. -moz-box-shadow: 0 0 4px #0000004d;
  59. box-shadow: 0 0 4px #0000004d;
  60. padding: 10px 20px;
  61. }
  62. /* fade-transform */
  63. .fade-transform--move,
  64. .fade-transform-leave-active,
  65. .fade-transform-enter-active {
  66. transition: all .5s;
  67. }
  68. .fade-transform-leave-active {
  69. position: absolute;
  70. }
  71. .fade-transform-enter {
  72. opacity: 0;
  73. transform: translateX(-30px);
  74. }
  75. .fade-transform-leave-to {
  76. opacity: 0;
  77. transform: translateX(30px);
  78. }
  79. .ioc-card-content {
  80. background-color: #ffffff;
  81. border-radius: 4px;
  82. padding: 0 15px;
  83. }