index.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. /* stylelint-disable */
  4. /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
  5. .ant-divider {
  6. box-sizing: border-box;
  7. margin: 0;
  8. padding: 0;
  9. color: rgba(0, 0, 0, 0.85);
  10. font-size: 14px;
  11. font-variant: tabular-nums;
  12. line-height: 1.5715;
  13. list-style: none;
  14. font-feature-settings: 'tnum';
  15. border-top: 1px solid rgba(0, 0, 0, 0.06);
  16. }
  17. .ant-divider-vertical {
  18. position: relative;
  19. top: -0.06em;
  20. display: inline-block;
  21. height: 0.9em;
  22. margin: 0 8px;
  23. vertical-align: middle;
  24. border-top: 0;
  25. border-left: 1px solid rgba(0, 0, 0, 0.06);
  26. }
  27. .ant-divider-horizontal {
  28. display: flex;
  29. clear: both;
  30. width: 100%;
  31. min-width: 100%;
  32. margin: 24px 0;
  33. }
  34. .ant-divider-horizontal.ant-divider-with-text {
  35. display: flex;
  36. margin: 16px 0;
  37. color: rgba(0, 0, 0, 0.85);
  38. font-weight: 500;
  39. font-size: 16px;
  40. white-space: nowrap;
  41. text-align: center;
  42. border-top: 0;
  43. border-top-color: rgba(0, 0, 0, 0.06);
  44. }
  45. .ant-divider-horizontal.ant-divider-with-text::before,
  46. .ant-divider-horizontal.ant-divider-with-text::after {
  47. position: relative;
  48. top: 50%;
  49. width: 50%;
  50. border-top: 1px solid transparent;
  51. border-top-color: inherit;
  52. border-bottom: 0;
  53. transform: translateY(50%);
  54. content: '';
  55. }
  56. .ant-divider-horizontal.ant-divider-with-text-left::before {
  57. top: 50%;
  58. width: 5%;
  59. }
  60. .ant-divider-horizontal.ant-divider-with-text-left::after {
  61. top: 50%;
  62. width: 95%;
  63. }
  64. .ant-divider-horizontal.ant-divider-with-text-right::before {
  65. top: 50%;
  66. width: 95%;
  67. }
  68. .ant-divider-horizontal.ant-divider-with-text-right::after {
  69. top: 50%;
  70. width: 5%;
  71. }
  72. .ant-divider-inner-text {
  73. display: inline-block;
  74. padding: 0 1em;
  75. }
  76. .ant-divider-dashed {
  77. background: none;
  78. border-color: rgba(0, 0, 0, 0.06);
  79. border-style: dashed;
  80. border-width: 1px 0 0;
  81. }
  82. .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::before,
  83. .ant-divider-horizontal.ant-divider-with-text.ant-divider-dashed::after {
  84. border-style: dashed none none;
  85. }
  86. .ant-divider-vertical.ant-divider-dashed {
  87. border-width: 0 0 0 1px;
  88. }
  89. .ant-divider-plain.ant-divider-with-text {
  90. color: rgba(0, 0, 0, 0.85);
  91. font-weight: normal;
  92. font-size: 14px;
  93. }
  94. .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::before {
  95. width: 0;
  96. }
  97. .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left::after {
  98. width: 100%;
  99. }
  100. .ant-divider-horizontal.ant-divider-with-text-left.ant-divider-no-default-orientation-margin-left .ant-divider-inner-text {
  101. padding-left: 0;
  102. }
  103. .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::before {
  104. width: 100%;
  105. }
  106. .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right::after {
  107. width: 0;
  108. }
  109. .ant-divider-horizontal.ant-divider-with-text-right.ant-divider-no-default-orientation-margin-right .ant-divider-inner-text {
  110. padding-right: 0;
  111. }
  112. .ant-divider-rtl {
  113. direction: rtl;
  114. }
  115. .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::before {
  116. width: 95%;
  117. }
  118. .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-left::after {
  119. width: 5%;
  120. }
  121. .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::before {
  122. width: 5%;
  123. }
  124. .ant-divider-rtl.ant-divider-horizontal.ant-divider-with-text-right::after {
  125. width: 95%;
  126. }