Guest User

Untitled

a guest
Feb 21st, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. /*
  2. Include this after bootstrap.css. Add class of
  3. mt-value, mb-value or my-value
  4. to your Bootstrap 3 default rows to prevent row content
  5. from touching the row content above or below.
  6. For easier migration the classes match
  7. the ones Bootstrap 4 uses.
  8. */
  9.  
  10. /* Vertical Offset Bottom */
  11. .mt-12{
  12. margin-top: 12em;
  13. }
  14. .mt-11{
  15. margin-top: 11em;
  16. }
  17. .mt-10{
  18. margin-top: 10em;
  19. }
  20. .mt-9{
  21. margin-top: 9em;
  22. }
  23. .mt-8{
  24. margin-top: 8em;
  25. }
  26. .mt-7 {
  27. margin-top: 7em;
  28. }
  29. .mt-6{
  30. margin-top: 6em;
  31. }
  32. .mt-5{
  33. margin-top: 5em;
  34. }
  35. .mt-4{
  36. margin-top: 4em;
  37. }
  38. .mt-3{
  39. margin-top: 3em;
  40. }
  41. .mt-2{
  42. margin-top: 2em;
  43. }
  44. .mt-1{
  45. margin-top: 1em;
  46. }
  47. .mt-0{
  48. margin-top: 0em;
  49. }
  50. /* Vertical Offset Bottom */
  51. .mb-12{
  52. margin-bottom: 12em;
  53. }
  54. .mb-11{
  55. margin-bottom: 11em;
  56. }
  57. .mb-10{
  58. margin-bottom: 10em;
  59. }
  60. .mb-9{
  61. margin-bottom: 9em;
  62. }
  63. .mb-8{
  64. margin-bottom: 8em;
  65. }
  66. .mb-7{
  67. margin-bottom: 7em;
  68. }
  69. .mb-6{
  70. margin-bottom: 6em;
  71. }
  72. .mb-5{
  73. margin-bottom: 5em;
  74. }
  75. .mb-4{
  76. margin-bottom: 4em;
  77. }
  78. .mb-3{
  79. margin-bottom: 3em;
  80. }
  81. .mb-2{
  82. margin-bottom: 2em;
  83. }
  84. .mb-1{
  85. margin-bottom: 1em;
  86. }
  87. .mb-0{
  88. margin-bottom: 0em;
  89. }
  90. /* Vertical Offset Top + Bottom */
  91. .my-12{
  92. margin-top: 12em;
  93. margin-bottom: 12em;
  94. }
  95. .my-11{
  96. margin-top: 11em;
  97. margin-bottom: 11em;
  98. }
  99. .my-10{
  100. margin-top: 10em;
  101. margin-bottom: 10em;
  102. }
  103. .my-9{
  104. margin-top: 9em;
  105. margin-bottom: 9em;
  106. }
  107. .my-8{
  108. margin-top: 8em;
  109. margin-bottom: 8em;
  110. }
  111. .my-7{
  112. margin-top: 7em;
  113. margin-bottom: 7em;
  114. }
  115. .my-6{
  116. margin-top: 6em;
  117. margin-bottom: 6em;
  118. }
  119. .my-5{
  120. margin-top: 5em;
  121. margin-bottom: 5em;
  122. }
  123. .my-4{
  124. margin-top: 4em;
  125. margin-bottom: 4em;
  126. }
  127. .my-3{
  128. margin-top: 3em;
  129. margin-bottom: 3em;
  130. }
  131. .my-2{
  132. margin-top: 2em;
  133. margin-bottom: 2em;
  134. }
  135. .my-1{
  136. margin-top: 1em;
  137. margin-bottom: 1em;
  138. }
  139. .my-0{
  140. margin-top: 0em;
  141. margin-bottom: 0em;
  142. }
Add Comment
Please, Sign In to add comment