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.

helpers.less 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. .df { display: flex !important; }
  2. .di { display: inline !important; }
  3. .dif { display: inline-flex !important; }
  4. .dib { display: inline-block !important; }
  5. .ac { align-items: center !important; }
  6. .tc { text-align: center !important; }
  7. .jc { justify-content: center !important; }
  8. .js { justify-content: flex-start !important; }
  9. .je { justify-content: flex-end !important; }
  10. .sb { justify-content: space-between !important; }
  11. .fc { flex-direction: column !important; }
  12. .f1 { flex: 1 !important; }
  13. .fw { flex-wrap: wrap !important; }
  14. .vm { vertical-align: middle !important; }
  15. .w-100 { width: 100% !important; }
  16. .h-100 { height: 100% !important; }
  17. .mono {
  18. font-family: var(--fonts-monospace) !important;
  19. font-size: .9em !important; /* compensate for monospace fonts being usually slightly larger */
  20. }
  21. .bold { font-weight: 600 !important; }
  22. .word-break {
  23. word-wrap: break-word !important;
  24. }
  25. .full-screen-width { width: 100vw !important; }
  26. .full-screen-height { height: 100vh !important; }
  27. .rounded { border-radius: var(--border-radius) !important; }
  28. .rounded-top { border-radius: var(--border-radius) var(--border-radius) 0 0 !important; }
  29. .rounded-bottom { border-radius: 0 0 var(--border-radius) var(--border-radius) !important; }
  30. .rounded-left { border-radius: var(--border-radius) 0 0 var(--border-radius) !important; }
  31. .rounded-right { border-radius: 0 var(--border-radius) var(--border-radius) 0 !important; }
  32. .border-secondary { border: 1px solid var(--color-secondary) !important; }
  33. .border-secondary-top { border-top: 1px solid var(--color-secondary) !important; }
  34. .border-secondary-bottom { border-bottom: 1px solid var(--color-secondary) !important; }
  35. .border-secondary-left { border-left: 1px solid var(--color-secondary) !important; }
  36. .border-secondary-right { border-right: 1px solid var(--color-secondary) !important; }
  37. .no-transition { transition: none !important; }
  38. .bg-red { background: var(--color-red) !important; }
  39. .bg-orange { background: var(--color-orange) !important; }
  40. .bg-yellow { background: var(--color-yellow) !important; }
  41. .bg-olive { background: var(--color-olive) !important; }
  42. .bg-green { background: var(--color-green) !important; }
  43. .bg-teal { background: var(--color-teal) !important; }
  44. .bg-blue { background: var(--color-blue) !important; }
  45. .bg-violet { background: var(--color-violet) !important; }
  46. .bg-purple { background: var(--color-purple) !important; }
  47. .bg-pink { background: var(--color-pink) !important; }
  48. .bg-brown { background: var(--color-brown) !important; }
  49. .bg-grey { background: var(--color-grey) !important; }
  50. .bg-gold { background: var(--color-gold) !important; }
  51. .text-white { color: var(--color-white) !important; }
  52. .m-0 { margin: 0 !important; }
  53. .m-1 { margin: .125rem !important; }
  54. .m-2 { margin: .25rem !important; }
  55. .m-3 { margin: .5rem !important; }
  56. .m-4 { margin: 1rem !important; }
  57. .m-5 { margin: 2rem !important; }
  58. .ml-0 { margin-left: 0 !important; }
  59. .ml-1 { margin-left: .125rem !important; }
  60. .ml-2 { margin-left: .25rem !important; }
  61. .ml-3 { margin-left: .5rem !important; }
  62. .ml-4 { margin-left: 1rem !important; }
  63. .ml-5 { margin-left: 2rem !important; }
  64. .mr-0 { margin-right: 0 !important; }
  65. .mr-1 { margin-right: .125rem !important; }
  66. .mr-2 { margin-right: .25rem !important; }
  67. .mr-3 { margin-right: .5rem !important; }
  68. .mr-4 { margin-right: 1rem !important; }
  69. .mr-5 { margin-right: 2rem !important; }
  70. .mt-0 { margin-top: 0 !important; }
  71. .mt-1 { margin-top: .125rem !important; }
  72. .mt-2 { margin-top: .25rem !important; }
  73. .mt-3 { margin-top: .5rem !important; }
  74. .mt-4 { margin-top: 1rem !important; }
  75. .mt-5 { margin-top: 2rem !important; }
  76. .mb-0 { margin-bottom: 0 !important; }
  77. .mb-1 { margin-bottom: .125rem !important; }
  78. .mb-2 { margin-bottom: .25rem !important; }
  79. .mb-3 { margin-bottom: .5rem !important; }
  80. .mb-4 { margin-bottom: 1rem !important; }
  81. .mb-5 { margin-bottom: 2rem !important; }
  82. .mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
  83. .mx-1 { margin-left: .125rem !important; margin-right: .125rem !important; }
  84. .mx-2 { margin-left: .25rem !important; margin-right: .25rem !important; }
  85. .mx-3 { margin-left: .5rem !important; margin-right: .5rem !important; }
  86. .mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
  87. .mx-5 { margin-left: 2rem !important; margin-right: 2rem !important; }
  88. .my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  89. .my-1 { margin-top: .125rem !important; margin-bottom: .125rem !important; }
  90. .my-2 { margin-top: .25rem !important; margin-bottom: .25rem !important; }
  91. .my-3 { margin-top: .5rem !important; margin-bottom: .5rem !important; }
  92. .my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  93. .my-5 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
  94. .p-0 { padding: 0 !important; }
  95. .p-1 { padding: .125rem !important; }
  96. .p-2 { padding: .25rem !important; }
  97. .p-3 { padding: .5rem !important; }
  98. .p-4 { padding: 1rem !important; }
  99. .p-5 { padding: 2rem !important; }
  100. .pl-0 { padding-left: 0 !important; }
  101. .pl-1 { padding-left: .125rem !important; }
  102. .pl-2 { padding-left: .25rem !important; }
  103. .pl-3 { padding-left: .5rem !important; }
  104. .pl-4 { padding-left: 1rem !important; }
  105. .pl-5 { padding-left: 2rem !important; }
  106. .pr-0 { padding-right: 0 !important; }
  107. .pr-1 { padding-right: .125rem !important; }
  108. .pr-2 { padding-right: .25rem !important; }
  109. .pr-3 { padding-right: .5rem !important; }
  110. .pr-4 { padding-right: 1rem !important; }
  111. .pr-5 { padding-right: 2rem !important; }
  112. .pt-0 { padding-top: 0 !important; }
  113. .pt-1 { padding-top: .125rem !important; }
  114. .pt-2 { padding-top: .25rem !important; }
  115. .pt-3 { padding-top: .5rem !important; }
  116. .pt-4 { padding-top: 1rem !important; }
  117. .pt-5 { padding-top: 2rem !important; }
  118. .pb-0 { padding-bottom: 0 !important; }
  119. .pb-1 { padding-bottom: .125rem !important; }
  120. .pb-2 { padding-bottom: .25rem !important; }
  121. .pb-3 { padding-bottom: .5rem !important; }
  122. .pb-4 { padding-bottom: 1rem !important; }
  123. .pb-5 { padding-bottom: 2rem !important; }
  124. .px-0 { padding-left: 0 !important; padding-right: 0 !important; }
  125. .px-1 { padding-left: .125rem !important; padding-right: .125rem !important; }
  126. .px-2 { padding-left: .25rem !important; padding-right: .25rem !important; }
  127. .px-3 { padding-left: .5rem !important; padding-right: .5rem !important; }
  128. .px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
  129. .px-5 { padding-left: 2rem !important; padding-right: 2rem !important; }
  130. .py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  131. .py-1 { padding-top: .125rem !important; padding-bottom: .125rem !important; }
  132. .py-2 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
  133. .py-3 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
  134. .py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  135. .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }