Spaces:
Sleeping
Sleeping
| @charset 'UTF-8'; | |
| $positions: 't b l r'; | |
| $positions: 't'top, | |
| 'b'bottom, | |
| 'l'left, | |
| 'r'right; | |
| @for $i from 0 through 20 { | |
| @each $label, | |
| $position in $positions { | |
| .p#{$label}-#{$i} { | |
| padding-#{$position}: #{$i*4}px !important; | |
| } | |
| } | |
| @each $label, | |
| $position in $positions { | |
| .m#{$label}-#{$i} { | |
| margin-#{$position}: #{$i*4}px !important; | |
| } | |
| } | |
| .m-#{$i} { | |
| margin: #{$i*4}px !important; | |
| } | |
| .p-#{$i} { | |
| padding: #{$i*4}px !important; | |
| } | |
| .px-#{$i} { | |
| padding: 0 #{$i*4}px 0 #{$i*4}px !important; | |
| } | |
| .py-#{$i} { | |
| padding: #{$i*4}px 0 #{$i*4}px 0 !important; | |
| } | |
| .h-#{$i} { | |
| height: #{$i*4}px !important; | |
| } | |
| } | |
| .d-block { | |
| display: block; | |
| } | |
| .w-full { | |
| width: 100%; | |
| } | |
| .a11y--focused { | |
| border-radius: 4px; | |
| box-shadow: 0 0 1px 3px rgba(var(--link-color-rgb), 0.5), 0 0 0 1px var(--link-color); | |
| } | |
| .pos-relative { | |
| position: relative; | |
| } | |
| .hidden-label { | |
| position: absolute; | |
| overflow: hidden; | |
| width: 1px; | |
| height: 1px; | |
| padding: 0; | |
| border: 0; | |
| margin: -1px; | |
| } | |
| .overflow--visible { | |
| overflow: visible; | |
| } | |
| .bg--white { | |
| background: var(--center-channel-bg); | |
| } | |