0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-12 00:08:59 +01:00
Bootstrap/less/mixins/media-queries.less
2014-09-17 21:52:07 -07:00

27 lines
545 B
Plaintext

// Media query mixins
.screen-xs(@rules) {
@media (max-width: @screen-xs-max) { @rules(); }
}
.screen-sm(@rules) {
@media (min-width: @screen-sm-min) { @rules(); }
}
.screen-sm-max(@rules) {
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { @rules(); }
}
.screen-md(@rules) {
@media (min-width: @screen-md-min) { @rules(); }
}
.screen-md-max(@rules) {
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) { @rules(); }
}
.screen-lg(@rules) {
@media (min-width: @screen-lg-min) { @rules(); }
}