// // RTL: Grid // -------------------------------------------------- // Extra small grid // // Grid classes for extra small devices like smartphones. No offset, push, or // pull classes are present here due to the size of the target. // // Note that `.col-xs-12` doesn't get floated on purpose—there's no need since // it's full-width. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11 { float: right; } // Small grid // // Columns, offsets, pushes, and pulls for the small device range, from phones // to tablets. // // Note that `.col-sm-12` doesn't get floated on purpose—there's no need since // it's full-width. @media (min-width: $screen-tablet) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11 { float: right; } .col-sm-push-1, .col-sm-push-2, .col-sm-push-3, .col-sm-push-4, .col-sm-push-5, .col-sm-push-6, .col-sm-push-7, .col-sm-push-8, .col-sm-push-9, .col-sm-push-10, .col-sm-push-11, .col-sm-pull-1, .col-sm-pull-2, .col-sm-pull-3, .col-sm-pull-4, .col-sm-pull-5, .col-sm-pull-6, .col-sm-pull-7, .col-sm-pull-8, .col-sm-pull-9, .col-sm-pull-10, .col-sm-pull-11 { left: auto; right: auto; } .col-sm-offset-1 { margin-left: 0; } .col-sm-offset-2 { margin-left: 0; } .col-sm-offset-3 { margin-left: 0; } .col-sm-offset-4 { margin-left: 0; } .col-sm-offset-5 { margin-left: 0; } .col-sm-offset-6 { margin-left: 0; } .col-sm-offset-7 { margin-left: 0; } .col-sm-offset-8 { margin-left: 0; } .col-sm-offset-9 { margin-left: 0; } .col-sm-offset-10 { margin-left: 0; } .col-sm-offset-11 { margin-left: 0; } // Push and pull columns for source order changes .col-sm-push-1 { right: percentage((1 / $grid-columns)); } .col-sm-push-2 { right: percentage((2 / $grid-columns)); } .col-sm-push-3 { right: percentage((3 / $grid-columns)); } .col-sm-push-4 { right: percentage((4 / $grid-columns)); } .col-sm-push-5 { right: percentage((5 / $grid-columns)); } .col-sm-push-6 { right: percentage((6 / $grid-columns)); } .col-sm-push-7 { right: percentage((7 / $grid-columns)); } .col-sm-push-8 { right: percentage((8 / $grid-columns)); } .col-sm-push-9 { right: percentage((9 / $grid-columns)); } .col-sm-push-10 { right: percentage((10/ $grid-columns)); } .col-sm-push-11 { right: percentage((11/ $grid-columns)); } .col-sm-pull-1 { left: percentage((1 / $grid-columns)); } .col-sm-pull-2 { left: percentage((2 / $grid-columns)); } .col-sm-pull-3 { left: percentage((3 / $grid-columns)); } .col-sm-pull-4 { left: percentage((4 / $grid-columns)); } .col-sm-pull-5 { left: percentage((5 / $grid-columns)); } .col-sm-pull-6 { left: percentage((6 / $grid-columns)); } .col-sm-pull-7 { left: percentage((7 / $grid-columns)); } .col-sm-pull-8 { left: percentage((8 / $grid-columns)); } .col-sm-pull-9 { left: percentage((9 / $grid-columns)); } .col-sm-pull-10 { left: percentage((10/ $grid-columns)); } .col-sm-pull-11 { left: percentage((11/ $grid-columns)); } // Offsets .col-sm-offset-1 { margin-right: percentage((1 / $grid-columns)); } .col-sm-offset-2 { margin-right: percentage((2 / $grid-columns)); } .col-sm-offset-3 { margin-right: percentage((3 / $grid-columns)); } .col-sm-offset-4 { margin-right: percentage((4 / $grid-columns)); } .col-sm-offset-5 { margin-right: percentage((5 / $grid-columns)); } .col-sm-offset-6 { margin-right: percentage((6 / $grid-columns)); } .col-sm-offset-7 { margin-right: percentage((7 / $grid-columns)); } .col-sm-offset-8 { margin-right: percentage((8 / $grid-columns)); } .col-sm-offset-9 { margin-right: percentage((9 / $grid-columns)); } .col-sm-offset-10 { margin-right: percentage((10/ $grid-columns)); } .col-sm-offset-11 { margin-right: percentage((11/ $grid-columns)); } } // Medium grid // // Columns, offsets, pushes, and pulls for the desktop device range. // // Note that `.col-md-12` doesn't get floated on purpose—there's no need since // it's full-width. @media (min-width: $screen-desktop) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11 { float: right; } .col-md-push-1, .col-md-push-2, .col-md-push-3, .col-md-push-4, .col-md-push-5, .col-md-push-6, .col-md-push-7, .col-md-push-8, .col-md-push-9, .col-md-push-10, .col-md-push-11, .col-md-pull-1, .col-md-pull-2, .col-md-pull-3, .col-md-pull-4, .col-md-pull-5, .col-md-pull-6, .col-md-pull-7, .col-md-pull-8, .col-md-pull-9, .col-md-pull-10, .col-md-pull-11 { left: auto; right: auto; } .col-md-offset-1 { margin-left: 0; } .col-md-offset-2 { margin-left: 0; } .col-md-offset-3 { margin-left: 0; } .col-md-offset-4 { margin-left: 0; } .col-md-offset-5 { margin-left: 0; } .col-md-offset-6 { margin-left: 0; } .col-md-offset-7 { margin-left: 0; } .col-md-offset-8 { margin-left: 0; } .col-md-offset-9 { margin-left: 0; } .col-md-offset-10 { margin-left: 0; } .col-md-offset-11 { margin-left: 0; } // Push and pull columns for source order changes .col-md-push-0 { right: auto; } .col-md-push-1 { right: percentage((1 / $grid-columns)); } .col-md-push-2 { right: percentage((2 / $grid-columns)); } .col-md-push-3 { right: percentage((3 / $grid-columns)); } .col-md-push-4 { right: percentage((4 / $grid-columns)); } .col-md-push-5 { right: percentage((5 / $grid-columns)); } .col-md-push-6 { right: percentage((6 / $grid-columns)); } .col-md-push-7 { right: percentage((7 / $grid-columns)); } .col-md-push-8 { right: percentage((8 / $grid-columns)); } .col-md-push-9 { right: percentage((9 / $grid-columns)); } .col-md-push-10 { right: percentage((10/ $grid-columns)); } .col-md-push-11 { right: percentage((11/ $grid-columns)); } .col-md-pull-0 { left: auto; } .col-md-pull-1 { left: percentage((1 / $grid-columns)); } .col-md-pull-2 { left: percentage((2 / $grid-columns)); } .col-md-pull-3 { left: percentage((3 / $grid-columns)); } .col-md-pull-4 { left: percentage((4 / $grid-columns)); } .col-md-pull-5 { left: percentage((5 / $grid-columns)); } .col-md-pull-6 { left: percentage((6 / $grid-columns)); } .col-md-pull-7 { left: percentage((7 / $grid-columns)); } .col-md-pull-8 { left: percentage((8 / $grid-columns)); } .col-md-pull-9 { left: percentage((9 / $grid-columns)); } .col-md-pull-10 { left: percentage((10/ $grid-columns)); } .col-md-pull-11 { left: percentage((11/ $grid-columns)); } // Offsets .col-md-offset-0 { margin-right: 0; } .col-md-offset-1 { margin-right: percentage((1 / $grid-columns)); } .col-md-offset-2 { margin-right: percentage((2 / $grid-columns)); } .col-md-offset-3 { margin-right: percentage((3 / $grid-columns)); } .col-md-offset-4 { margin-right: percentage((4 / $grid-columns)); } .col-md-offset-5 { margin-right: percentage((5 / $grid-columns)); } .col-md-offset-6 { margin-right: percentage((6 / $grid-columns)); } .col-md-offset-7 { margin-right: percentage((7 / $grid-columns)); } .col-md-offset-8 { margin-right: percentage((8 / $grid-columns)); } .col-md-offset-9 { margin-right: percentage((9 / $grid-columns)); } .col-md-offset-10 { margin-right: percentage((10/ $grid-columns)); } .col-md-offset-11 { margin-right: percentage((11/ $grid-columns)); } } // Large grid // // Columns, offsets, pushes, and pulls for the large desktop device range. // // Note that `.col-lg-12` doesn't get floated on purpose—there's no need since // it's full-width. @media (min-width: $screen-lg) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11 { float: right; } .col-lg-push-1, .col-lg-push-2, .col-lg-push-3, .col-lg-push-4, .col-lg-push-5, .col-lg-push-6, .col-lg-push-7, .col-lg-push-8, .col-lg-push-9, .col-lg-push-10, .col-lg-push-11, .col-lg-pull-1, .col-lg-pull-2, .col-lg-pull-3, .col-lg-pull-4, .col-lg-pull-5, .col-lg-pull-6, .col-lg-pull-7, .col-lg-pull-8, .col-lg-pull-9, .col-lg-pull-10, .col-lg-pull-11 { left: auto; right: auto; } .col-lg-offset-1 { margin-left: 0; } .col-lg-offset-2 { margin-left: 0; } .col-lg-offset-3 { margin-left: 0; } .col-lg-offset-4 { margin-left: 0; } .col-lg-offset-5 { margin-left: 0; } .col-lg-offset-6 { margin-left: 0; } .col-lg-offset-7 { margin-left: 0; } .col-lg-offset-8 { margin-left: 0; } .col-lg-offset-9 { margin-left: 0; } .col-lg-offset-10 { margin-left: 0; } .col-lg-offset-11 { margin-left: 0; } // Push and pull columns for source order changes .col-lg-push-0 { right: auto; } .col-lg-push-1 { right: percentage((1 / $grid-columns)); } .col-lg-push-2 { right: percentage((2 / $grid-columns)); } .col-lg-push-3 { right: percentage((3 / $grid-columns)); } .col-lg-push-4 { right: percentage((4 / $grid-columns)); } .col-lg-push-5 { right: percentage((5 / $grid-columns)); } .col-lg-push-6 { right: percentage((6 / $grid-columns)); } .col-lg-push-7 { right: percentage((7 / $grid-columns)); } .col-lg-push-8 { right: percentage((8 / $grid-columns)); } .col-lg-push-9 { right: percentage((9 / $grid-columns)); } .col-lg-push-10 { right: percentage((10/ $grid-columns)); } .col-lg-push-11 { right: percentage((11/ $grid-columns)); } .col-lg-pull-0 { left: auto; } .col-lg-pull-1 { left: percentage((1 / $grid-columns)); } .col-lg-pull-2 { left: percentage((2 / $grid-columns)); } .col-lg-pull-3 { left: percentage((3 / $grid-columns)); } .col-lg-pull-4 { left: percentage((4 / $grid-columns)); } .col-lg-pull-5 { left: percentage((5 / $grid-columns)); } .col-lg-pull-6 { left: percentage((6 / $grid-columns)); } .col-lg-pull-7 { left: percentage((7 / $grid-columns)); } .col-lg-pull-8 { left: percentage((8 / $grid-columns)); } .col-lg-pull-9 { left: percentage((9 / $grid-columns)); } .col-lg-pull-10 { left: percentage((10/ $grid-columns)); } .col-lg-pull-11 { left: percentage((11/ $grid-columns)); } // Offsets .col-lg-offset-0 { margin-right: 0; } .col-lg-offset-1 { margin-right: percentage((1 / $grid-columns)); } .col-lg-offset-2 { margin-right: percentage((2 / $grid-columns)); } .col-lg-offset-3 { margin-right: percentage((3 / $grid-columns)); } .col-lg-offset-4 { margin-right: percentage((4 / $grid-columns)); } .col-lg-offset-5 { margin-right: percentage((5 / $grid-columns)); } .col-lg-offset-6 { margin-right: percentage((6 / $grid-columns)); } .col-lg-offset-7 { margin-right: percentage((7 / $grid-columns)); } .col-lg-offset-8 { margin-right: percentage((8 / $grid-columns)); } .col-lg-offset-9 { margin-right: percentage((9 / $grid-columns)); } .col-lg-offset-10 { margin-right: percentage((10/ $grid-columns)); } .col-lg-offset-11 { margin-right: percentage((11/ $grid-columns)); } }