Advertisement
danilosilvadev

_sizes.scss

Sep 19th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.60 KB | None | 0 0
  1. // Sizes
  2. .h {
  3.   &-100 {
  4.     height: 100% !important;
  5.   }
  6.  
  7.   &-90 {
  8.     height: 90% !important;
  9.   }
  10.  
  11.   &-80 {
  12.     height: 80% !important;
  13.   }
  14.  
  15.   &-70 {
  16.     height: 70% !important;
  17.   }
  18.  
  19.   &-60 {
  20.     height: 60% !important;
  21.   }
  22.  
  23.   &-50 {
  24.     height: 50% !important;
  25.   }
  26.  
  27.   &-40 {
  28.     height: 40% !important;
  29.   }
  30.  
  31.   &-30 {
  32.     height: 30% !important;
  33.   }
  34.  
  35.   &-20 {
  36.     height: 20% !important;
  37.   }
  38.  
  39.   &-10 {
  40.     height: 10% !important;
  41.   }
  42. }
  43.  
  44. .w {
  45.   &-100 {
  46.     width: 100% !important;
  47.   }
  48.  
  49.   &-90 {
  50.     width: 90% !important;
  51.   }
  52.  
  53.   &-80 {
  54.     width: 80% !important;
  55.   }
  56.  
  57.   &-70 {
  58.     width: 70% !important;
  59.   }
  60.  
  61.   &-60 {
  62.     width: 60% !important;
  63.   }
  64.  
  65.   &-50 {
  66.     width: 50% !important;
  67.   }
  68.  
  69.   &-40 {
  70.     width: 40% !important;
  71.   }
  72.  
  73.   &-30 {
  74.     width: 30% !important;
  75.   }
  76.  
  77.   &-20 {
  78.     width: 20% !important;
  79.   }
  80.  
  81.   &-10 {
  82.     width: 10% !important;
  83.   }
  84.  
  85.   &-md {
  86.     @media only screen and (min-width: 768px) {
  87.       &-auto {
  88.         width: auto !important;
  89.       }
  90.  
  91.       &-100 {
  92.         width: 100% !important;
  93.       }
  94.  
  95.       &-90 {
  96.         width: 90% !important;
  97.       }
  98.  
  99.       &-80 {
  100.         width: 80% !important;
  101.       }
  102.  
  103.       &-70 {
  104.         width: 70% !important;
  105.       }
  106.  
  107.       &-60 {
  108.         width: 60% !important;
  109.       }
  110.  
  111.       &-50 {
  112.         width: 50% !important;
  113.       }
  114.  
  115.       &-40 {
  116.         width: 40% !important;
  117.       }
  118.  
  119.       &-30 {
  120.         width: 30% !important;
  121.       }
  122.  
  123.       &-20 {
  124.         width: 20% !important;
  125.       }
  126.  
  127.       &-10 {
  128.         width: 10% !important;
  129.       }
  130.     }
  131.   }
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement