No Description
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.

_spacing.scss 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. //
  2. // Spacing
  3. //
  4. .row.row-grid > [class*="col-"] + [class*="col-"] {
  5. margin-top: 3rem;
  6. }
  7. @include media-breakpoint-up(lg) {
  8. .row.row-grid > [class*="col-lg-"] + [class*="col-lg-"] {
  9. margin-top: 0;
  10. }
  11. }
  12. @include media-breakpoint-up(md) {
  13. .row.row-grid > [class*="col-md-"] + [class*="col-md-"] {
  14. margin-top: 0;
  15. }
  16. }
  17. @include media-breakpoint-up(sm) {
  18. .row.row-grid > [class*="col-sm-"] + [class*="col-sm-"] {
  19. margin-top: 0;
  20. }
  21. }
  22. .row-grid + .row-grid {
  23. margin-top: 3rem;
  24. }
  25. // Negative margins and paddings
  26. @media(min-width: 992px) {
  27. [class*="mt--"],
  28. [class*="mr--"],
  29. [class*="mb--"],
  30. [class*="ml--"] {
  31. }
  32. // Large negative margins in pixels
  33. .mt--100 {
  34. margin-top: -100px !important;
  35. }
  36. .mr--100 {
  37. margin-right: -100px !important;
  38. }
  39. .mb--100 {
  40. margin-bottom: -100px !important;
  41. }
  42. .ml--100 {
  43. margin-left: -100px !important;
  44. }
  45. .mt--150 {
  46. margin-top: -150px !important;
  47. }
  48. .mb--150 {
  49. margin-bottom: -150px !important;
  50. }
  51. .mt--200 {
  52. margin-top: -200px !important;
  53. }
  54. .mb--200 {
  55. margin-bottom: -200px !important;
  56. }
  57. .mt--300 {
  58. margin-top: -300px !important;
  59. }
  60. .mb--300 {
  61. margin-bottom: -300px !important;
  62. }
  63. // Large margins in pixels
  64. .pt-100 {
  65. padding-top: 100px !important;
  66. }
  67. .pb-100 {
  68. padding-bottom: 100px !important;
  69. }
  70. .pt-150 {
  71. padding-top: 150px !important;
  72. }
  73. .pb-150 {
  74. padding-bottom: 150px !important;
  75. }
  76. .pt-200 {
  77. padding-top: 200px !important;
  78. }
  79. .pb-200 {
  80. padding-bottom: 200px !important;
  81. }
  82. .pt-250 {
  83. padding-top: 250px !important;
  84. }
  85. .pb-250 {
  86. padding-bottom: 250px !important;
  87. }
  88. .pt-300 {
  89. padding-top: 300px!important;
  90. }
  91. .pb-300 {
  92. padding-bottom: 300px!important;
  93. }
  94. }