0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-06 04:08:22 +01:00
Bootstrap/less/mixins/media-queries.less

27 lines
539 B
Plaintext
Raw Normal View History

2014-03-11 04:32:55 -07:00
// Media query mixins
2014-09-17 21:57:51 -07:00
.media-xs(@rules) {
2014-03-11 04:32:55 -07:00
@media (max-width: @screen-xs-max) { @rules(); }
}
2014-09-17 21:57:51 -07:00
.media-sm(@rules) {
2014-03-11 04:32:55 -07:00
@media (min-width: @screen-sm-min) { @rules(); }
}
2014-09-17 21:57:51 -07:00
.media-sm-max(@rules) {
2014-03-11 04:32:55 -07:00
@media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) { @rules(); }
}
2014-09-17 21:57:51 -07:00
.media-md(@rules) {
2014-03-11 04:32:55 -07:00
@media (min-width: @screen-md-min) { @rules(); }
}
2014-09-17 21:57:51 -07:00
.media-md-max(@rules) {
2014-03-11 04:32:55 -07:00
@media (min-width: @screen-md-min) and (max-width: @screen-md-max) { @rules(); }
}
2014-09-17 21:57:51 -07:00
.media-lg(@rules) {
2014-03-11 04:32:55 -07:00
@media (min-width: @screen-lg-min) { @rules(); }
}