Sha256: 01c814f652705d75b25419ae1c837ba3e316029de521a30543dd1cfc4aa98520
Contents?: true
Size: 1.31 KB
Versions: 16
Compression:
Stored size: 1.31 KB
Contents
// Optional offset options to work with grid.scss // Offset Columns .offset-1 { margin-left: (1 / 12 * 100%); } .offset-2 { margin-left: (2 / 12 * 100%); } .offset-3 { margin-left: (3 / 12 * 100%); } .offset-4 { margin-left: (4 / 12 * 100%); } .offset-5 { margin-left: (5 / 12 * 100%); } .offset-6 { margin-left: (6 / 12 * 100%); } .offset-7 { margin-left: (7 / 12 * 100%); } .offset-8 { margin-left: (8 / 12 * 100%); } .offset-9 { margin-left: (9 / 12 * 100%); } .offset-10 { margin-left: (10 / 12 * 100%); } .offset-11 { margin-left: (11 / 12 * 100%); } @each $breakpoint in map-keys($breakpoints) { @include breakpoint($breakpoint) { .offset-#{$breakpoint}-1 { margin-left: (1 / 12 * 100%); } .offset-#{$breakpoint}-2 { margin-left: (2 / 12 * 100%); } .offset-#{$breakpoint}-3 { margin-left: (3 / 12 * 100%); } .offset-#{$breakpoint}-4 { margin-left: (4 / 12 * 100%); } .offset-#{$breakpoint}-5 { margin-left: (5 / 12 * 100%); } .offset-#{$breakpoint}-6 { margin-left: (6 / 12 * 100%); } .offset-#{$breakpoint}-7 { margin-left: (7 / 12 * 100%); } .offset-#{$breakpoint}-8 { margin-left: (8 / 12 * 100%); } .offset-#{$breakpoint}-9 { margin-left: (9 / 12 * 100%); } .offset-#{$breakpoint}-10 { margin-left: (10 / 12 * 100%); } .offset-#{$breakpoint}-11 { margin-left: (11 / 12 * 100%); } } }
Version data entries
16 entries across 16 versions & 1 rubygems