-
-
Save ngsctt/edc7b3a51d9959f89e8d to your computer and use it in GitHub Desktop.
This file contains 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
// Bootstrap Mid-Small - col-ms-* - the missing grid set for Bootstrap3. | |
// | |
// This is a hack to fill the gap between 480 and 760 pixels - a missing range | |
// in the bootstrap responsive grid structure. Use these classes to style pages | |
// on cellphones when they transition from portrait to landscape. | |
// | |
// NOTE: Here I use SASS instead of LESS for styling. To convert to LESS | |
// replace '$screen' with '@screen' and '$grid' with '@grid'. | |
// | |
// See https://github.com/twbs/bootstrap/issues/10203 for more info. | |
// | |
// Columns, offsets, pushes, and pulls for the ms device range, from phones | |
// to tablets. | |
// | |
// Note that `.col-ms-12` doesn't get floated on purpose—there's no need since | |
// it's full-width. | |
@import 'bootstrap'; | |
// ----- common styles - from twbs/bootstrap/blob/master/less/grid.less ----- | |
.col-ms-1, | |
.col-ms-2, | |
.col-ms-3, | |
.col-ms-4, | |
.col-ms-5, | |
.col-ms-6, | |
.col-ms-7, | |
.col-ms-8, | |
.col-ms-9, | |
.col-ms-10, | |
.col-ms-11, | |
.col-ms-12 { | |
position: relative; | |
// Prevent columns from collapsing when empty | |
min-height: 1px; | |
// Inner gutter via padding | |
padding-left: ($grid-gutter-width / 2); | |
padding-right: ($grid-gutter-width / 2); | |
} | |
// ----- col-ms breakpoints and related classes ----- | |
@media (min-width: $screen-xs) { | |
.container { | |
@media (max-width: $screen-sm ) { | |
max-width: $screen-sm - 20px; | |
} | |
} | |
.col-ms-1, | |
.col-ms-2, | |
.col-ms-3, | |
.col-ms-4, | |
.col-ms-5, | |
.col-ms-6, | |
.col-ms-7, | |
.col-ms-8, | |
.col-ms-9, | |
.col-ms-10, | |
.col-ms-11 { | |
float: left; | |
} | |
.col-ms-1 { width: percentage((1 / $grid-columns)); } | |
.col-ms-2 { width: percentage((2 / $grid-columns)); } | |
.col-ms-3 { width: percentage((3 / $grid-columns)); } | |
.col-ms-4 { width: percentage((4 / $grid-columns)); } | |
.col-ms-5 { width: percentage((5 / $grid-columns)); } | |
.col-ms-6 { width: percentage((6 / $grid-columns)); } | |
.col-ms-7 { width: percentage((7 / $grid-columns)); } | |
.col-ms-8 { width: percentage((8 / $grid-columns)); } | |
.col-ms-9 { width: percentage((9 / $grid-columns)); } | |
.col-ms-10 { width: percentage((10/ $grid-columns)); } | |
.col-ms-11 { width: percentage((11/ $grid-columns)); } | |
.col-ms-12 { width: 100%; } | |
// Push and pull columns for source order changes | |
.col-ms-push-1 { left: percentage((1 / $grid-columns)); } | |
.col-ms-push-2 { left: percentage((2 / $grid-columns)); } | |
.col-ms-push-3 { left: percentage((3 / $grid-columns)); } | |
.col-ms-push-4 { left: percentage((4 / $grid-columns)); } | |
.col-ms-push-5 { left: percentage((5 / $grid-columns)); } | |
.col-ms-push-6 { left: percentage((6 / $grid-columns)); } | |
.col-ms-push-7 { left: percentage((7 / $grid-columns)); } | |
.col-ms-push-8 { left: percentage((8 / $grid-columns)); } | |
.col-ms-push-9 { left: percentage((9 / $grid-columns)); } | |
.col-ms-push-10 { left: percentage((10/ $grid-columns)); } | |
.col-ms-push-11 { left: percentage((11/ $grid-columns)); } | |
.col-ms-pull-1 { right: percentage((1 / $grid-columns)); } | |
.col-ms-pull-2 { right: percentage((2 / $grid-columns)); } | |
.col-ms-pull-3 { right: percentage((3 / $grid-columns)); } | |
.col-ms-pull-4 { right: percentage((4 / $grid-columns)); } | |
.col-ms-pull-5 { right: percentage((5 / $grid-columns)); } | |
.col-ms-pull-6 { right: percentage((6 / $grid-columns)); } | |
.col-ms-pull-7 { right: percentage((7 / $grid-columns)); } | |
.col-ms-pull-8 { right: percentage((8 / $grid-columns)); } | |
.col-ms-pull-9 { right: percentage((9 / $grid-columns)); } | |
.col-ms-pull-10 { right: percentage((10/ $grid-columns)); } | |
.col-ms-pull-11 { right: percentage((11/ $grid-columns)); } | |
// Offsets | |
.col-ms-offset-1 { margin-left: percentage((1 / $grid-columns)); } | |
.col-ms-offset-2 { margin-left: percentage((2 / $grid-columns)); } | |
.col-ms-offset-3 { margin-left: percentage((3 / $grid-columns)); } | |
.col-ms-offset-4 { margin-left: percentage((4 / $grid-columns)); } | |
.col-ms-offset-5 { margin-left: percentage((5 / $grid-columns)); } | |
.col-ms-offset-6 { margin-left: percentage((6 / $grid-columns)); } | |
.col-ms-offset-7 { margin-left: percentage((7 / $grid-columns)); } | |
.col-ms-offset-8 { margin-left: percentage((8 / $grid-columns)); } | |
.col-ms-offset-9 { margin-left: percentage((9 / $grid-columns)); } | |
.col-ms-offset-10 { margin-left: percentage((10/ $grid-columns)); } | |
.col-ms-offset-11 { margin-left: percentage((11/ $grid-columns)); } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment