helpers.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. .t-0 {
  2. margin-top: 0 !important;
  3. }
  4. .t-0125 {
  5. margin-top: 0.125rem !important;
  6. }
  7. .t-025 {
  8. margin-top: 0.25rem !important;
  9. }
  10. .t-0375 {
  11. margin-top: 0.375rem !important;
  12. }
  13. .t-05 {
  14. margin-top: 0.5rem !important;
  15. }
  16. .t-0625 {
  17. margin-top: 0.625rem !important;
  18. }
  19. .t-075 {
  20. margin-top: 0.75rem !important;
  21. }
  22. .t-0875 {
  23. margin-top: 0.875rem !important;
  24. }
  25. .t-1 {
  26. margin-top: 1rem !important;
  27. }
  28. .t-1125 {
  29. margin-top: 1.125rem !important;
  30. }
  31. .t-125 {
  32. margin-top: 1.25rem !important;
  33. }
  34. .t-1375 {
  35. margin-top: 1.375rem !important;
  36. }
  37. .t-15 {
  38. margin-top: 1.5rem !important;
  39. }
  40. .t-1625 {
  41. margin-top: 1.625rem !important;
  42. }
  43. .t-175 {
  44. margin-top: 1.75rem !important;
  45. }
  46. .t-1875 {
  47. margin-top: 1.875rem !important;
  48. }
  49. .t-2 {
  50. margin-top: 2rem !important;
  51. }
  52. .t-3 {
  53. margin-top: 3rem !important;
  54. }
  55. .t-4 {
  56. margin-top: 4rem !important;
  57. }
  58. .t-5 {
  59. margin-top: 5rem !important;
  60. }
  61. .b-0 {
  62. margin-bottom: 0 !important;
  63. }
  64. .b-0125 {
  65. margin-bottom: 0.125rem !important;
  66. }
  67. .b-025 {
  68. margin-bottom: 0.25rem !important;
  69. }
  70. .b-0375 {
  71. margin-bottom: 0.375rem !important;
  72. }
  73. .b-05 {
  74. margin-bottom: 0.5rem !important;
  75. }
  76. .b-0625 {
  77. margin-bottom: 0.625rem !important;
  78. }
  79. .b-075 {
  80. margin-bottom: 0.75rem !important;
  81. }
  82. .b-0875 {
  83. margin-bottom: 0.875rem !important;
  84. }
  85. .b-1 {
  86. margin-bottom: 1rem !important;
  87. }
  88. .b-1125 {
  89. margin-bottom: 1.125rem !important;
  90. }
  91. .b-125 {
  92. margin-bottom: 1.25rem !important;
  93. }
  94. .b-1375 {
  95. margin-bottom: 1.375rem !important;
  96. }
  97. .b-15 {
  98. margin-bottom: 1.5rem !important;
  99. }
  100. .b-1625 {
  101. margin-bottom: 1.625rem !important;
  102. }
  103. .b-175 {
  104. margin-bottom: 1.75rem !important;
  105. }
  106. .b-1875 {
  107. margin-bottom: 1.875rem !important;
  108. }
  109. .b-2 {
  110. margin-bottom: 2rem !important;
  111. }
  112. .b-3 {
  113. margin-bottom: 3rem !important;
  114. }
  115. .b-4 {
  116. margin-bottom: 4rem !important;
  117. }
  118. .b-5 {
  119. margin-bottom: 5rem !important;
  120. }
  121. .left {
  122. text-align: left !important;
  123. }
  124. .center {
  125. text-align: center !important;
  126. }
  127. .right {
  128. text-align: right !important;
  129. }
  130. .row {
  131. display: flex !important;
  132. }
  133. .column {
  134. display: flex !important;
  135. flex-direction: column !important;
  136. }
  137. // Überprüfen, ob es verwendet wird
  138. .flex-centered {
  139. align-items: center;
  140. justify-content: center;
  141. }
  142. .flex-left {
  143. justify-content: start;
  144. }
  145. .flex-right {
  146. justify-content: end;
  147. }
  148. .gap-01 {
  149. gap: 0.1rem;
  150. }
  151. .gap-02 {
  152. gap: 0.2rem;
  153. }
  154. .gap-03 {
  155. gap: 0.3rem;
  156. }
  157. .gap-04 {
  158. gap: 0.4rem;
  159. }
  160. .gap-05 {
  161. gap: 0.5rem;
  162. }
  163. .gap-06 {
  164. gap: 0.6rem;
  165. }
  166. .gap-07 {
  167. gap: 0.7rem;
  168. }
  169. .gap-08 {
  170. gap: 0.8rem;
  171. }
  172. .gap-09 {
  173. gap: 0.9rem;
  174. }
  175. .gap-10 {
  176. gap: 1rem;
  177. }
  178. .gap-11 {
  179. gap: 1.1rem;
  180. }
  181. .gap-12 {
  182. gap: 1.2rem;
  183. }
  184. .gap-13 {
  185. gap: 1.3rem;
  186. }
  187. .gap-14 {
  188. gap: 1.4rem;
  189. }
  190. .gap-15 {
  191. gap: 1.5rem;
  192. }
  193. .gap-16 {
  194. gap: 1.6rem;
  195. }
  196. .gap-17 {
  197. gap: 1.7rem;
  198. }
  199. .gap-18 {
  200. gap: 1.8rem;
  201. }
  202. .gap-19 {
  203. gap: 1.9rem;
  204. }
  205. .gap-20 {
  206. gap: 2rem;
  207. }