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 4.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .df { display: flex !important; }
  2. .ac { align-items: center !important; }
  3. .jc { justify-content: center !important; }
  4. .js { justify-content: flex-start !important; }
  5. .je { justify-content: flex-end !important; }
  6. .sb { justify-content: space-between !important; }
  7. .fc { flex-direction: column !important; }
  8. .f1 { flex: 1 !important; }
  9. .rounded { border-radius: var(--border-radius) !important; }
  10. .mono {
  11. font-family: var(--fonts-monospace) !important;
  12. font-size: .9em !important; /* compensate for monospace fonts being usually slighty larger */
  13. }
  14. .word-break {
  15. word-wrap: break-word !important;
  16. word-break: break-all !important;
  17. }
  18. .m-0 { margin: 0 !important; }
  19. .m-1 { margin: .125rem !important; }
  20. .m-2 { margin: .25rem !important; }
  21. .m-3 { margin: .5rem !important; }
  22. .m-4 { margin: 1rem !important; }
  23. .m-5 { margin: 2rem !important; }
  24. .ml-0 { margin-left: 0 !important; }
  25. .ml-1 { margin-left: .125rem !important; }
  26. .ml-2 { margin-left: .25rem !important; }
  27. .ml-3 { margin-left: .5rem !important; }
  28. .ml-4 { margin-left: 1rem !important; }
  29. .ml-5 { margin-left: 2rem !important; }
  30. .mr-0 { margin-right: 0 !important; }
  31. .mr-1 { margin-right: .125rem !important; }
  32. .mr-2 { margin-right: .25rem !important; }
  33. .mr-3 { margin-right: .5rem !important; }
  34. .mr-4 { margin-right: 1rem !important; }
  35. .mr-5 { margin-right: 2rem !important; }
  36. .mt-0 { margin-top: 0 !important; }
  37. .mt-1 { margin-top: .125rem !important; }
  38. .mt-2 { margin-top: .25rem !important; }
  39. .mt-3 { margin-top: .5rem !important; }
  40. .mt-4 { margin-top: 1rem !important; }
  41. .mt-5 { margin-top: 2rem !important; }
  42. .mb-0 { margin-bottom: 0 !important; }
  43. .mb-1 { margin-bottom: .125rem !important; }
  44. .mb-2 { margin-bottom: .25rem !important; }
  45. .mb-3 { margin-bottom: .5rem !important; }
  46. .mb-4 { margin-bottom: 1rem !important; }
  47. .mb-5 { margin-bottom: 2rem !important; }
  48. .mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
  49. .mx-1 { margin-left: .125rem !important; margin-right: .125rem !important; }
  50. .mx-2 { margin-left: .25rem !important; margin-right: .25rem !important; }
  51. .mx-3 { margin-left: .5rem !important; margin-right: .5rem !important; }
  52. .mx-4 { margin-left: 1rem !important; margin-right: 1rem !important; }
  53. .mx-5 { margin-left: 2rem !important; margin-right: 2rem !important; }
  54. .my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  55. .my-1 { margin-top: .125rem !important; margin-bottom: .125rem !important; }
  56. .my-2 { margin-top: .25rem !important; margin-bottom: .25rem !important; }
  57. .my-3 { margin-top: .5rem !important; margin-bottom: .5rem !important; }
  58. .my-4 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
  59. .my-5 { margin-top: 2rem !important; margin-bottom: 2rem !important; }
  60. .p-0 { padding: 0 !important; }
  61. .p-1 { padding: .125rem !important; }
  62. .p-2 { padding: .25rem !important; }
  63. .p-3 { padding: .5rem !important; }
  64. .p-4 { padding: 1rem !important; }
  65. .p-5 { padding: 2rem !important; }
  66. .pl-0 { padding-left: 0 !important; }
  67. .pl-1 { padding-left: .125rem !important; }
  68. .pl-2 { padding-left: .25rem !important; }
  69. .pl-3 { padding-left: .5rem !important; }
  70. .pl-4 { padding-left: 1rem !important; }
  71. .pl-5 { padding-left: 2rem !important; }
  72. .pr-0 { padding-right: 0 !important; }
  73. .pr-1 { padding-right: .125rem !important; }
  74. .pr-2 { padding-right: .25rem !important; }
  75. .pr-3 { padding-right: .5rem !important; }
  76. .pr-4 { padding-right: 1rem !important; }
  77. .pr-5 { padding-right: 2rem !important; }
  78. .pt-0 { padding-top: 0 !important; }
  79. .pt-1 { padding-top: .125rem !important; }
  80. .pt-2 { padding-top: .25rem !important; }
  81. .pt-3 { padding-top: .5rem !important; }
  82. .pt-4 { padding-top: 1rem !important; }
  83. .pt-5 { padding-top: 2rem !important; }
  84. .pb-0 { padding-bottom: 0 !important; }
  85. .pb-1 { padding-bottom: .125rem !important; }
  86. .pb-2 { padding-bottom: .25rem !important; }
  87. .pb-3 { padding-bottom: .5rem !important; }
  88. .pb-4 { padding-bottom: 1rem !important; }
  89. .pb-5 { padding-bottom: 2rem !important; }
  90. .px-0 { padding-left: 0 !important; padding-right: 0 !important; }
  91. .px-1 { padding-left: .125rem !important; padding-right: .125rem !important; }
  92. .px-2 { padding-left: .25rem !important; padding-right: .25rem !important; }
  93. .px-3 { padding-left: .5rem !important; padding-right: .5rem !important; }
  94. .px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
  95. .px-5 { padding-left: 2rem !important; padding-right: 2rem !important; }
  96. .py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  97. .py-1 { padding-top: .125rem !important; padding-bottom: .125rem !important; }
  98. .py-2 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
  99. .py-3 { padding-top: .5rem !important; padding-bottom: .5rem !important; }
  100. .py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  101. .py-5 { padding-top: 2rem !important; padding-bottom: 2rem !important; }