Advertisement
Socialking

Untitled

Sep 23rd, 2021
1,148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.32 KB | None | 0 0
  1. /* 12.0 - margins & paddings */
  2. $px-array: 100 95 90 85 80 75 70 65 60 55 50 45 40 35 30 25 20 15 10 5 0;
  3.  
  4. @each $current-px in $px-array {
  5.     .m-#{$current-px} {
  6.         margin: #{$current-px}px !important;
  7.     }
  8.  
  9.     .mb-#{$current-px} {
  10.         margin-bottom: #{$current-px}px !important;
  11.     }
  12.  
  13.     .mb-n#{$current-px} {
  14.         margin-bottom: -#{$current-px}px !important;
  15.     }
  16.  
  17.     .mt-#{$current-px} {
  18.         margin-top: #{$current-px}px !important;
  19.     }
  20.  
  21.     .mt-n#{$current-px} {
  22.         margin-top: -#{$current-px}px !important;
  23.     }
  24.  
  25.     .ml-#{$current-px} {
  26.         margin-left: #{$current-px}px !important;
  27.     }
  28.  
  29.     .mr-#{$current-px} {
  30.         margin-right: #{$current-px}px !important;
  31.     }
  32.  
  33.     .p-#{$current-px} {
  34.         margin: #{$current-px}px !important;
  35.     }
  36.  
  37.     .pb-#{$current-px} {
  38.         padding-bottom: #{$current-px}px !important;
  39.     }
  40.  
  41.     .pb-n#{$current-px} {
  42.         padding-bottom: -#{$current-px}px !important;
  43.     }
  44.  
  45.     .pt-#{$current-px} {
  46.         padding-top: #{$current-px}px !important;
  47.     }
  48.  
  49.     .pt-n#{$current-px} {
  50.         padding-top: -#{$current-px}px !important;
  51.     }
  52.  
  53.     .pl-#{$current-px} {
  54.         padding-left: #{$current-px}px !important;
  55.     }
  56.  
  57.     .pr-#{$current-px} {
  58.         padding-right: #{$current-px}px !important;
  59.     }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement