Created
March 30, 2021 11:42
-
-
Save tanshunyuan/cfe1a4a963d8924618b52915330cb95f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin respond($class) { | |
@if $class == phone { | |
@media (max-width: 767px) { | |
@content; | |
} | |
} @else if $class == tablet { | |
@media (min-width: 768px) { | |
@content; | |
} | |
} @else if $class == tablet_landscape { | |
@media (min-width: 992px) { | |
@content; | |
} | |
} @else if $class == desktop { | |
@media (min-width: 1200px) { | |
@content; | |
} | |
} @else { | |
@warn "Breakpoint mixin supports: xs, sm, md, lg"; | |
} | |
} | |
$l: left; | |
$r: right; | |
$t: top; | |
$b: bottom; | |
$pad: padding; | |
$mar: margin; | |
$breakpoint-with-shorthand: phone sm, tablet md, desktop lg; | |
$repeatable-slugs: $pad $l, $pad $r, $pad $t, $pad $b, $mar $l, $mar $r, | |
$mar $t, $mar $b; | |
// @function add-unit-to-value($value, $unit) { | |
// @return if($value != 0, $value + $unit, 0); | |
// } | |
// @function increment-by-5($i, $unit) { | |
// @return add-unit-to-value(0 + ($i * 0.25), $unit); | |
// } | |
// @each $breakpoint in $breakpoint-with-shorthand{ | |
// $bp: nth($breakpoint, 1); | |
// $shorthand: nth($breakpoint, 2); | |
// @include respond($bp){ | |
// @each $slug in $repeatable-class-slugs { | |
// $key: nth($slug, 1); | |
// $value: nth($slug, 2); | |
// @for $i from 0 through 51 { | |
// .#{str-slice($key,0,1)}#{str-slice($value,0,1)}-#{$i} { | |
// #{$key}-#{$value}: increment-by-5($i, rem); | |
// } | |
// } | |
// } | |
// } } | |
@function add-unit-to-value($value, $unit){ | |
@return if($value != 0, $value + $unit, 0); | |
} | |
@function increment($i, $increment, $unit){ | |
@return add-unit-to-value(0 + ($i * $increment), $unit); | |
} | |
// class generator mixin | |
@mixin repeat-unit-classes-map($name-map, $start, $end, $unit, $increment: 1){ | |
@each $breakpoint in $breakpoint-with-shorthand{ | |
$bp: nth($breakpoint, 1); | |
$shorthand: nth($breakpoint, 2); | |
@include respond($bp){ | |
@each $slug in $name-map { | |
$key: nth($slug, 1); | |
$value: nth($slug, 2); | |
@for $i from $start through $end { | |
.#{$shorthand}#{'\\'}#{':'}#{str-slice($key,0,1)}#{str-slice($value, 0, 1)}-#{$i} { | |
#{$key}-#{$value}: increment($i, $increment, $unit); | |
} | |
} | |
} | |
} | |
} | |
} | |
@include repeat-unit-classes-map($repeatable-slugs, 0, 51, rem, 0.25); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (max-width: 767px) { | |
.shorthand:pl-0 { | |
padding-left: 0; | |
} | |
.shorthand:pl-1 { | |
padding-left: 0.25rem; | |
} | |
.shorthand:pl-2 { | |
padding-left: 0.5rem; | |
} | |
.shorthand:pl-3 { | |
padding-left: 0.75rem; | |
} | |
.shorthand:pl-4 { | |
padding-left: 1rem; | |
} | |
.shorthand:pl-5 { | |
padding-left: 1.25rem; | |
} | |
.shorthand:pl-6 { | |
padding-left: 1.5rem; | |
} | |
.shorthand:pl-7 { | |
padding-left: 1.75rem; | |
} | |
.shorthand:pl-8 { | |
padding-left: 2rem; | |
} | |
.shorthand:pl-9 { | |
padding-left: 2.25rem; | |
} | |
.shorthand:pl-10 { | |
padding-left: 2.5rem; | |
} | |
.shorthand:pl-11 { | |
padding-left: 2.75rem; | |
} | |
.shorthand:pl-12 { | |
padding-left: 3rem; | |
} | |
.shorthand:pl-13 { | |
padding-left: 3.25rem; | |
} | |
.shorthand:pl-14 { | |
padding-left: 3.5rem; | |
} | |
.shorthand:pl-15 { | |
padding-left: 3.75rem; | |
} | |
.shorthand:pl-16 { | |
padding-left: 4rem; | |
} | |
.shorthand:pl-17 { | |
padding-left: 4.25rem; | |
} | |
.shorthand:pl-18 { | |
padding-left: 4.5rem; | |
} | |
.shorthand:pl-19 { | |
padding-left: 4.75rem; | |
} | |
.shorthand:pl-20 { | |
padding-left: 5rem; | |
} | |
.shorthand:pl-21 { | |
padding-left: 5.25rem; | |
} | |
.shorthand:pl-22 { | |
padding-left: 5.5rem; | |
} | |
.shorthand:pl-23 { | |
padding-left: 5.75rem; | |
} | |
.shorthand:pl-24 { | |
padding-left: 6rem; | |
} | |
.shorthand:pl-25 { | |
padding-left: 6.25rem; | |
} | |
.shorthand:pl-26 { | |
padding-left: 6.5rem; | |
} | |
.shorthand:pl-27 { | |
padding-left: 6.75rem; | |
} | |
.shorthand:pl-28 { | |
padding-left: 7rem; | |
} | |
.shorthand:pl-29 { | |
padding-left: 7.25rem; | |
} | |
.shorthand:pl-30 { | |
padding-left: 7.5rem; | |
} | |
.shorthand:pl-31 { | |
padding-left: 7.75rem; | |
} | |
.shorthand:pl-32 { | |
padding-left: 8rem; | |
} | |
.shorthand:pl-33 { | |
padding-left: 8.25rem; | |
} | |
.shorthand:pl-34 { | |
padding-left: 8.5rem; | |
} | |
.shorthand:pl-35 { | |
padding-left: 8.75rem; | |
} | |
.shorthand:pl-36 { | |
padding-left: 9rem; | |
} | |
.shorthand:pl-37 { | |
padding-left: 9.25rem; | |
} | |
.shorthand:pl-38 { | |
padding-left: 9.5rem; | |
} | |
.shorthand:pl-39 { | |
padding-left: 9.75rem; | |
} | |
.shorthand:pl-40 { | |
padding-left: 10rem; | |
} | |
.shorthand:pl-41 { | |
padding-left: 10.25rem; | |
} | |
.shorthand:pl-42 { | |
padding-left: 10.5rem; | |
} | |
.shorthand:pl-43 { | |
padding-left: 10.75rem; | |
} | |
.shorthand:pl-44 { | |
padding-left: 11rem; | |
} | |
.shorthand:pl-45 { | |
padding-left: 11.25rem; | |
} | |
.shorthand:pl-46 { | |
padding-left: 11.5rem; | |
} | |
.shorthand:pl-47 { | |
padding-left: 11.75rem; | |
} | |
.shorthand:pl-48 { | |
padding-left: 12rem; | |
} | |
.shorthand:pl-49 { | |
padding-left: 12.25rem; | |
} | |
.shorthand:pl-50 { | |
padding-left: 12.5rem; | |
} | |
.shorthand:pl-51 { | |
padding-left: 12.75rem; | |
} | |
.shorthand:pr-0 { | |
padding-right: 0; | |
} | |
.shorthand:pr-1 { | |
padding-right: 0.25rem; | |
} | |
.shorthand:pr-2 { | |
padding-right: 0.5rem; | |
} | |
.shorthand:pr-3 { | |
padding-right: 0.75rem; | |
} | |
.shorthand:pr-4 { | |
padding-right: 1rem; | |
} | |
.shorthand:pr-5 { | |
padding-right: 1.25rem; | |
} | |
.shorthand:pr-6 { | |
padding-right: 1.5rem; | |
} | |
.shorthand:pr-7 { | |
padding-right: 1.75rem; | |
} | |
.shorthand:pr-8 { | |
padding-right: 2rem; | |
} | |
.shorthand:pr-9 { | |
padding-right: 2.25rem; | |
} | |
.shorthand:pr-10 { | |
padding-right: 2.5rem; | |
} | |
.shorthand:pr-11 { | |
padding-right: 2.75rem; | |
} | |
.shorthand:pr-12 { | |
padding-right: 3rem; | |
} | |
.shorthand:pr-13 { | |
padding-right: 3.25rem; | |
} | |
.shorthand:pr-14 { | |
padding-right: 3.5rem; | |
} | |
.shorthand:pr-15 { | |
padding-right: 3.75rem; | |
} | |
.shorthand:pr-16 { | |
padding-right: 4rem; | |
} | |
.shorthand:pr-17 { | |
padding-right: 4.25rem; | |
} | |
.shorthand:pr-18 { | |
padding-right: 4.5rem; | |
} | |
.shorthand:pr-19 { | |
padding-right: 4.75rem; | |
} | |
.shorthand:pr-20 { | |
padding-right: 5rem; | |
} | |
.shorthand:pr-21 { | |
padding-right: 5.25rem; | |
} | |
.shorthand:pr-22 { | |
padding-right: 5.5rem; | |
} | |
.shorthand:pr-23 { | |
padding-right: 5.75rem; | |
} | |
.shorthand:pr-24 { | |
padding-right: 6rem; | |
} | |
.shorthand:pr-25 { | |
padding-right: 6.25rem; | |
} | |
.shorthand:pr-26 { | |
padding-right: 6.5rem; | |
} | |
.shorthand:pr-27 { | |
padding-right: 6.75rem; | |
} | |
.shorthand:pr-28 { | |
padding-right: 7rem; | |
} | |
.shorthand:pr-29 { | |
padding-right: 7.25rem; | |
} | |
.shorthand:pr-30 { | |
padding-right: 7.5rem; | |
} | |
.shorthand:pr-31 { | |
padding-right: 7.75rem; | |
} | |
.shorthand:pr-32 { | |
padding-right: 8rem; | |
} | |
.shorthand:pr-33 { | |
padding-right: 8.25rem; | |
} | |
.shorthand:pr-34 { | |
padding-right: 8.5rem; | |
} | |
.shorthand:pr-35 { | |
padding-right: 8.75rem; | |
} | |
.shorthand:pr-36 { | |
padding-right: 9rem; | |
} | |
.shorthand:pr-37 { | |
padding-right: 9.25rem; | |
} | |
.shorthand:pr-38 { | |
padding-right: 9.5rem; | |
} | |
.shorthand:pr-39 { | |
padding-right: 9.75rem; | |
} | |
.shorthand:pr-40 { | |
padding-right: 10rem; | |
} | |
.shorthand:pr-41 { | |
padding-right: 10.25rem; | |
} | |
.shorthand:pr-42 { | |
padding-right: 10.5rem; | |
} | |
.shorthand:pr-43 { | |
padding-right: 10.75rem; | |
} | |
.shorthand:pr-44 { | |
padding-right: 11rem; | |
} | |
.shorthand:pr-45 { | |
padding-right: 11.25rem; | |
} | |
.shorthand:pr-46 { | |
padding-right: 11.5rem; | |
} | |
.shorthand:pr-47 { | |
padding-right: 11.75rem; | |
} | |
.shorthand:pr-48 { | |
padding-right: 12rem; | |
} | |
.shorthand:pr-49 { | |
padding-right: 12.25rem; | |
} | |
.shorthand:pr-50 { | |
padding-right: 12.5rem; | |
} | |
.shorthand:pr-51 { | |
padding-right: 12.75rem; | |
} | |
.shorthand:pt-0 { | |
padding-top: 0; | |
} | |
.shorthand:pt-1 { | |
padding-top: 0.25rem; | |
} | |
.shorthand:pt-2 { | |
padding-top: 0.5rem; | |
} | |
.shorthand:pt-3 { | |
padding-top: 0.75rem; | |
} | |
.shorthand:pt-4 { | |
padding-top: 1rem; | |
} | |
.shorthand:pt-5 { | |
padding-top: 1.25rem; | |
} | |
.shorthand:pt-6 { | |
padding-top: 1.5rem; | |
} | |
.shorthand:pt-7 { | |
padding-top: 1.75rem; | |
} | |
.shorthand:pt-8 { | |
padding-top: 2rem; | |
} | |
.shorthand:pt-9 { | |
padding-top: 2.25rem; | |
} | |
.shorthand:pt-10 { | |
padding-top: 2.5rem; | |
} | |
.shorthand:pt-11 { | |
padding-top: 2.75rem; | |
} | |
.shorthand:pt-12 { | |
padding-top: 3rem; | |
} | |
.shorthand:pt-13 { | |
padding-top: 3.25rem; | |
} | |
.shorthand:pt-14 { | |
padding-top: 3.5rem; | |
} | |
.shorthand:pt-15 { | |
padding-top: 3.75rem; | |
} | |
.shorthand:pt-16 { | |
padding-top: 4rem; | |
} | |
.shorthand:pt-17 { | |
padding-top: 4.25rem; | |
} | |
.shorthand:pt-18 { | |
padding-top: 4.5rem; | |
} | |
.shorthand:pt-19 { | |
padding-top: 4.75rem; | |
} | |
.shorthand:pt-20 { | |
padding-top: 5rem; | |
} | |
.shorthand:pt-21 { | |
padding-top: 5.25rem; | |
} | |
.shorthand:pt-22 { | |
padding-top: 5.5rem; | |
} | |
.shorthand:pt-23 { | |
padding-top: 5.75rem; | |
} | |
.shorthand:pt-24 { | |
padding-top: 6rem; | |
} | |
.shorthand:pt-25 { | |
padding-top: 6.25rem; | |
} | |
.shorthand:pt-26 { | |
padding-top: 6.5rem; | |
} | |
.shorthand:pt-27 { | |
padding-top: 6.75rem; | |
} | |
.shorthand:pt-28 { | |
padding-top: 7rem; | |
} | |
.shorthand:pt-29 { | |
padding-top: 7.25rem; | |
} | |
.shorthand:pt-30 { | |
padding-top: 7.5rem; | |
} | |
.shorthand:pt-31 { | |
padding-top: 7.75rem; | |
} | |
.shorthand:pt-32 { | |
padding-top: 8rem; | |
} | |
.shorthand:pt-33 { | |
padding-top: 8.25rem; | |
} | |
.shorthand:pt-34 { | |
padding-top: 8.5rem; | |
} | |
.shorthand:pt-35 { | |
padding-top: 8.75rem; | |
} | |
.shorthand:pt-36 { | |
padding-top: 9rem; | |
} | |
.shorthand:pt-37 { | |
padding-top: 9.25rem; | |
} | |
.shorthand:pt-38 { | |
padding-top: 9.5rem; | |
} | |
.shorthand:pt-39 { | |
padding-top: 9.75rem; | |
} | |
.shorthand:pt-40 { | |
padding-top: 10rem; | |
} | |
.shorthand:pt-41 { | |
padding-top: 10.25rem; | |
} | |
.shorthand:pt-42 { | |
padding-top: 10.5rem; | |
} | |
.shorthand:pt-43 { | |
padding-top: 10.75rem; | |
} | |
.shorthand:pt-44 { | |
padding-top: 11rem; | |
} | |
.shorthand:pt-45 { | |
padding-top: 11.25rem; | |
} | |
.shorthand:pt-46 { | |
padding-top: 11.5rem; | |
} | |
.shorthand:pt-47 { | |
padding-top: 11.75rem; | |
} | |
.shorthand:pt-48 { | |
padding-top: 12rem; | |
} | |
.shorthand:pt-49 { | |
padding-top: 12.25rem; | |
} | |
.shorthand:pt-50 { | |
padding-top: 12.5rem; | |
} | |
.shorthand:pt-51 { | |
padding-top: 12.75rem; | |
} | |
.shorthand:pb-0 { | |
padding-bottom: 0; | |
} | |
.shorthand:pb-1 { | |
padding-bottom: 0.25rem; | |
} | |
.shorthand:pb-2 { | |
padding-bottom: 0.5rem; | |
} | |
.shorthand:pb-3 { | |
padding-bottom: 0.75rem; | |
} | |
.shorthand:pb-4 { | |
padding-bottom: 1rem; | |
} | |
.shorthand:pb-5 { | |
padding-bottom: 1.25rem; | |
} | |
.shorthand:pb-6 { | |
padding-bottom: 1.5rem; | |
} | |
.shorthand:pb-7 { | |
padding-bottom: 1.75rem; | |
} | |
.shorthand:pb-8 { | |
padding-bottom: 2rem; | |
} | |
.shorthand:pb-9 { | |
padding-bottom: 2.25rem; | |
} | |
.shorthand:pb-10 { | |
padding-bottom: 2.5rem; | |
} | |
.shorthand:pb-11 { | |
padding-bottom: 2.75rem; | |
} | |
.shorthand:pb-12 { | |
padding-bottom: 3rem; | |
} | |
.shorthand:pb-13 { | |
padding-bottom: 3.25rem; | |
} | |
.shorthand:pb-14 { | |
padding-bottom: 3.5rem; | |
} | |
.shorthand:pb-15 { | |
padding-bottom: 3.75rem; | |
} | |
.shorthand:pb-16 { | |
padding-bottom: 4rem; | |
} | |
.shorthand:pb-17 { | |
padding-bottom: 4.25rem; | |
} | |
.shorthand:pb-18 { | |
padding-bottom: 4.5rem; | |
} | |
.shorthand:pb-19 { | |
padding-bottom: 4.75rem; | |
} | |
.shorthand:pb-20 { | |
padding-bottom: 5rem; | |
} | |
.shorthand:pb-21 { | |
padding-bottom: 5.25rem; | |
} | |
.shorthand:pb-22 { | |
padding-bottom: 5.5rem; | |
} | |
.shorthand:pb-23 { | |
padding-bottom: 5.75rem; | |
} | |
.shorthand:pb-24 { | |
padding-bottom: 6rem; | |
} | |
.shorthand:pb-25 { | |
padding-bottom: 6.25rem; | |
} | |
.shorthand:pb-26 { | |
padding-bottom: 6.5rem; | |
} | |
.shorthand:pb-27 { | |
padding-bottom: 6.75rem; | |
} | |
.shorthand:pb-28 { | |
padding-bottom: 7rem; | |
} | |
.shorthand:pb-29 { | |
padding-bottom: 7.25rem; | |
} | |
.shorthand:pb-30 { | |
padding-bottom: 7.5rem; | |
} | |
.shorthand:pb-31 { | |
padding-bottom: 7.75rem; | |
} | |
.shorthand:pb-32 { | |
padding-bottom: 8rem; | |
} | |
.shorthand:pb-33 { | |
padding-bottom: 8.25rem; | |
} | |
.shorthand:pb-34 { | |
padding-bottom: 8.5rem; | |
} | |
.shorthand:pb-35 { | |
padding-bottom: 8.75rem; | |
} | |
.shorthand:pb-36 { | |
padding-bottom: 9rem; | |
} | |
.shorthand:pb-37 { | |
padding-bottom: 9.25rem; | |
} | |
.shorthand:pb-38 { | |
padding-bottom: 9.5rem; | |
} | |
.shorthand:pb-39 { | |
padding-bottom: 9.75rem; | |
} | |
.shorthand:pb-40 { | |
padding-bottom: 10rem; | |
} | |
.shorthand:pb-41 { | |
padding-bottom: 10.25rem; | |
} | |
.shorthand:pb-42 { | |
padding-bottom: 10.5rem; | |
} | |
.shorthand:pb-43 { | |
padding-bottom: 10.75rem; | |
} | |
.shorthand:pb-44 { | |
padding-bottom: 11rem; | |
} | |
.shorthand:pb-45 { | |
padding-bottom: 11.25rem; | |
} | |
.shorthand:pb-46 { | |
padding-bottom: 11.5rem; | |
} | |
.shorthand:pb-47 { | |
padding-bottom: 11.75rem; | |
} | |
.shorthand:pb-48 { | |
padding-bottom: 12rem; | |
} | |
.shorthand:pb-49 { | |
padding-bottom: 12.25rem; | |
} | |
.shorthand:pb-50 { | |
padding-bottom: 12.5rem; | |
} | |
.shorthand:pb-51 { | |
padding-bottom: 12.75rem; | |
} | |
.shorthand:ml-0 { | |
margin-left: 0; | |
} | |
.shorthand:ml-1 { | |
margin-left: 0.25rem; | |
} | |
.shorthand:ml-2 { | |
margin-left: 0.5rem; | |
} | |
.shorthand:ml-3 { | |
margin-left: 0.75rem; | |
} | |
.shorthand:ml-4 { | |
margin-left: 1rem; | |
} | |
.shorthand:ml-5 { | |
margin-left: 1.25rem; | |
} | |
.shorthand:ml-6 { | |
margin-left: 1.5rem; | |
} | |
.shorthand:ml-7 { | |
margin-left: 1.75rem; | |
} | |
.shorthand:ml-8 { | |
margin-left: 2rem; | |
} | |
.shorthand:ml-9 { | |
margin-left: 2.25rem; | |
} | |
.shorthand:ml-10 { | |
margin-left: 2.5rem; | |
} | |
.shorthand:ml-11 { | |
margin-left: 2.75rem; | |
} | |
.shorthand:ml-12 { | |
margin-left: 3rem; | |
} | |
.shorthand:ml-13 { | |
margin-left: 3.25rem; | |
} | |
.shorthand:ml-14 { | |
margin-left: 3.5rem; | |
} | |
.shorthand:ml-15 { | |
margin-left: 3.75rem; | |
} | |
.shorthand:ml-16 { | |
margin-left: 4rem; | |
} | |
.shorthand:ml-17 { | |
margin-left: 4.25rem; | |
} | |
.shorthand:ml-18 { | |
margin-left: 4.5rem; | |
} | |
.shorthand:ml-19 { | |
margin-left: 4.75rem; | |
} | |
.shorthand:ml-20 { | |
margin-left: 5rem; | |
} | |
.shorthand:ml-21 { | |
margin-left: 5.25rem; | |
} | |
.shorthand:ml-22 { | |
margin-left: 5.5rem; | |
} | |
.shorthand:ml-23 { | |
margin-left: 5.75rem; | |
} | |
.shorthand:ml-24 { | |
margin-left: 6rem; | |
} | |
.shorthand:ml-25 { | |
margin-left: 6.25rem; | |
} | |
.shorthand:ml-26 { | |
margin-left: 6.5rem; | |
} | |
.shorthand:ml-27 { | |
margin-left: 6.75rem; | |
} | |
.shorthand:ml-28 { | |
margin-left: 7rem; | |
} | |
.shorthand:ml-29 { | |
margin-left: 7.25rem; | |
} | |
.shorthand:ml-30 { | |
margin-left: 7.5rem; | |
} | |
.shorthand:ml-31 { | |
margin-left: 7.75rem; | |
} | |
.shorthand:ml-32 { | |
margin-left: 8rem; | |
} | |
.shorthand:ml-33 { | |
margin-left: 8.25rem; | |
} | |
.shorthand:ml-34 { | |
margin-left: 8.5rem; | |
} | |
.shorthand:ml-35 { | |
margin-left: 8.75rem; | |
} | |
.shorthand:ml-36 { | |
margin-left: 9rem; | |
} | |
.shorthand:ml-37 { | |
margin-left: 9.25rem; | |
} | |
.shorthand:ml-38 { | |
margin-left: 9.5rem; | |
} | |
.shorthand:ml-39 { | |
margin-left: 9.75rem; | |
} | |
.shorthand:ml-40 { | |
margin-left: 10rem; | |
} | |
.shorthand:ml-41 { | |
margin-left: 10.25rem; | |
} | |
.shorthand:ml-42 { | |
margin-left: 10.5rem; | |
} | |
.shorthand:ml-43 { | |
margin-left: 10.75rem; | |
} | |
.shorthand:ml-44 { | |
margin-left: 11rem; | |
} | |
.shorthand:ml-45 { | |
margin-left: 11.25rem; | |
} | |
.shorthand:ml-46 { | |
margin-left: 11.5rem; | |
} | |
.shorthand:ml-47 { | |
margin-left: 11.75rem; | |
} | |
.shorthand:ml-48 { | |
margin-left: 12rem; | |
} | |
.shorthand:ml-49 { | |
margin-left: 12.25rem; | |
} | |
.shorthand:ml-50 { | |
margin-left: 12.5rem; | |
} | |
.shorthand:ml-51 { | |
margin-left: 12.75rem; | |
} | |
.shorthand:mr-0 { | |
margin-right: 0; | |
} | |
.shorthand:mr-1 { | |
margin-right: 0.25rem; | |
} | |
.shorthand:mr-2 { | |
margin-right: 0.5rem; | |
} | |
.shorthand:mr-3 { | |
margin-right: 0.75rem; | |
} | |
.shorthand:mr-4 { | |
margin-right: 1rem; | |
} | |
.shorthand:mr-5 { | |
margin-right: 1.25rem; | |
} | |
.shorthand:mr-6 { | |
margin-right: 1.5rem; | |
} | |
.shorthand:mr-7 { | |
margin-right: 1.75rem; | |
} | |
.shorthand:mr-8 { | |
margin-right: 2rem; | |
} | |
.shorthand:mr-9 { | |
margin-right: 2.25rem; | |
} | |
.shorthand:mr-10 { | |
margin-right: 2.5rem; | |
} | |
.shorthand:mr-11 { | |
margin-right: 2.75rem; | |
} | |
.shorthand:mr-12 { | |
margin-right: 3rem; | |
} | |
.shorthand:mr-13 { | |
margin-right: 3.25rem; | |
} | |
.shorthand:mr-14 { | |
margin-right: 3.5rem; | |
} | |
.shorthand:mr-15 { | |
margin-right: 3.75rem; | |
} | |
.shorthand:mr-16 { | |
margin-right: 4rem; | |
} | |
.shorthand:mr-17 { | |
margin-right: 4.25rem; | |
} | |
.shorthand:mr-18 { | |
margin-right: 4.5rem; | |
} | |
.shorthand:mr-19 { | |
margin-right: 4.75rem; | |
} | |
.shorthand:mr-20 { | |
margin-right: 5rem; | |
} | |
.shorthand:mr-21 { | |
margin-right: 5.25rem; | |
} | |
.shorthand:mr-22 { | |
margin-right: 5.5rem; | |
} | |
.shorthand:mr-23 { | |
margin-right: 5.75rem; | |
} | |
.shorthand:mr-24 { | |
margin-right: 6rem; | |
} | |
.shorthand:mr-25 { | |
margin-right: 6.25rem; | |
} | |
.shorthand:mr-26 { | |
margin-right: 6.5rem; | |
} | |
.shorthand:mr-27 { | |
margin-right: 6.75rem; | |
} | |
.shorthand:mr-28 { | |
margin-right: 7rem; | |
} | |
.shorthand:mr-29 { | |
margin-right: 7.25rem; | |
} | |
.shorthand:mr-30 { | |
margin-right: 7.5rem; | |
} | |
.shorthand:mr-31 { | |
margin-right: 7.75rem; | |
} | |
.shorthand:mr-32 { | |
margin-right: 8rem; | |
} | |
.shorthand:mr-33 { | |
margin-right: 8.25rem; | |
} | |
.shorthand:mr-34 { | |
margin-right: 8.5rem; | |
} | |
.shorthand:mr-35 { | |
margin-right: 8.75rem; | |
} | |
.shorthand:mr-36 { | |
margin-right: 9rem; | |
} | |
.shorthand:mr-37 { | |
margin-right: 9.25rem; | |
} | |
.shorthand:mr-38 { | |
margin-right: 9.5rem; | |
} | |
.shorthand:mr-39 { | |
margin-right: 9.75rem; | |
} | |
.shorthand:mr-40 { | |
margin-right: 10rem; | |
} | |
.shorthand:mr-41 { | |
margin-right: 10.25rem; | |
} | |
.shorthand:mr-42 { | |
margin-right: 10.5rem; | |
} | |
.shorthand:mr-43 { | |
margin-right: 10.75rem; | |
} | |
.shorthand:mr-44 { | |
margin-right: 11rem; | |
} | |
.shorthand:mr-45 { | |
margin-right: 11.25rem; | |
} | |
.shorthand:mr-46 { | |
margin-right: 11.5rem; | |
} | |
.shorthand:mr-47 { | |
margin-right: 11.75rem; | |
} | |
.shorthand:mr-48 { | |
margin-right: 12rem; | |
} | |
.shorthand:mr-49 { | |
margin-right: 12.25rem; | |
} | |
.shorthand:mr-50 { | |
margin-right: 12.5rem; | |
} | |
.shorthand:mr-51 { | |
margin-right: 12.75rem; | |
} | |
.shorthand:mt-0 { | |
margin-top: 0; | |
} | |
.shorthand:mt-1 { | |
margin-top: 0.25rem; | |
} | |
.shorthand:mt-2 { | |
margin-top: 0.5rem; | |
} | |
.shorthand:mt-3 { | |
margin-top: 0.75rem; | |
} | |
.shorthand:mt-4 { | |
margin-top: 1rem; | |
} | |
.shorthand:mt-5 { | |
margin-top: 1.25rem; | |
} | |
.shorthand:mt-6 { | |
margin-top: 1.5rem; | |
} | |
.shorthand:mt-7 { | |
margin-top: 1.75rem; | |
} | |
.shorthand:mt-8 { | |
margin-top: 2rem; | |
} | |
.shorthand:mt-9 { | |
margin-top: 2.25rem; | |
} | |
.shorthand:mt-10 { | |
margin-top: 2.5rem; | |
} | |
.shorthand:mt-11 { | |
margin-top: 2.75rem; | |
} | |
.shorthand:mt-12 { | |
margin-top: 3rem; | |
} | |
.shorthand:mt-13 { | |
margin-top: 3.25rem; | |
} | |
.shorthand:mt-14 { | |
margin-top: 3.5rem; | |
} | |
.shorthand:mt-15 { | |
margin-top: 3.75rem; | |
} | |
.shorthand:mt-16 { | |
margin-top: 4rem; | |
} | |
.shorthand:mt-17 { | |
margin-top: 4.25rem; | |
} | |
.shorthand:mt-18 { | |
margin-top: 4.5rem; | |
} | |
.shorthand:mt-19 { | |
margin-top: 4.75rem; | |
} | |
.shorthand:mt-20 { | |
margin-top: 5rem; | |
} | |
.shorthand:mt-21 { | |
margin-top: 5.25rem; | |
} | |
.shorthand:mt-22 { | |
margin-top: 5.5rem; | |
} | |
.shorthand:mt-23 { | |
margin-top: 5.75rem; | |
} | |
.shorthand:mt-24 { | |
margin-top: 6rem; | |
} | |
.shorthand:mt-25 { | |
margin-top: 6.25rem; | |
} | |
.shorthand:mt-26 { | |
margin-top: 6.5rem; | |
} | |
.shorthand:mt-27 { | |
margin-top: 6.75rem; | |
} | |
.shorthand:mt-28 { | |
margin-top: 7rem; | |
} | |
.shorthand:mt-29 { | |
margin-top: 7.25rem; | |
} | |
.shorthand:mt-30 { | |
margin-top: 7.5rem; | |
} | |
.shorthand:mt-31 { | |
margin-top: 7.75rem; | |
} | |
.shorthand:mt-32 { | |
margin-top: 8rem; | |
} | |
.shorthand:mt-33 { | |
margin-top: 8.25rem; | |
} | |
.shorthand:mt-34 { | |
margin-top: 8.5rem; | |
} | |
.shorthand:mt-35 { | |
margin-top: 8.75rem; | |
} | |
.shorthand:mt-36 { | |
margin-top: 9rem; | |
} | |
.shorthand:mt-37 { | |
margin-top: 9.25rem; | |
} | |
.shorthand:mt-38 { | |
margin-top: 9.5rem; | |
} | |
.shorthand:mt-39 { | |
margin-top: 9.75rem; | |
} | |
.shorthand:mt-40 { | |
margin-top: 10rem; | |
} | |
.shorthand:mt-41 { | |
margin-top: 10.25rem; | |
} | |
.shorthand:mt-42 { | |
margin-top: 10.5rem; | |
} | |
.shorthand:mt-43 { | |
margin-top: 10.75rem; | |
} | |
.shorthand:mt-44 { | |
margin-top: 11rem; | |
} | |
.shorthand:mt-45 { | |
margin-top: 11.25rem; | |
} | |
.shorthand:mt-46 { | |
margin-top: 11.5rem; | |
} | |
.shorthand:mt-47 { | |
margin-top: 11.75rem; | |
} | |
.shorthand:mt-48 { | |
margin-top: 12rem; | |
} | |
.shorthand:mt-49 { | |
margin-top: 12.25rem; | |
} | |
.shorthand:mt-50 { | |
margin-top: 12.5rem; | |
} | |
.shorthand:mt-51 { | |
margin-top: 12.75rem; | |
} | |
.shorthand:mb-0 { | |
margin-bottom: 0; | |
} | |
.shorthand:mb-1 { | |
margin-bottom: 0.25rem; | |
} | |
.shorthand:mb-2 { | |
margin-bottom: 0.5rem; | |
} | |
.shorthand:mb-3 { | |
margin-bottom: 0.75rem; | |
} | |
.shorthand:mb-4 { | |
margin-bottom: 1rem; | |
} | |
.shorthand:mb-5 { | |
margin-bottom: 1.25rem; | |
} | |
.shorthand:mb-6 { | |
margin-bottom: 1.5rem; | |
} | |
.shorthand:mb-7 { | |
margin-bottom: 1.75rem; | |
} | |
.shorthand:mb-8 { | |
margin-bottom: 2rem; | |
} | |
.shorthand:mb-9 { | |
margin-bottom: 2.25rem; | |
} | |
.shorthand:mb-10 { | |
margin-bottom: 2.5rem; | |
} | |
.shorthand:mb-11 { | |
margin-bottom: 2.75rem; | |
} | |
.shorthand:mb-12 { | |
margin-bottom: 3rem; | |
} | |
.shorthand:mb-13 { | |
margin-bottom: 3.25rem; | |
} | |
.shorthand:mb-14 { | |
margin-bottom: 3.5rem; | |
} | |
.shorthand:mb-15 { | |
margin-bottom: 3.75rem; | |
} | |
.shorthand:mb-16 { | |
margin-bottom: 4rem; | |
} | |
.shorthand:mb-17 { | |
margin-bottom: 4.25rem; | |
} | |
.shorthand:mb-18 { | |
margin-bottom: 4.5rem; | |
} | |
.shorthand:mb-19 { | |
margin-bottom: 4.75rem; | |
} | |
.shorthand:mb-20 { | |
margin-bottom: 5rem; | |
} | |
.shorthand:mb-21 { | |
margin-bottom: 5.25rem; | |
} | |
.shorthand:mb-22 { | |
margin-bottom: 5.5rem; | |
} | |
.shorthand:mb-23 { | |
margin-bottom: 5.75rem; | |
} | |
.shorthand:mb-24 { | |
margin-bottom: 6rem; | |
} | |
.shorthand:mb-25 { | |
margin-bottom: 6.25rem; | |
} | |
.shorthand:mb-26 { | |
margin-bottom: 6.5rem; | |
} | |
.shorthand:mb-27 { | |
margin-bottom: 6.75rem; | |
} | |
.shorthand:mb-28 { | |
margin-bottom: 7rem; | |
} | |
.shorthand:mb-29 { | |
margin-bottom: 7.25rem; | |
} | |
.shorthand:mb-30 { | |
margin-bottom: 7.5rem; | |
} | |
.shorthand:mb-31 { | |
margin-bottom: 7.75rem; | |
} | |
.shorthand:mb-32 { | |
margin-bottom: 8rem; | |
} | |
.shorthand:mb-33 { | |
margin-bottom: 8.25rem; | |
} | |
.shorthand:mb-34 { | |
margin-bottom: 8.5rem; | |
} | |
.shorthand:mb-35 { | |
margin-bottom: 8.75rem; | |
} | |
.shorthand:mb-36 { | |
margin-bottom: 9rem; | |
} | |
.shorthand:mb-37 { | |
margin-bottom: 9.25rem; | |
} | |
.shorthand:mb-38 { | |
margin-bottom: 9.5rem; | |
} | |
.shorthand:mb-39 { | |
margin-bottom: 9.75rem; | |
} | |
.shorthand:mb-40 { | |
margin-bottom: 10rem; | |
} | |
.shorthand:mb-41 { | |
margin-bottom: 10.25rem; | |
} | |
.shorthand:mb-42 { | |
margin-bottom: 10.5rem; | |
} | |
.shorthand:mb-43 { | |
margin-bottom: 10.75rem; | |
} | |
.shorthand:mb-44 { | |
margin-bottom: 11rem; | |
} | |
.shorthand:mb-45 { | |
margin-bottom: 11.25rem; | |
} | |
.shorthand:mb-46 { | |
margin-bottom: 11.5rem; | |
} | |
.shorthand:mb-47 { | |
margin-bottom: 11.75rem; | |
} | |
.shorthand:mb-48 { | |
margin-bottom: 12rem; | |
} | |
.shorthand:mb-49 { | |
margin-bottom: 12.25rem; | |
} | |
.shorthand:mb-50 { | |
margin-bottom: 12.5rem; | |
} | |
.shorthand:mb-51 { | |
margin-bottom: 12.75rem; | |
} | |
} | |
@media (min-width: 768px) { | |
.shorthand:pl-0 { | |
padding-left: 0; | |
} | |
.shorthand:pl-1 { | |
padding-left: 0.25rem; | |
} | |
.shorthand:pl-2 { | |
padding-left: 0.5rem; | |
} | |
.shorthand:pl-3 { | |
padding-left: 0.75rem; | |
} | |
.shorthand:pl-4 { | |
padding-left: 1rem; | |
} | |
.shorthand:pl-5 { | |
padding-left: 1.25rem; | |
} | |
.shorthand:pl-6 { | |
padding-left: 1.5rem; | |
} | |
.shorthand:pl-7 { | |
padding-left: 1.75rem; | |
} | |
.shorthand:pl-8 { | |
padding-left: 2rem; | |
} | |
.shorthand:pl-9 { | |
padding-left: 2.25rem; | |
} | |
.shorthand:pl-10 { | |
padding-left: 2.5rem; | |
} | |
.shorthand:pl-11 { | |
padding-left: 2.75rem; | |
} | |
.shorthand:pl-12 { | |
padding-left: 3rem; | |
} | |
.shorthand:pl-13 { | |
padding-left: 3.25rem; | |
} | |
.shorthand:pl-14 { | |
padding-left: 3.5rem; | |
} | |
.shorthand:pl-15 { | |
padding-left: 3.75rem; | |
} | |
.shorthand:pl-16 { | |
padding-left: 4rem; | |
} | |
.shorthand:pl-17 { | |
padding-left: 4.25rem; | |
} | |
.shorthand:pl-18 { | |
padding-left: 4.5rem; | |
} | |
.shorthand:pl-19 { | |
padding-left: 4.75rem; | |
} | |
.shorthand:pl-20 { | |
padding-left: 5rem; | |
} | |
.shorthand:pl-21 { | |
padding-left: 5.25rem; | |
} | |
.shorthand:pl-22 { | |
padding-left: 5.5rem; | |
} | |
.shorthand:pl-23 { | |
padding-left: 5.75rem; | |
} | |
.shorthand:pl-24 { | |
padding-left: 6rem; | |
} | |
.shorthand:pl-25 { | |
padding-left: 6.25rem; | |
} | |
.shorthand:pl-26 { | |
padding-left: 6.5rem; | |
} | |
.shorthand:pl-27 { | |
padding-left: 6.75rem; | |
} | |
.shorthand:pl-28 { | |
padding-left: 7rem; | |
} | |
.shorthand:pl-29 { | |
padding-left: 7.25rem; | |
} | |
.shorthand:pl-30 { | |
padding-left: 7.5rem; | |
} | |
.shorthand:pl-31 { | |
padding-left: 7.75rem; | |
} | |
.shorthand:pl-32 { | |
padding-left: 8rem; | |
} | |
.shorthand:pl-33 { | |
padding-left: 8.25rem; | |
} | |
.shorthand:pl-34 { | |
padding-left: 8.5rem; | |
} | |
.shorthand:pl-35 { | |
padding-left: 8.75rem; | |
} | |
.shorthand:pl-36 { | |
padding-left: 9rem; | |
} | |
.shorthand:pl-37 { | |
padding-left: 9.25rem; | |
} | |
.shorthand:pl-38 { | |
padding-left: 9.5rem; | |
} | |
.shorthand:pl-39 { | |
padding-left: 9.75rem; | |
} | |
.shorthand:pl-40 { | |
padding-left: 10rem; | |
} | |
.shorthand:pl-41 { | |
padding-left: 10.25rem; | |
} | |
.shorthand:pl-42 { | |
padding-left: 10.5rem; | |
} | |
.shorthand:pl-43 { | |
padding-left: 10.75rem; | |
} | |
.shorthand:pl-44 { | |
padding-left: 11rem; | |
} | |
.shorthand:pl-45 { | |
padding-left: 11.25rem; | |
} | |
.shorthand:pl-46 { | |
padding-left: 11.5rem; | |
} | |
.shorthand:pl-47 { | |
padding-left: 11.75rem; | |
} | |
.shorthand:pl-48 { | |
padding-left: 12rem; | |
} | |
.shorthand:pl-49 { | |
padding-left: 12.25rem; | |
} | |
.shorthand:pl-50 { | |
padding-left: 12.5rem; | |
} | |
.shorthand:pl-51 { | |
padding-left: 12.75rem; | |
} | |
.shorthand:pr-0 { | |
padding-right: 0; | |
} | |
.shorthand:pr-1 { | |
padding-right: 0.25rem; | |
} | |
.shorthand:pr-2 { | |
padding-right: 0.5rem; | |
} | |
.shorthand:pr-3 { | |
padding-right: 0.75rem; | |
} | |
.shorthand:pr-4 { | |
padding-right: 1rem; | |
} | |
.shorthand:pr-5 { | |
padding-right: 1.25rem; | |
} | |
.shorthand:pr-6 { | |
padding-right: 1.5rem; | |
} | |
.shorthand:pr-7 { | |
padding-right: 1.75rem; | |
} | |
.shorthand:pr-8 { | |
padding-right: 2rem; | |
} | |
.shorthand:pr-9 { | |
padding-right: 2.25rem; | |
} | |
.shorthand:pr-10 { | |
padding-right: 2.5rem; | |
} | |
.shorthand:pr-11 { | |
padding-right: 2.75rem; | |
} | |
.shorthand:pr-12 { | |
padding-right: 3rem; | |
} | |
.shorthand:pr-13 { | |
padding-right: 3.25rem; | |
} | |
.shorthand:pr-14 { | |
padding-right: 3.5rem; | |
} | |
.shorthand:pr-15 { | |
padding-right: 3.75rem; | |
} | |
.shorthand:pr-16 { | |
padding-right: 4rem; | |
} | |
.shorthand:pr-17 { | |
padding-right: 4.25rem; | |
} | |
.shorthand:pr-18 { | |
padding-right: 4.5rem; | |
} | |
.shorthand:pr-19 { | |
padding-right: 4.75rem; | |
} | |
.shorthand:pr-20 { | |
padding-right: 5rem; | |
} | |
.shorthand:pr-21 { | |
padding-right: 5.25rem; | |
} | |
.shorthand:pr-22 { | |
padding-right: 5.5rem; | |
} | |
.shorthand:pr-23 { | |
padding-right: 5.75rem; | |
} | |
.shorthand:pr-24 { | |
padding-right: 6rem; | |
} | |
.shorthand:pr-25 { | |
padding-right: 6.25rem; | |
} | |
.shorthand:pr-26 { | |
padding-right: 6.5rem; | |
} | |
.shorthand:pr-27 { | |
padding-right: 6.75rem; | |
} | |
.shorthand:pr-28 { | |
padding-right: 7rem; | |
} | |
.shorthand:pr-29 { | |
padding-right: 7.25rem; | |
} | |
.shorthand:pr-30 { | |
padding-right: 7.5rem; | |
} | |
.shorthand:pr-31 { | |
padding-right: 7.75rem; | |
} | |
.shorthand:pr-32 { | |
padding-right: 8rem; | |
} | |
.shorthand:pr-33 { | |
padding-right: 8.25rem; | |
} | |
.shorthand:pr-34 { | |
padding-right: 8.5rem; | |
} | |
.shorthand:pr-35 { | |
padding-right: 8.75rem; | |
} | |
.shorthand:pr-36 { | |
padding-right: 9rem; | |
} | |
.shorthand:pr-37 { | |
padding-right: 9.25rem; | |
} | |
.shorthand:pr-38 { | |
padding-right: 9.5rem; | |
} | |
.shorthand:pr-39 { | |
padding-right: 9.75rem; | |
} | |
.shorthand:pr-40 { | |
padding-right: 10rem; | |
} | |
.shorthand:pr-41 { | |
padding-right: 10.25rem; | |
} | |
.shorthand:pr-42 { | |
padding-right: 10.5rem; | |
} | |
.shorthand:pr-43 { | |
padding-right: 10.75rem; | |
} | |
.shorthand:pr-44 { | |
padding-right: 11rem; | |
} | |
.shorthand:pr-45 { | |
padding-right: 11.25rem; | |
} | |
.shorthand:pr-46 { | |
padding-right: 11.5rem; | |
} | |
.shorthand:pr-47 { | |
padding-right: 11.75rem; | |
} | |
.shorthand:pr-48 { | |
padding-right: 12rem; | |
} | |
.shorthand:pr-49 { | |
padding-right: 12.25rem; | |
} | |
.shorthand:pr-50 { | |
padding-right: 12.5rem; | |
} | |
.shorthand:pr-51 { | |
padding-right: 12.75rem; | |
} | |
.shorthand:pt-0 { | |
padding-top: 0; | |
} | |
.shorthand:pt-1 { | |
padding-top: 0.25rem; | |
} | |
.shorthand:pt-2 { | |
padding-top: 0.5rem; | |
} | |
.shorthand:pt-3 { | |
padding-top: 0.75rem; | |
} | |
.shorthand:pt-4 { | |
padding-top: 1rem; | |
} | |
.shorthand:pt-5 { | |
padding-top: 1.25rem; | |
} | |
.shorthand:pt-6 { | |
padding-top: 1.5rem; | |
} | |
.shorthand:pt-7 { | |
padding-top: 1.75rem; | |
} | |
.shorthand:pt-8 { | |
padding-top: 2rem; | |
} | |
.shorthand:pt-9 { | |
padding-top: 2.25rem; | |
} | |
.shorthand:pt-10 { | |
padding-top: 2.5rem; | |
} | |
.shorthand:pt-11 { | |
padding-top: 2.75rem; | |
} | |
.shorthand:pt-12 { | |
padding-top: 3rem; | |
} | |
.shorthand:pt-13 { | |
padding-top: 3.25rem; | |
} | |
.shorthand:pt-14 { | |
padding-top: 3.5rem; | |
} | |
.shorthand:pt-15 { | |
padding-top: 3.75rem; | |
} | |
.shorthand:pt-16 { | |
padding-top: 4rem; | |
} | |
.shorthand:pt-17 { | |
padding-top: 4.25rem; | |
} | |
.shorthand:pt-18 { | |
padding-top: 4.5rem; | |
} | |
.shorthand:pt-19 { | |
padding-top: 4.75rem; | |
} | |
.shorthand:pt-20 { | |
padding-top: 5rem; | |
} | |
.shorthand:pt-21 { | |
padding-top: 5.25rem; | |
} | |
.shorthand:pt-22 { | |
padding-top: 5.5rem; | |
} | |
.shorthand:pt-23 { | |
padding-top: 5.75rem; | |
} | |
.shorthand:pt-24 { | |
padding-top: 6rem; | |
} | |
.shorthand:pt-25 { | |
padding-top: 6.25rem; | |
} | |
.shorthand:pt-26 { | |
padding-top: 6.5rem; | |
} | |
.shorthand:pt-27 { | |
padding-top: 6.75rem; | |
} | |
.shorthand:pt-28 { | |
padding-top: 7rem; | |
} | |
.shorthand:pt-29 { | |
padding-top: 7.25rem; | |
} | |
.shorthand:pt-30 { | |
padding-top: 7.5rem; | |
} | |
.shorthand:pt-31 { | |
padding-top: 7.75rem; | |
} | |
.shorthand:pt-32 { | |
padding-top: 8rem; | |
} | |
.shorthand:pt-33 { | |
padding-top: 8.25rem; | |
} | |
.shorthand:pt-34 { | |
padding-top: 8.5rem; | |
} | |
.shorthand:pt-35 { | |
padding-top: 8.75rem; | |
} | |
.shorthand:pt-36 { | |
padding-top: 9rem; | |
} | |
.shorthand:pt-37 { | |
padding-top: 9.25rem; | |
} | |
.shorthand:pt-38 { | |
padding-top: 9.5rem; | |
} | |
.shorthand:pt-39 { | |
padding-top: 9.75rem; | |
} | |
.shorthand:pt-40 { | |
padding-top: 10rem; | |
} | |
.shorthand:pt-41 { | |
padding-top: 10.25rem; | |
} | |
.shorthand:pt-42 { | |
padding-top: 10.5rem; | |
} | |
.shorthand:pt-43 { | |
padding-top: 10.75rem; | |
} | |
.shorthand:pt-44 { | |
padding-top: 11rem; | |
} | |
.shorthand:pt-45 { | |
padding-top: 11.25rem; | |
} | |
.shorthand:pt-46 { | |
padding-top: 11.5rem; | |
} | |
.shorthand:pt-47 { | |
padding-top: 11.75rem; | |
} | |
.shorthand:pt-48 { | |
padding-top: 12rem; | |
} | |
.shorthand:pt-49 { | |
padding-top: 12.25rem; | |
} | |
.shorthand:pt-50 { | |
padding-top: 12.5rem; | |
} | |
.shorthand:pt-51 { | |
padding-top: 12.75rem; | |
} | |
.shorthand:pb-0 { | |
padding-bottom: 0; | |
} | |
.shorthand:pb-1 { | |
padding-bottom: 0.25rem; | |
} | |
.shorthand:pb-2 { | |
padding-bottom: 0.5rem; | |
} | |
.shorthand:pb-3 { | |
padding-bottom: 0.75rem; | |
} | |
.shorthand:pb-4 { | |
padding-bottom: 1rem; | |
} | |
.shorthand:pb-5 { | |
padding-bottom: 1.25rem; | |
} | |
.shorthand:pb-6 { | |
padding-bottom: 1.5rem; | |
} | |
.shorthand:pb-7 { | |
padding-bottom: 1.75rem; | |
} | |
.shorthand:pb-8 { | |
padding-bottom: 2rem; | |
} | |
.shorthand:pb-9 { | |
padding-bottom: 2.25rem; | |
} | |
.shorthand:pb-10 { | |
padding-bottom: 2.5rem; | |
} | |
.shorthand:pb-11 { | |
padding-bottom: 2.75rem; | |
} | |
.shorthand:pb-12 { | |
padding-bottom: 3rem; | |
} | |
.shorthand:pb-13 { | |
padding-bottom: 3.25rem; | |
} | |
.shorthand:pb-14 { | |
padding-bottom: 3.5rem; | |
} | |
.shorthand:pb-15 { | |
padding-bottom: 3.75rem; | |
} | |
.shorthand:pb-16 { | |
padding-bottom: 4rem; | |
} | |
.shorthand:pb-17 { | |
padding-bottom: 4.25rem; | |
} | |
.shorthand:pb-18 { | |
padding-bottom: 4.5rem; | |
} | |
.shorthand:pb-19 { | |
padding-bottom: 4.75rem; | |
} | |
.shorthand:pb-20 { | |
padding-bottom: 5rem; | |
} | |
.shorthand:pb-21 { | |
padding-bottom: 5.25rem; | |
} | |
.shorthand:pb-22 { | |
padding-bottom: 5.5rem; | |
} | |
.shorthand:pb-23 { | |
padding-bottom: 5.75rem; | |
} | |
.shorthand:pb-24 { | |
padding-bottom: 6rem; | |
} | |
.shorthand:pb-25 { | |
padding-bottom: 6.25rem; | |
} | |
.shorthand:pb-26 { | |
padding-bottom: 6.5rem; | |
} | |
.shorthand:pb-27 { | |
padding-bottom: 6.75rem; | |
} | |
.shorthand:pb-28 { | |
padding-bottom: 7rem; | |
} | |
.shorthand:pb-29 { | |
padding-bottom: 7.25rem; | |
} | |
.shorthand:pb-30 { | |
padding-bottom: 7.5rem; | |
} | |
.shorthand:pb-31 { | |
padding-bottom: 7.75rem; | |
} | |
.shorthand:pb-32 { | |
padding-bottom: 8rem; | |
} | |
.shorthand:pb-33 { | |
padding-bottom: 8.25rem; | |
} | |
.shorthand:pb-34 { | |
padding-bottom: 8.5rem; | |
} | |
.shorthand:pb-35 { | |
padding-bottom: 8.75rem; | |
} | |
.shorthand:pb-36 { | |
padding-bottom: 9rem; | |
} | |
.shorthand:pb-37 { | |
padding-bottom: 9.25rem; | |
} | |
.shorthand:pb-38 { | |
padding-bottom: 9.5rem; | |
} | |
.shorthand:pb-39 { | |
padding-bottom: 9.75rem; | |
} | |
.shorthand:pb-40 { | |
padding-bottom: 10rem; | |
} | |
.shorthand:pb-41 { | |
padding-bottom: 10.25rem; | |
} | |
.shorthand:pb-42 { | |
padding-bottom: 10.5rem; | |
} | |
.shorthand:pb-43 { | |
padding-bottom: 10.75rem; | |
} | |
.shorthand:pb-44 { | |
padding-bottom: 11rem; | |
} | |
.shorthand:pb-45 { | |
padding-bottom: 11.25rem; | |
} | |
.shorthand:pb-46 { | |
padding-bottom: 11.5rem; | |
} | |
.shorthand:pb-47 { | |
padding-bottom: 11.75rem; | |
} | |
.shorthand:pb-48 { | |
padding-bottom: 12rem; | |
} | |
.shorthand:pb-49 { | |
padding-bottom: 12.25rem; | |
} | |
.shorthand:pb-50 { | |
padding-bottom: 12.5rem; | |
} | |
.shorthand:pb-51 { | |
padding-bottom: 12.75rem; | |
} | |
.shorthand:ml-0 { | |
margin-left: 0; | |
} | |
.shorthand:ml-1 { | |
margin-left: 0.25rem; | |
} | |
.shorthand:ml-2 { | |
margin-left: 0.5rem; | |
} | |
.shorthand:ml-3 { | |
margin-left: 0.75rem; | |
} | |
.shorthand:ml-4 { | |
margin-left: 1rem; | |
} | |
.shorthand:ml-5 { | |
margin-left: 1.25rem; | |
} | |
.shorthand:ml-6 { | |
margin-left: 1.5rem; | |
} | |
.shorthand:ml-7 { | |
margin-left: 1.75rem; | |
} | |
.shorthand:ml-8 { | |
margin-left: 2rem; | |
} | |
.shorthand:ml-9 { | |
margin-left: 2.25rem; | |
} | |
.shorthand:ml-10 { | |
margin-left: 2.5rem; | |
} | |
.shorthand:ml-11 { | |
margin-left: 2.75rem; | |
} | |
.shorthand:ml-12 { | |
margin-left: 3rem; | |
} | |
.shorthand:ml-13 { | |
margin-left: 3.25rem; | |
} | |
.shorthand:ml-14 { | |
margin-left: 3.5rem; | |
} | |
.shorthand:ml-15 { | |
margin-left: 3.75rem; | |
} | |
.shorthand:ml-16 { | |
margin-left: 4rem; | |
} | |
.shorthand:ml-17 { | |
margin-left: 4.25rem; | |
} | |
.shorthand:ml-18 { | |
margin-left: 4.5rem; | |
} | |
.shorthand:ml-19 { | |
margin-left: 4.75rem; | |
} | |
.shorthand:ml-20 { | |
margin-left: 5rem; | |
} | |
.shorthand:ml-21 { | |
margin-left: 5.25rem; | |
} | |
.shorthand:ml-22 { | |
margin-left: 5.5rem; | |
} | |
.shorthand:ml-23 { | |
margin-left: 5.75rem; | |
} | |
.shorthand:ml-24 { | |
margin-left: 6rem; | |
} | |
.shorthand:ml-25 { | |
margin-left: 6.25rem; | |
} | |
.shorthand:ml-26 { | |
margin-left: 6.5rem; | |
} | |
.shorthand:ml-27 { | |
margin-left: 6.75rem; | |
} | |
.shorthand:ml-28 { | |
margin-left: 7rem; | |
} | |
.shorthand:ml-29 { | |
margin-left: 7.25rem; | |
} | |
.shorthand:ml-30 { | |
margin-left: 7.5rem; | |
} | |
.shorthand:ml-31 { | |
margin-left: 7.75rem; | |
} | |
.shorthand:ml-32 { | |
margin-left: 8rem; | |
} | |
.shorthand:ml-33 { | |
margin-left: 8.25rem; | |
} | |
.shorthand:ml-34 { | |
margin-left: 8.5rem; | |
} | |
.shorthand:ml-35 { | |
margin-left: 8.75rem; | |
} | |
.shorthand:ml-36 { | |
margin-left: 9rem; | |
} | |
.shorthand:ml-37 { | |
margin-left: 9.25rem; | |
} | |
.shorthand:ml-38 { | |
margin-left: 9.5rem; | |
} | |
.shorthand:ml-39 { | |
margin-left: 9.75rem; | |
} | |
.shorthand:ml-40 { | |
margin-left: 10rem; | |
} | |
.shorthand:ml-41 { | |
margin-left: 10.25rem; | |
} | |
.shorthand:ml-42 { | |
margin-left: 10.5rem; | |
} | |
.shorthand:ml-43 { | |
margin-left: 10.75rem; | |
} | |
.shorthand:ml-44 { | |
margin-left: 11rem; | |
} | |
.shorthand:ml-45 { | |
margin-left: 11.25rem; | |
} | |
.shorthand:ml-46 { | |
margin-left: 11.5rem; | |
} | |
.shorthand:ml-47 { | |
margin-left: 11.75rem; | |
} | |
.shorthand:ml-48 { | |
margin-left: 12rem; | |
} | |
.shorthand:ml-49 { | |
margin-left: 12.25rem; | |
} | |
.shorthand:ml-50 { | |
margin-left: 12.5rem; | |
} | |
.shorthand:ml-51 { | |
margin-left: 12.75rem; | |
} | |
.shorthand:mr-0 { | |
margin-right: 0; | |
} | |
.shorthand:mr-1 { | |
margin-right: 0.25rem; | |
} | |
.shorthand:mr-2 { | |
margin-right: 0.5rem; | |
} | |
.shorthand:mr-3 { | |
margin-right: 0.75rem; | |
} | |
.shorthand:mr-4 { | |
margin-right: 1rem; | |
} | |
.shorthand:mr-5 { | |
margin-right: 1.25rem; | |
} | |
.shorthand:mr-6 { | |
margin-right: 1.5rem; | |
} | |
.shorthand:mr-7 { | |
margin-right: 1.75rem; | |
} | |
.shorthand:mr-8 { | |
margin-right: 2rem; | |
} | |
.shorthand:mr-9 { | |
margin-right: 2.25rem; | |
} | |
.shorthand:mr-10 { | |
margin-right: 2.5rem; | |
} | |
.shorthand:mr-11 { | |
margin-right: 2.75rem; | |
} | |
.shorthand:mr-12 { | |
margin-right: 3rem; | |
} | |
.shorthand:mr-13 { | |
margin-right: 3.25rem; | |
} | |
.shorthand:mr-14 { | |
margin-right: 3.5rem; | |
} | |
.shorthand:mr-15 { | |
margin-right: 3.75rem; | |
} | |
.shorthand:mr-16 { | |
margin-right: 4rem; | |
} | |
.shorthand:mr-17 { | |
margin-right: 4.25rem; | |
} | |
.shorthand:mr-18 { | |
margin-right: 4.5rem; | |
} | |
.shorthand:mr-19 { | |
margin-right: 4.75rem; | |
} | |
.shorthand:mr-20 { | |
margin-right: 5rem; | |
} | |
.shorthand:mr-21 { | |
margin-right: 5.25rem; | |
} | |
.shorthand:mr-22 { | |
margin-right: 5.5rem; | |
} | |
.shorthand:mr-23 { | |
margin-right: 5.75rem; | |
} | |
.shorthand:mr-24 { | |
margin-right: 6rem; | |
} | |
.shorthand:mr-25 { | |
margin-right: 6.25rem; | |
} | |
.shorthand:mr-26 { | |
margin-right: 6.5rem; | |
} | |
.shorthand:mr-27 { | |
margin-right: 6.75rem; | |
} | |
.shorthand:mr-28 { | |
margin-right: 7rem; | |
} | |
.shorthand:mr-29 { | |
margin-right: 7.25rem; | |
} | |
.shorthand:mr-30 { | |
margin-right: 7.5rem; | |
} | |
.shorthand:mr-31 { | |
margin-right: 7.75rem; | |
} | |
.shorthand:mr-32 { | |
margin-right: 8rem; | |
} | |
.shorthand:mr-33 { | |
margin-right: 8.25rem; | |
} | |
.shorthand:mr-34 { | |
margin-right: 8.5rem; | |
} | |
.shorthand:mr-35 { | |
margin-right: 8.75rem; | |
} | |
.shorthand:mr-36 { | |
margin-right: 9rem; | |
} | |
.shorthand:mr-37 { | |
margin-right: 9.25rem; | |
} | |
.shorthand:mr-38 { | |
margin-right: 9.5rem; | |
} | |
.shorthand:mr-39 { | |
margin-right: 9.75rem; | |
} | |
.shorthand:mr-40 { | |
margin-right: 10rem; | |
} | |
.shorthand:mr-41 { | |
margin-right: 10.25rem; | |
} | |
.shorthand:mr-42 { | |
margin-right: 10.5rem; | |
} | |
.shorthand:mr-43 { | |
margin-right: 10.75rem; | |
} | |
.shorthand:mr-44 { | |
margin-right: 11rem; | |
} | |
.shorthand:mr-45 { | |
margin-right: 11.25rem; | |
} | |
.shorthand:mr-46 { | |
margin-right: 11.5rem; | |
} | |
.shorthand:mr-47 { | |
margin-right: 11.75rem; | |
} | |
.shorthand:mr-48 { | |
margin-right: 12rem; | |
} | |
.shorthand:mr-49 { | |
margin-right: 12.25rem; | |
} | |
.shorthand:mr-50 { | |
margin-right: 12.5rem; | |
} | |
.shorthand:mr-51 { | |
margin-right: 12.75rem; | |
} | |
.shorthand:mt-0 { | |
margin-top: 0; | |
} | |
.shorthand:mt-1 { | |
margin-top: 0.25rem; | |
} | |
.shorthand:mt-2 { | |
margin-top: 0.5rem; | |
} | |
.shorthand:mt-3 { | |
margin-top: 0.75rem; | |
} | |
.shorthand:mt-4 { | |
margin-top: 1rem; | |
} | |
.shorthand:mt-5 { | |
margin-top: 1.25rem; | |
} | |
.shorthand:mt-6 { | |
margin-top: 1.5rem; | |
} | |
.shorthand:mt-7 { | |
margin-top: 1.75rem; | |
} | |
.shorthand:mt-8 { | |
margin-top: 2rem; | |
} | |
.shorthand:mt-9 { | |
margin-top: 2.25rem; | |
} | |
.shorthand:mt-10 { | |
margin-top: 2.5rem; | |
} | |
.shorthand:mt-11 { | |
margin-top: 2.75rem; | |
} | |
.shorthand:mt-12 { | |
margin-top: 3rem; | |
} | |
.shorthand:mt-13 { | |
margin-top: 3.25rem; | |
} | |
.shorthand:mt-14 { | |
margin-top: 3.5rem; | |
} | |
.shorthand:mt-15 { | |
margin-top: 3.75rem; | |
} | |
.shorthand:mt-16 { | |
margin-top: 4rem; | |
} | |
.shorthand:mt-17 { | |
margin-top: 4.25rem; | |
} | |
.shorthand:mt-18 { | |
margin-top: 4.5rem; | |
} | |
.shorthand:mt-19 { | |
margin-top: 4.75rem; | |
} | |
.shorthand:mt-20 { | |
margin-top: 5rem; | |
} | |
.shorthand:mt-21 { | |
margin-top: 5.25rem; | |
} | |
.shorthand:mt-22 { | |
margin-top: 5.5rem; | |
} | |
.shorthand:mt-23 { | |
margin-top: 5.75rem; | |
} | |
.shorthand:mt-24 { | |
margin-top: 6rem; | |
} | |
.shorthand:mt-25 { | |
margin-top: 6.25rem; | |
} | |
.shorthand:mt-26 { | |
margin-top: 6.5rem; | |
} | |
.shorthand:mt-27 { | |
margin-top: 6.75rem; | |
} | |
.shorthand:mt-28 { | |
margin-top: 7rem; | |
} | |
.shorthand:mt-29 { | |
margin-top: 7.25rem; | |
} | |
.shorthand:mt-30 { | |
margin-top: 7.5rem; | |
} | |
.shorthand:mt-31 { | |
margin-top: 7.75rem; | |
} | |
.shorthand:mt-32 { | |
margin-top: 8rem; | |
} | |
.shorthand:mt-33 { | |
margin-top: 8.25rem; | |
} | |
.shorthand:mt-34 { | |
margin-top: 8.5rem; | |
} | |
.shorthand:mt-35 { | |
margin-top: 8.75rem; | |
} | |
.shorthand:mt-36 { | |
margin-top: 9rem; | |
} | |
.shorthand:mt-37 { | |
margin-top: 9.25rem; | |
} | |
.shorthand:mt-38 { | |
margin-top: 9.5rem; | |
} | |
.shorthand:mt-39 { | |
margin-top: 9.75rem; | |
} | |
.shorthand:mt-40 { | |
margin-top: 10rem; | |
} | |
.shorthand:mt-41 { | |
margin-top: 10.25rem; | |
} | |
.shorthand:mt-42 { | |
margin-top: 10.5rem; | |
} | |
.shorthand:mt-43 { | |
margin-top: 10.75rem; | |
} | |
.shorthand:mt-44 { | |
margin-top: 11rem; | |
} | |
.shorthand:mt-45 { | |
margin-top: 11.25rem; | |
} | |
.shorthand:mt-46 { | |
margin-top: 11.5rem; | |
} | |
.shorthand:mt-47 { | |
margin-top: 11.75rem; | |
} | |
.shorthand:mt-48 { | |
margin-top: 12rem; | |
} | |
.shorthand:mt-49 { | |
margin-top: 12.25rem; | |
} | |
.shorthand:mt-50 { | |
margin-top: 12.5rem; | |
} | |
.shorthand:mt-51 { | |
margin-top: 12.75rem; | |
} | |
.shorthand:mb-0 { | |
margin-bottom: 0; | |
} | |
.shorthand:mb-1 { | |
margin-bottom: 0.25rem; | |
} | |
.shorthand:mb-2 { | |
margin-bottom: 0.5rem; | |
} | |
.shorthand:mb-3 { | |
margin-bottom: 0.75rem; | |
} | |
.shorthand:mb-4 { | |
margin-bottom: 1rem; | |
} | |
.shorthand:mb-5 { | |
margin-bottom: 1.25rem; | |
} | |
.shorthand:mb-6 { | |
margin-bottom: 1.5rem; | |
} | |
.shorthand:mb-7 { | |
margin-bottom: 1.75rem; | |
} | |
.shorthand:mb-8 { | |
margin-bottom: 2rem; | |
} | |
.shorthand:mb-9 { | |
margin-bottom: 2.25rem; | |
} | |
.shorthand:mb-10 { | |
margin-bottom: 2.5rem; | |
} | |
.shorthand:mb-11 { | |
margin-bottom: 2.75rem; | |
} | |
.shorthand:mb-12 { | |
margin-bottom: 3rem; | |
} | |
.shorthand:mb-13 { | |
margin-bottom: 3.25rem; | |
} | |
.shorthand:mb-14 { | |
margin-bottom: 3.5rem; | |
} | |
.shorthand:mb-15 { | |
margin-bottom: 3.75rem; | |
} | |
.shorthand:mb-16 { | |
margin-bottom: 4rem; | |
} | |
.shorthand:mb-17 { | |
margin-bottom: 4.25rem; | |
} | |
.shorthand:mb-18 { | |
margin-bottom: 4.5rem; | |
} | |
.shorthand:mb-19 { | |
margin-bottom: 4.75rem; | |
} | |
.shorthand:mb-20 { | |
margin-bottom: 5rem; | |
} | |
.shorthand:mb-21 { | |
margin-bottom: 5.25rem; | |
} | |
.shorthand:mb-22 { | |
margin-bottom: 5.5rem; | |
} | |
.shorthand:mb-23 { | |
margin-bottom: 5.75rem; | |
} | |
.shorthand:mb-24 { | |
margin-bottom: 6rem; | |
} | |
.shorthand:mb-25 { | |
margin-bottom: 6.25rem; | |
} | |
.shorthand:mb-26 { | |
margin-bottom: 6.5rem; | |
} | |
.shorthand:mb-27 { | |
margin-bottom: 6.75rem; | |
} | |
.shorthand:mb-28 { | |
margin-bottom: 7rem; | |
} | |
.shorthand:mb-29 { | |
margin-bottom: 7.25rem; | |
} | |
.shorthand:mb-30 { | |
margin-bottom: 7.5rem; | |
} | |
.shorthand:mb-31 { | |
margin-bottom: 7.75rem; | |
} | |
.shorthand:mb-32 { | |
margin-bottom: 8rem; | |
} | |
.shorthand:mb-33 { | |
margin-bottom: 8.25rem; | |
} | |
.shorthand:mb-34 { | |
margin-bottom: 8.5rem; | |
} | |
.shorthand:mb-35 { | |
margin-bottom: 8.75rem; | |
} | |
.shorthand:mb-36 { | |
margin-bottom: 9rem; | |
} | |
.shorthand:mb-37 { | |
margin-bottom: 9.25rem; | |
} | |
.shorthand:mb-38 { | |
margin-bottom: 9.5rem; | |
} | |
.shorthand:mb-39 { | |
margin-bottom: 9.75rem; | |
} | |
.shorthand:mb-40 { | |
margin-bottom: 10rem; | |
} | |
.shorthand:mb-41 { | |
margin-bottom: 10.25rem; | |
} | |
.shorthand:mb-42 { | |
margin-bottom: 10.5rem; | |
} | |
.shorthand:mb-43 { | |
margin-bottom: 10.75rem; | |
} | |
.shorthand:mb-44 { | |
margin-bottom: 11rem; | |
} | |
.shorthand:mb-45 { | |
margin-bottom: 11.25rem; | |
} | |
.shorthand:mb-46 { | |
margin-bottom: 11.5rem; | |
} | |
.shorthand:mb-47 { | |
margin-bottom: 11.75rem; | |
} | |
.shorthand:mb-48 { | |
margin-bottom: 12rem; | |
} | |
.shorthand:mb-49 { | |
margin-bottom: 12.25rem; | |
} | |
.shorthand:mb-50 { | |
margin-bottom: 12.5rem; | |
} | |
.shorthand:mb-51 { | |
margin-bottom: 12.75rem; | |
} | |
} | |
@media (min-width: 1200px) { | |
.shorthand:pl-0 { | |
padding-left: 0; | |
} | |
.shorthand:pl-1 { | |
padding-left: 0.25rem; | |
} | |
.shorthand:pl-2 { | |
padding-left: 0.5rem; | |
} | |
.shorthand:pl-3 { | |
padding-left: 0.75rem; | |
} | |
.shorthand:pl-4 { | |
padding-left: 1rem; | |
} | |
.shorthand:pl-5 { | |
padding-left: 1.25rem; | |
} | |
.shorthand:pl-6 { | |
padding-left: 1.5rem; | |
} | |
.shorthand:pl-7 { | |
padding-left: 1.75rem; | |
} | |
.shorthand:pl-8 { | |
padding-left: 2rem; | |
} | |
.shorthand:pl-9 { | |
padding-left: 2.25rem; | |
} | |
.shorthand:pl-10 { | |
padding-left: 2.5rem; | |
} | |
.shorthand:pl-11 { | |
padding-left: 2.75rem; | |
} | |
.shorthand:pl-12 { | |
padding-left: 3rem; | |
} | |
.shorthand:pl-13 { | |
padding-left: 3.25rem; | |
} | |
.shorthand:pl-14 { | |
padding-left: 3.5rem; | |
} | |
.shorthand:pl-15 { | |
padding-left: 3.75rem; | |
} | |
.shorthand:pl-16 { | |
padding-left: 4rem; | |
} | |
.shorthand:pl-17 { | |
padding-left: 4.25rem; | |
} | |
.shorthand:pl-18 { | |
padding-left: 4.5rem; | |
} | |
.shorthand:pl-19 { | |
padding-left: 4.75rem; | |
} | |
.shorthand:pl-20 { | |
padding-left: 5rem; | |
} | |
.shorthand:pl-21 { | |
padding-left: 5.25rem; | |
} | |
.shorthand:pl-22 { | |
padding-left: 5.5rem; | |
} | |
.shorthand:pl-23 { | |
padding-left: 5.75rem; | |
} | |
.shorthand:pl-24 { | |
padding-left: 6rem; | |
} | |
.shorthand:pl-25 { | |
padding-left: 6.25rem; | |
} | |
.shorthand:pl-26 { | |
padding-left: 6.5rem; | |
} | |
.shorthand:pl-27 { | |
padding-left: 6.75rem; | |
} | |
.shorthand:pl-28 { | |
padding-left: 7rem; | |
} | |
.shorthand:pl-29 { | |
padding-left: 7.25rem; | |
} | |
.shorthand:pl-30 { | |
padding-left: 7.5rem; | |
} | |
.shorthand:pl-31 { | |
padding-left: 7.75rem; | |
} | |
.shorthand:pl-32 { | |
padding-left: 8rem; | |
} | |
.shorthand:pl-33 { | |
padding-left: 8.25rem; | |
} | |
.shorthand:pl-34 { | |
padding-left: 8.5rem; | |
} | |
.shorthand:pl-35 { | |
padding-left: 8.75rem; | |
} | |
.shorthand:pl-36 { | |
padding-left: 9rem; | |
} | |
.shorthand:pl-37 { | |
padding-left: 9.25rem; | |
} | |
.shorthand:pl-38 { | |
padding-left: 9.5rem; | |
} | |
.shorthand:pl-39 { | |
padding-left: 9.75rem; | |
} | |
.shorthand:pl-40 { | |
padding-left: 10rem; | |
} | |
.shorthand:pl-41 { | |
padding-left: 10.25rem; | |
} | |
.shorthand:pl-42 { | |
padding-left: 10.5rem; | |
} | |
.shorthand:pl-43 { | |
padding-left: 10.75rem; | |
} | |
.shorthand:pl-44 { | |
padding-left: 11rem; | |
} | |
.shorthand:pl-45 { | |
padding-left: 11.25rem; | |
} | |
.shorthand:pl-46 { | |
padding-left: 11.5rem; | |
} | |
.shorthand:pl-47 { | |
padding-left: 11.75rem; | |
} | |
.shorthand:pl-48 { | |
padding-left: 12rem; | |
} | |
.shorthand:pl-49 { | |
padding-left: 12.25rem; | |
} | |
.shorthand:pl-50 { | |
padding-left: 12.5rem; | |
} | |
.shorthand:pl-51 { | |
padding-left: 12.75rem; | |
} | |
.shorthand:pr-0 { | |
padding-right: 0; | |
} | |
.shorthand:pr-1 { | |
padding-right: 0.25rem; | |
} | |
.shorthand:pr-2 { | |
padding-right: 0.5rem; | |
} | |
.shorthand:pr-3 { | |
padding-right: 0.75rem; | |
} | |
.shorthand:pr-4 { | |
padding-right: 1rem; | |
} | |
.shorthand:pr-5 { | |
padding-right: 1.25rem; | |
} | |
.shorthand:pr-6 { | |
padding-right: 1.5rem; | |
} | |
.shorthand:pr-7 { | |
padding-right: 1.75rem; | |
} | |
.shorthand:pr-8 { | |
padding-right: 2rem; | |
} | |
.shorthand:pr-9 { | |
padding-right: 2.25rem; | |
} | |
.shorthand:pr-10 { | |
padding-right: 2.5rem; | |
} | |
.shorthand:pr-11 { | |
padding-right: 2.75rem; | |
} | |
.shorthand:pr-12 { | |
padding-right: 3rem; | |
} | |
.shorthand:pr-13 { | |
padding-right: 3.25rem; | |
} | |
.shorthand:pr-14 { | |
padding-right: 3.5rem; | |
} | |
.shorthand:pr-15 { | |
padding-right: 3.75rem; | |
} | |
.shorthand:pr-16 { | |
padding-right: 4rem; | |
} | |
.shorthand:pr-17 { | |
padding-right: 4.25rem; | |
} | |
.shorthand:pr-18 { | |
padding-right: 4.5rem; | |
} | |
.shorthand:pr-19 { | |
padding-right: 4.75rem; | |
} | |
.shorthand:pr-20 { | |
padding-right: 5rem; | |
} | |
.shorthand:pr-21 { | |
padding-right: 5.25rem; | |
} | |
.shorthand:pr-22 { | |
padding-right: 5.5rem; | |
} | |
.shorthand:pr-23 { | |
padding-right: 5.75rem; | |
} | |
.shorthand:pr-24 { | |
padding-right: 6rem; | |
} | |
.shorthand:pr-25 { | |
padding-right: 6.25rem; | |
} | |
.shorthand:pr-26 { | |
padding-right: 6.5rem; | |
} | |
.shorthand:pr-27 { | |
padding-right: 6.75rem; | |
} | |
.shorthand:pr-28 { | |
padding-right: 7rem; | |
} | |
.shorthand:pr-29 { | |
padding-right: 7.25rem; | |
} | |
.shorthand:pr-30 { | |
padding-right: 7.5rem; | |
} | |
.shorthand:pr-31 { | |
padding-right: 7.75rem; | |
} | |
.shorthand:pr-32 { | |
padding-right: 8rem; | |
} | |
.shorthand:pr-33 { | |
padding-right: 8.25rem; | |
} | |
.shorthand:pr-34 { | |
padding-right: 8.5rem; | |
} | |
.shorthand:pr-35 { | |
padding-right: 8.75rem; | |
} | |
.shorthand:pr-36 { | |
padding-right: 9rem; | |
} | |
.shorthand:pr-37 { | |
padding-right: 9.25rem; | |
} | |
.shorthand:pr-38 { | |
padding-right: 9.5rem; | |
} | |
.shorthand:pr-39 { | |
padding-right: 9.75rem; | |
} | |
.shorthand:pr-40 { | |
padding-right: 10rem; | |
} | |
.shorthand:pr-41 { | |
padding-right: 10.25rem; | |
} | |
.shorthand:pr-42 { | |
padding-right: 10.5rem; | |
} | |
.shorthand:pr-43 { | |
padding-right: 10.75rem; | |
} | |
.shorthand:pr-44 { | |
padding-right: 11rem; | |
} | |
.shorthand:pr-45 { | |
padding-right: 11.25rem; | |
} | |
.shorthand:pr-46 { | |
padding-right: 11.5rem; | |
} | |
.shorthand:pr-47 { | |
padding-right: 11.75rem; | |
} | |
.shorthand:pr-48 { | |
padding-right: 12rem; | |
} | |
.shorthand:pr-49 { | |
padding-right: 12.25rem; | |
} | |
.shorthand:pr-50 { | |
padding-right: 12.5rem; | |
} | |
.shorthand:pr-51 { | |
padding-right: 12.75rem; | |
} | |
.shorthand:pt-0 { | |
padding-top: 0; | |
} | |
.shorthand:pt-1 { | |
padding-top: 0.25rem; | |
} | |
.shorthand:pt-2 { | |
padding-top: 0.5rem; | |
} | |
.shorthand:pt-3 { | |
padding-top: 0.75rem; | |
} | |
.shorthand:pt-4 { | |
padding-top: 1rem; | |
} | |
.shorthand:pt-5 { | |
padding-top: 1.25rem; | |
} | |
.shorthand:pt-6 { | |
padding-top: 1.5rem; | |
} | |
.shorthand:pt-7 { | |
padding-top: 1.75rem; | |
} | |
.shorthand:pt-8 { | |
padding-top: 2rem; | |
} | |
.shorthand:pt-9 { | |
padding-top: 2.25rem; | |
} | |
.shorthand:pt-10 { | |
padding-top: 2.5rem; | |
} | |
.shorthand:pt-11 { | |
padding-top: 2.75rem; | |
} | |
.shorthand:pt-12 { | |
padding-top: 3rem; | |
} | |
.shorthand:pt-13 { | |
padding-top: 3.25rem; | |
} | |
.shorthand:pt-14 { | |
padding-top: 3.5rem; | |
} | |
.shorthand:pt-15 { | |
padding-top: 3.75rem; | |
} | |
.shorthand:pt-16 { | |
padding-top: 4rem; | |
} | |
.shorthand:pt-17 { | |
padding-top: 4.25rem; | |
} | |
.shorthand:pt-18 { | |
padding-top: 4.5rem; | |
} | |
.shorthand:pt-19 { | |
padding-top: 4.75rem; | |
} | |
.shorthand:pt-20 { | |
padding-top: 5rem; | |
} | |
.shorthand:pt-21 { | |
padding-top: 5.25rem; | |
} | |
.shorthand:pt-22 { | |
padding-top: 5.5rem; | |
} | |
.shorthand:pt-23 { | |
padding-top: 5.75rem; | |
} | |
.shorthand:pt-24 { | |
padding-top: 6rem; | |
} | |
.shorthand:pt-25 { | |
padding-top: 6.25rem; | |
} | |
.shorthand:pt-26 { | |
padding-top: 6.5rem; | |
} | |
.shorthand:pt-27 { | |
padding-top: 6.75rem; | |
} | |
.shorthand:pt-28 { | |
padding-top: 7rem; | |
} | |
.shorthand:pt-29 { | |
padding-top: 7.25rem; | |
} | |
.shorthand:pt-30 { | |
padding-top: 7.5rem; | |
} | |
.shorthand:pt-31 { | |
padding-top: 7.75rem; | |
} | |
.shorthand:pt-32 { | |
padding-top: 8rem; | |
} | |
.shorthand:pt-33 { | |
padding-top: 8.25rem; | |
} | |
.shorthand:pt-34 { | |
padding-top: 8.5rem; | |
} | |
.shorthand:pt-35 { | |
padding-top: 8.75rem; | |
} | |
.shorthand:pt-36 { | |
padding-top: 9rem; | |
} | |
.shorthand:pt-37 { | |
padding-top: 9.25rem; | |
} | |
.shorthand:pt-38 { | |
padding-top: 9.5rem; | |
} | |
.shorthand:pt-39 { | |
padding-top: 9.75rem; | |
} | |
.shorthand:pt-40 { | |
padding-top: 10rem; | |
} | |
.shorthand:pt-41 { | |
padding-top: 10.25rem; | |
} | |
.shorthand:pt-42 { | |
padding-top: 10.5rem; | |
} | |
.shorthand:pt-43 { | |
padding-top: 10.75rem; | |
} | |
.shorthand:pt-44 { | |
padding-top: 11rem; | |
} | |
.shorthand:pt-45 { | |
padding-top: 11.25rem; | |
} | |
.shorthand:pt-46 { | |
padding-top: 11.5rem; | |
} | |
.shorthand:pt-47 { | |
padding-top: 11.75rem; | |
} | |
.shorthand:pt-48 { | |
padding-top: 12rem; | |
} | |
.shorthand:pt-49 { | |
padding-top: 12.25rem; | |
} | |
.shorthand:pt-50 { | |
padding-top: 12.5rem; | |
} | |
.shorthand:pt-51 { | |
padding-top: 12.75rem; | |
} | |
.shorthand:pb-0 { | |
padding-bottom: 0; | |
} | |
.shorthand:pb-1 { | |
padding-bottom: 0.25rem; | |
} | |
.shorthand:pb-2 { | |
padding-bottom: 0.5rem; | |
} | |
.shorthand:pb-3 { | |
padding-bottom: 0.75rem; | |
} | |
.shorthand:pb-4 { | |
padding-bottom: 1rem; | |
} | |
.shorthand:pb-5 { | |
padding-bottom: 1.25rem; | |
} | |
.shorthand:pb-6 { | |
padding-bottom: 1.5rem; | |
} | |
.shorthand:pb-7 { | |
padding-bottom: 1.75rem; | |
} | |
.shorthand:pb-8 { | |
padding-bottom: 2rem; | |
} | |
.shorthand:pb-9 { | |
padding-bottom: 2.25rem; | |
} | |
.shorthand:pb-10 { | |
padding-bottom: 2.5rem; | |
} | |
.shorthand:pb-11 { | |
padding-bottom: 2.75rem; | |
} | |
.shorthand:pb-12 { | |
padding-bottom: 3rem; | |
} | |
.shorthand:pb-13 { | |
padding-bottom: 3.25rem; | |
} | |
.shorthand:pb-14 { | |
padding-bottom: 3.5rem; | |
} | |
.shorthand:pb-15 { | |
padding-bottom: 3.75rem; | |
} | |
.shorthand:pb-16 { | |
padding-bottom: 4rem; | |
} | |
.shorthand:pb-17 { | |
padding-bottom: 4.25rem; | |
} | |
.shorthand:pb-18 { | |
padding-bottom: 4.5rem; | |
} | |
.shorthand:pb-19 { | |
padding-bottom: 4.75rem; | |
} | |
.shorthand:pb-20 { | |
padding-bottom: 5rem; | |
} | |
.shorthand:pb-21 { | |
padding-bottom: 5.25rem; | |
} | |
.shorthand:pb-22 { | |
padding-bottom: 5.5rem; | |
} | |
.shorthand:pb-23 { | |
padding-bottom: 5.75rem; | |
} | |
.shorthand:pb-24 { | |
padding-bottom: 6rem; | |
} | |
.shorthand:pb-25 { | |
padding-bottom: 6.25rem; | |
} | |
.shorthand:pb-26 { | |
padding-bottom: 6.5rem; | |
} | |
.shorthand:pb-27 { | |
padding-bottom: 6.75rem; | |
} | |
.shorthand:pb-28 { | |
padding-bottom: 7rem; | |
} | |
.shorthand:pb-29 { | |
padding-bottom: 7.25rem; | |
} | |
.shorthand:pb-30 { | |
padding-bottom: 7.5rem; | |
} | |
.shorthand:pb-31 { | |
padding-bottom: 7.75rem; | |
} | |
.shorthand:pb-32 { | |
padding-bottom: 8rem; | |
} | |
.shorthand:pb-33 { | |
padding-bottom: 8.25rem; | |
} | |
.shorthand:pb-34 { | |
padding-bottom: 8.5rem; | |
} | |
.shorthand:pb-35 { | |
padding-bottom: 8.75rem; | |
} | |
.shorthand:pb-36 { | |
padding-bottom: 9rem; | |
} | |
.shorthand:pb-37 { | |
padding-bottom: 9.25rem; | |
} | |
.shorthand:pb-38 { | |
padding-bottom: 9.5rem; | |
} | |
.shorthand:pb-39 { | |
padding-bottom: 9.75rem; | |
} | |
.shorthand:pb-40 { | |
padding-bottom: 10rem; | |
} | |
.shorthand:pb-41 { | |
padding-bottom: 10.25rem; | |
} | |
.shorthand:pb-42 { | |
padding-bottom: 10.5rem; | |
} | |
.shorthand:pb-43 { | |
padding-bottom: 10.75rem; | |
} | |
.shorthand:pb-44 { | |
padding-bottom: 11rem; | |
} | |
.shorthand:pb-45 { | |
padding-bottom: 11.25rem; | |
} | |
.shorthand:pb-46 { | |
padding-bottom: 11.5rem; | |
} | |
.shorthand:pb-47 { | |
padding-bottom: 11.75rem; | |
} | |
.shorthand:pb-48 { | |
padding-bottom: 12rem; | |
} | |
.shorthand:pb-49 { | |
padding-bottom: 12.25rem; | |
} | |
.shorthand:pb-50 { | |
padding-bottom: 12.5rem; | |
} | |
.shorthand:pb-51 { | |
padding-bottom: 12.75rem; | |
} | |
.shorthand:ml-0 { | |
margin-left: 0; | |
} | |
.shorthand:ml-1 { | |
margin-left: 0.25rem; | |
} | |
.shorthand:ml-2 { | |
margin-left: 0.5rem; | |
} | |
.shorthand:ml-3 { | |
margin-left: 0.75rem; | |
} | |
.shorthand:ml-4 { | |
margin-left: 1rem; | |
} | |
.shorthand:ml-5 { | |
margin-left: 1.25rem; | |
} | |
.shorthand:ml-6 { | |
margin-left: 1.5rem; | |
} | |
.shorthand:ml-7 { | |
margin-left: 1.75rem; | |
} | |
.shorthand:ml-8 { | |
margin-left: 2rem; | |
} | |
.shorthand:ml-9 { | |
margin-left: 2.25rem; | |
} | |
.shorthand:ml-10 { | |
margin-left: 2.5rem; | |
} | |
.shorthand:ml-11 { | |
margin-left: 2.75rem; | |
} | |
.shorthand:ml-12 { | |
margin-left: 3rem; | |
} | |
.shorthand:ml-13 { | |
margin-left: 3.25rem; | |
} | |
.shorthand:ml-14 { | |
margin-left: 3.5rem; | |
} | |
.shorthand:ml-15 { | |
margin-left: 3.75rem; | |
} | |
.shorthand:ml-16 { | |
margin-left: 4rem; | |
} | |
.shorthand:ml-17 { | |
margin-left: 4.25rem; | |
} | |
.shorthand:ml-18 { | |
margin-left: 4.5rem; | |
} | |
.shorthand:ml-19 { | |
margin-left: 4.75rem; | |
} | |
.shorthand:ml-20 { | |
margin-left: 5rem; | |
} | |
.shorthand:ml-21 { | |
margin-left: 5.25rem; | |
} | |
.shorthand:ml-22 { | |
margin-left: 5.5rem; | |
} | |
.shorthand:ml-23 { | |
margin-left: 5.75rem; | |
} | |
.shorthand:ml-24 { | |
margin-left: 6rem; | |
} | |
.shorthand:ml-25 { | |
margin-left: 6.25rem; | |
} | |
.shorthand:ml-26 { | |
margin-left: 6.5rem; | |
} | |
.shorthand:ml-27 { | |
margin-left: 6.75rem; | |
} | |
.shorthand:ml-28 { | |
margin-left: 7rem; | |
} | |
.shorthand:ml-29 { | |
margin-left: 7.25rem; | |
} | |
.shorthand:ml-30 { | |
margin-left: 7.5rem; | |
} | |
.shorthand:ml-31 { | |
margin-left: 7.75rem; | |
} | |
.shorthand:ml-32 { | |
margin-left: 8rem; | |
} | |
.shorthand:ml-33 { | |
margin-left: 8.25rem; | |
} | |
.shorthand:ml-34 { | |
margin-left: 8.5rem; | |
} | |
.shorthand:ml-35 { | |
margin-left: 8.75rem; | |
} | |
.shorthand:ml-36 { | |
margin-left: 9rem; | |
} | |
.shorthand:ml-37 { | |
margin-left: 9.25rem; | |
} | |
.shorthand:ml-38 { | |
margin-left: 9.5rem; | |
} | |
.shorthand:ml-39 { | |
margin-left: 9.75rem; | |
} | |
.shorthand:ml-40 { | |
margin-left: 10rem; | |
} | |
.shorthand:ml-41 { | |
margin-left: 10.25rem; | |
} | |
.shorthand:ml-42 { | |
margin-left: 10.5rem; | |
} | |
.shorthand:ml-43 { | |
margin-left: 10.75rem; | |
} | |
.shorthand:ml-44 { | |
margin-left: 11rem; | |
} | |
.shorthand:ml-45 { | |
margin-left: 11.25rem; | |
} | |
.shorthand:ml-46 { | |
margin-left: 11.5rem; | |
} | |
.shorthand:ml-47 { | |
margin-left: 11.75rem; | |
} | |
.shorthand:ml-48 { | |
margin-left: 12rem; | |
} | |
.shorthand:ml-49 { | |
margin-left: 12.25rem; | |
} | |
.shorthand:ml-50 { | |
margin-left: 12.5rem; | |
} | |
.shorthand:ml-51 { | |
margin-left: 12.75rem; | |
} | |
.shorthand:mr-0 { | |
margin-right: 0; | |
} | |
.shorthand:mr-1 { | |
margin-right: 0.25rem; | |
} | |
.shorthand:mr-2 { | |
margin-right: 0.5rem; | |
} | |
.shorthand:mr-3 { | |
margin-right: 0.75rem; | |
} | |
.shorthand:mr-4 { | |
margin-right: 1rem; | |
} | |
.shorthand:mr-5 { | |
margin-right: 1.25rem; | |
} | |
.shorthand:mr-6 { | |
margin-right: 1.5rem; | |
} | |
.shorthand:mr-7 { | |
margin-right: 1.75rem; | |
} | |
.shorthand:mr-8 { | |
margin-right: 2rem; | |
} | |
.shorthand:mr-9 { | |
margin-right: 2.25rem; | |
} | |
.shorthand:mr-10 { | |
margin-right: 2.5rem; | |
} | |
.shorthand:mr-11 { | |
margin-right: 2.75rem; | |
} | |
.shorthand:mr-12 { | |
margin-right: 3rem; | |
} | |
.shorthand:mr-13 { | |
margin-right: 3.25rem; | |
} | |
.shorthand:mr-14 { | |
margin-right: 3.5rem; | |
} | |
.shorthand:mr-15 { | |
margin-right: 3.75rem; | |
} | |
.shorthand:mr-16 { | |
margin-right: 4rem; | |
} | |
.shorthand:mr-17 { | |
margin-right: 4.25rem; | |
} | |
.shorthand:mr-18 { | |
margin-right: 4.5rem; | |
} | |
.shorthand:mr-19 { | |
margin-right: 4.75rem; | |
} | |
.shorthand:mr-20 { | |
margin-right: 5rem; | |
} | |
.shorthand:mr-21 { | |
margin-right: 5.25rem; | |
} | |
.shorthand:mr-22 { | |
margin-right: 5.5rem; | |
} | |
.shorthand:mr-23 { | |
margin-right: 5.75rem; | |
} | |
.shorthand:mr-24 { | |
margin-right: 6rem; | |
} | |
.shorthand:mr-25 { | |
margin-right: 6.25rem; | |
} | |
.shorthand:mr-26 { | |
margin-right: 6.5rem; | |
} | |
.shorthand:mr-27 { | |
margin-right: 6.75rem; | |
} | |
.shorthand:mr-28 { | |
margin-right: 7rem; | |
} | |
.shorthand:mr-29 { | |
margin-right: 7.25rem; | |
} | |
.shorthand:mr-30 { | |
margin-right: 7.5rem; | |
} | |
.shorthand:mr-31 { | |
margin-right: 7.75rem; | |
} | |
.shorthand:mr-32 { | |
margin-right: 8rem; | |
} | |
.shorthand:mr-33 { | |
margin-right: 8.25rem; | |
} | |
.shorthand:mr-34 { | |
margin-right: 8.5rem; | |
} | |
.shorthand:mr-35 { | |
margin-right: 8.75rem; | |
} | |
.shorthand:mr-36 { | |
margin-right: 9rem; | |
} | |
.shorthand:mr-37 { | |
margin-right: 9.25rem; | |
} | |
.shorthand:mr-38 { | |
margin-right: 9.5rem; | |
} | |
.shorthand:mr-39 { | |
margin-right: 9.75rem; | |
} | |
.shorthand:mr-40 { | |
margin-right: 10rem; | |
} | |
.shorthand:mr-41 { | |
margin-right: 10.25rem; | |
} | |
.shorthand:mr-42 { | |
margin-right: 10.5rem; | |
} | |
.shorthand:mr-43 { | |
margin-right: 10.75rem; | |
} | |
.shorthand:mr-44 { | |
margin-right: 11rem; | |
} | |
.shorthand:mr-45 { | |
margin-right: 11.25rem; | |
} | |
.shorthand:mr-46 { | |
margin-right: 11.5rem; | |
} | |
.shorthand:mr-47 { | |
margin-right: 11.75rem; | |
} | |
.shorthand:mr-48 { | |
margin-right: 12rem; | |
} | |
.shorthand:mr-49 { | |
margin-right: 12.25rem; | |
} | |
.shorthand:mr-50 { | |
margin-right: 12.5rem; | |
} | |
.shorthand:mr-51 { | |
margin-right: 12.75rem; | |
} | |
.shorthand:mt-0 { | |
margin-top: 0; | |
} | |
.shorthand:mt-1 { | |
margin-top: 0.25rem; | |
} | |
.shorthand:mt-2 { | |
margin-top: 0.5rem; | |
} | |
.shorthand:mt-3 { | |
margin-top: 0.75rem; | |
} | |
.shorthand:mt-4 { | |
margin-top: 1rem; | |
} | |
.shorthand:mt-5 { | |
margin-top: 1.25rem; | |
} | |
.shorthand:mt-6 { | |
margin-top: 1.5rem; | |
} | |
.shorthand:mt-7 { | |
margin-top: 1.75rem; | |
} | |
.shorthand:mt-8 { | |
margin-top: 2rem; | |
} | |
.shorthand:mt-9 { | |
margin-top: 2.25rem; | |
} | |
.shorthand:mt-10 { | |
margin-top: 2.5rem; | |
} | |
.shorthand:mt-11 { | |
margin-top: 2.75rem; | |
} | |
.shorthand:mt-12 { | |
margin-top: 3rem; | |
} | |
.shorthand:mt-13 { | |
margin-top: 3.25rem; | |
} | |
.shorthand:mt-14 { | |
margin-top: 3.5rem; | |
} | |
.shorthand:mt-15 { | |
margin-top: 3.75rem; | |
} | |
.shorthand:mt-16 { | |
margin-top: 4rem; | |
} | |
.shorthand:mt-17 { | |
margin-top: 4.25rem; | |
} | |
.shorthand:mt-18 { | |
margin-top: 4.5rem; | |
} | |
.shorthand:mt-19 { | |
margin-top: 4.75rem; | |
} | |
.shorthand:mt-20 { | |
margin-top: 5rem; | |
} | |
.shorthand:mt-21 { | |
margin-top: 5.25rem; | |
} | |
.shorthand:mt-22 { | |
margin-top: 5.5rem; | |
} | |
.shorthand:mt-23 { | |
margin-top: 5.75rem; | |
} | |
.shorthand:mt-24 { | |
margin-top: 6rem; | |
} | |
.shorthand:mt-25 { | |
margin-top: 6.25rem; | |
} | |
.shorthand:mt-26 { | |
margin-top: 6.5rem; | |
} | |
.shorthand:mt-27 { | |
margin-top: 6.75rem; | |
} | |
.shorthand:mt-28 { | |
margin-top: 7rem; | |
} | |
.shorthand:mt-29 { | |
margin-top: 7.25rem; | |
} | |
.shorthand:mt-30 { | |
margin-top: 7.5rem; | |
} | |
.shorthand:mt-31 { | |
margin-top: 7.75rem; | |
} | |
.shorthand:mt-32 { | |
margin-top: 8rem; | |
} | |
.shorthand:mt-33 { | |
margin-top: 8.25rem; | |
} | |
.shorthand:mt-34 { | |
margin-top: 8.5rem; | |
} | |
.shorthand:mt-35 { | |
margin-top: 8.75rem; | |
} | |
.shorthand:mt-36 { | |
margin-top: 9rem; | |
} | |
.shorthand:mt-37 { | |
margin-top: 9.25rem; | |
} | |
.shorthand:mt-38 { | |
margin-top: 9.5rem; | |
} | |
.shorthand:mt-39 { | |
margin-top: 9.75rem; | |
} | |
.shorthand:mt-40 { | |
margin-top: 10rem; | |
} | |
.shorthand:mt-41 { | |
margin-top: 10.25rem; | |
} | |
.shorthand:mt-42 { | |
margin-top: 10.5rem; | |
} | |
.shorthand:mt-43 { | |
margin-top: 10.75rem; | |
} | |
.shorthand:mt-44 { | |
margin-top: 11rem; | |
} | |
.shorthand:mt-45 { | |
margin-top: 11.25rem; | |
} | |
.shorthand:mt-46 { | |
margin-top: 11.5rem; | |
} | |
.shorthand:mt-47 { | |
margin-top: 11.75rem; | |
} | |
.shorthand:mt-48 { | |
margin-top: 12rem; | |
} | |
.shorthand:mt-49 { | |
margin-top: 12.25rem; | |
} | |
.shorthand:mt-50 { | |
margin-top: 12.5rem; | |
} | |
.shorthand:mt-51 { | |
margin-top: 12.75rem; | |
} | |
.shorthand:mb-0 { | |
margin-bottom: 0; | |
} | |
.shorthand:mb-1 { | |
margin-bottom: 0.25rem; | |
} | |
.shorthand:mb-2 { | |
margin-bottom: 0.5rem; | |
} | |
.shorthand:mb-3 { | |
margin-bottom: 0.75rem; | |
} | |
.shorthand:mb-4 { | |
margin-bottom: 1rem; | |
} | |
.shorthand:mb-5 { | |
margin-bottom: 1.25rem; | |
} | |
.shorthand:mb-6 { | |
margin-bottom: 1.5rem; | |
} | |
.shorthand:mb-7 { | |
margin-bottom: 1.75rem; | |
} | |
.shorthand:mb-8 { | |
margin-bottom: 2rem; | |
} | |
.shorthand:mb-9 { | |
margin-bottom: 2.25rem; | |
} | |
.shorthand:mb-10 { | |
margin-bottom: 2.5rem; | |
} | |
.shorthand:mb-11 { | |
margin-bottom: 2.75rem; | |
} | |
.shorthand:mb-12 { | |
margin-bottom: 3rem; | |
} | |
.shorthand:mb-13 { | |
margin-bottom: 3.25rem; | |
} | |
.shorthand:mb-14 { | |
margin-bottom: 3.5rem; | |
} | |
.shorthand:mb-15 { | |
margin-bottom: 3.75rem; | |
} | |
.shorthand:mb-16 { | |
margin-bottom: 4rem; | |
} | |
.shorthand:mb-17 { | |
margin-bottom: 4.25rem; | |
} | |
.shorthand:mb-18 { | |
margin-bottom: 4.5rem; | |
} | |
.shorthand:mb-19 { | |
margin-bottom: 4.75rem; | |
} | |
.shorthand:mb-20 { | |
margin-bottom: 5rem; | |
} | |
.shorthand:mb-21 { | |
margin-bottom: 5.25rem; | |
} | |
.shorthand:mb-22 { | |
margin-bottom: 5.5rem; | |
} | |
.shorthand:mb-23 { | |
margin-bottom: 5.75rem; | |
} | |
.shorthand:mb-24 { | |
margin-bottom: 6rem; | |
} | |
.shorthand:mb-25 { | |
margin-bottom: 6.25rem; | |
} | |
.shorthand:mb-26 { | |
margin-bottom: 6.5rem; | |
} | |
.shorthand:mb-27 { | |
margin-bottom: 6.75rem; | |
} | |
.shorthand:mb-28 { | |
margin-bottom: 7rem; | |
} | |
.shorthand:mb-29 { | |
margin-bottom: 7.25rem; | |
} | |
.shorthand:mb-30 { | |
margin-bottom: 7.5rem; | |
} | |
.shorthand:mb-31 { | |
margin-bottom: 7.75rem; | |
} | |
.shorthand:mb-32 { | |
margin-bottom: 8rem; | |
} | |
.shorthand:mb-33 { | |
margin-bottom: 8.25rem; | |
} | |
.shorthand:mb-34 { | |
margin-bottom: 8.5rem; | |
} | |
.shorthand:mb-35 { | |
margin-bottom: 8.75rem; | |
} | |
.shorthand:mb-36 { | |
margin-bottom: 9rem; | |
} | |
.shorthand:mb-37 { | |
margin-bottom: 9.25rem; | |
} | |
.shorthand:mb-38 { | |
margin-bottom: 9.5rem; | |
} | |
.shorthand:mb-39 { | |
margin-bottom: 9.75rem; | |
} | |
.shorthand:mb-40 { | |
margin-bottom: 10rem; | |
} | |
.shorthand:mb-41 { | |
margin-bottom: 10.25rem; | |
} | |
.shorthand:mb-42 { | |
margin-bottom: 10.5rem; | |
} | |
.shorthand:mb-43 { | |
margin-bottom: 10.75rem; | |
} | |
.shorthand:mb-44 { | |
margin-bottom: 11rem; | |
} | |
.shorthand:mb-45 { | |
margin-bottom: 11.25rem; | |
} | |
.shorthand:mb-46 { | |
margin-bottom: 11.5rem; | |
} | |
.shorthand:mb-47 { | |
margin-bottom: 11.75rem; | |
} | |
.shorthand:mb-48 { | |
margin-bottom: 12rem; | |
} | |
.shorthand:mb-49 { | |
margin-bottom: 12.25rem; | |
} | |
.shorthand:mb-50 { | |
margin-bottom: 12.5rem; | |
} | |
.shorthand:mb-51 { | |
margin-bottom: 12.75rem; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sass": { | |
"compiler": "dart-sass/1.26.11", | |
"extensions": {}, | |
"syntax": "SCSS", | |
"outputStyle": "expanded" | |
}, | |
"autoprefixer": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment