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.

128 lines
2.2 KiB

2 years ago
  1. .editor-styleguide {
  2. h3,h4,ul,ol,li,p,span {
  3. color:#232323;
  4. font-weight: 400;
  5. }
  6. h3 {
  7. font-size: 20px;
  8. font-weight: bold;
  9. margin-bottom: 12px !important;
  10. }
  11. h4 {
  12. font-size: 18px;
  13. font-weight: 500;
  14. margin-bottom: 12px !important;
  15. }
  16. p {
  17. font-size: 14px;
  18. font-weight: normal;
  19. margin-bottom: 16px;
  20. }
  21. ol {
  22. list-style: none;
  23. }
  24. ol li {
  25. font-size: 14px;
  26. margin-bottom: 8px;
  27. list-style-type: decimal;
  28. &:last-child {
  29. margin-bottom: 0;
  30. }
  31. &.ql-indent-1 {
  32. margin-left: 20px;
  33. list-style-type: disc;
  34. &::marker {
  35. font-size: 14px;
  36. }
  37. }
  38. &.ql-indent-2 {
  39. margin-left: 40px;
  40. list-style-type: circle;
  41. &::marker {
  42. font-size: 14px;
  43. }
  44. }
  45. }
  46. ul li {
  47. font-size: 14px;
  48. margin-bottom: 8px;
  49. &:last-child {
  50. margin-bottom: 0;
  51. }
  52. &.ql-indent-1 {
  53. margin-left: 20px;
  54. &::marker {
  55. font-size: 14px;
  56. }
  57. }
  58. &.ql-indent-2 {
  59. margin-left: 40px;
  60. &::marker {
  61. font-size: 14px;
  62. }
  63. }
  64. }
  65. li::marker {
  66. font-family: "Arial" , cursive, sans-serif;
  67. font-size: 14px;
  68. font-weight: 400;
  69. }
  70. }
  71. @media screen and (min-width:768px) {
  72. .editor-styleguide {
  73. h3 {
  74. font-size: 20px;
  75. font-weight: bold;
  76. margin-bottom: 16px !important;
  77. }
  78. h4 {
  79. font-size: 18px;
  80. font-weight: 500;
  81. margin-bottom: 16px !important;
  82. }
  83. p {
  84. font-size: 16px;
  85. margin-bottom: 32px;
  86. }
  87. ul,ol {
  88. margin-bottom: 32px;
  89. }
  90. ol li {
  91. font-size: 16px;
  92. margin-bottom: 16px;
  93. &:last-child {
  94. margin-bottom: 0;
  95. }
  96. &.ql-indent-1 {
  97. &::marker {
  98. font-size: 16px;
  99. }
  100. }
  101. &.ql-indent-2 {
  102. &::marker {
  103. font-size: 16px;
  104. }
  105. }
  106. }
  107. ul li {
  108. font-size: 16px;
  109. margin-bottom: 12px;
  110. &:last-child {
  111. margin-bottom: 0;
  112. }
  113. &.ql-indent-1 {
  114. &::marker {
  115. font-size: 16px;
  116. }
  117. }
  118. &.ql-indent-2 {
  119. &::marker {
  120. font-size: 16px;
  121. }
  122. }
  123. }
  124. li::marker {
  125. font-size: 16px;
  126. }
  127. }
  128. }