mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-17 12:52:22 +01:00
54 lines
972 B
Plaintext
54 lines
972 B
Plaintext
@import (reference) "mt-var.less";
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
.xs-hide {
|
|
display: none !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
|
|
.sm-hide {
|
|
display: none !important;;
|
|
}
|
|
}
|
|
|
|
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
|
|
.md-hide {
|
|
display: none !important;;
|
|
}
|
|
}
|
|
|
|
@media (min-width: @screen-lg) {
|
|
.lg-hide {
|
|
display: none !important;;
|
|
}
|
|
}
|
|
|
|
.xs-show, .sm-show, .md-show, .lg-show {
|
|
display: none;
|
|
}
|
|
|
|
@media (max-width: @screen-xs-max) {
|
|
.xs-show {
|
|
display: block !important;
|
|
}
|
|
}
|
|
|
|
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
|
|
.sm-show {
|
|
display: block !important;;
|
|
}
|
|
}
|
|
|
|
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
|
|
.md-show {
|
|
display: block !important;;
|
|
}
|
|
}
|
|
|
|
@media (min-width: @screen-lg) {
|
|
.lg-show {
|
|
display: block !important;;
|
|
}
|
|
}
|