common.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. button {
  2. border: none;
  3. }
  4. .w-full {
  5. width: 100%;
  6. }
  7. .font-size-12 {
  8. font-size: 12px;
  9. }
  10. .font-size-14 {
  11. font-size: 14px;
  12. }
  13. .font-size-16 {
  14. font-size: 16px;
  15. }
  16. .font-size-18 {
  17. font-size: 18px;
  18. }
  19. .font-weight-400 {
  20. font-weight: 400;
  21. }
  22. .font-weight-500 {
  23. font-weight: 500 !important;
  24. }
  25. .font-weight-600 {
  26. font-weight: 600;
  27. }
  28. .font-weight-700 {
  29. font-weight: 700 !important;
  30. }
  31. .font-weight-800 {
  32. font-weight: 800;
  33. }
  34. .line-height-20 {
  35. line-height: 20px;
  36. }
  37. .text-align-center {
  38. text-align: center;
  39. }
  40. .white-space-normal {
  41. word-wrap: break-word;
  42. word-break: break-all;
  43. white-space: normal;
  44. }
  45. .margin-top-10 {
  46. margin-top: 10px;
  47. }
  48. .margin-left-3 {
  49. margin-left: 3px;
  50. }
  51. .margin-right-3 {
  52. margin-right: 3px;
  53. }
  54. .margin-bottom-8 {
  55. margin-bottom: 8px;
  56. }
  57. .margin-bottom-5 {
  58. margin-bottom: 5px;
  59. }
  60. .margin-bottom-3 {
  61. margin-bottom: 3px;
  62. }
  63. .margin-bottom-10 {
  64. margin-bottom: 10px;
  65. }
  66. .padding-top-10 {
  67. padding-top: 10px;
  68. }
  69. .padding-left-10 {
  70. padding-left: 10px;
  71. }
  72. .cursor-pointer {
  73. cursor: pointer;
  74. }
  75. .flex-box {
  76. display: flex;
  77. }
  78. .justify-between {
  79. justify-content: space-between;
  80. }
  81. .items-center {
  82. align-items: center;
  83. }
  84. .items-start {
  85. align-items: flex-start;
  86. }
  87. .grid-cols-2 {
  88. display: grid;
  89. grid-template-columns: repeat(2, minmax(0, 1fr));
  90. }
  91. .gap-y-1 {
  92. row-gap: 0.25rem;
  93. }
  94. .triangle-up {
  95. width: 0;
  96. height: 0;
  97. border-left: 5px solid transparent;
  98. border-right: 5px solid transparent;
  99. border-bottom: 10px solid;
  100. }