Stackedit/js/libs/bootstrap/less/responsive-utilities.less

149 lines
3.6 KiB
Plaintext
Raw Normal View History

2013-08-04 00:54:25 +00:00
//
// Responsive: Utility classes
// --------------------------------------------------
// IE10 Metro responsive
// Required for Windows 8 Metro split-screen snapping with IE10
//
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
@-ms-viewport{
width: device-width;
}
// IE10 on Windows Phone 8
// IE10 on WP8 doesn't report CSS pixels, but actual device pixels. In
// other words, say on a Lumia, you'll get 768px as the device width,
// meaning users will see the tablet styles and not phone styles.
//
// Alternatively you can override this with JS (see source below), but
// we won't be doing that here given our limited scope.
//
// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/
@media screen and (max-width: 400px) {
@-ms-viewport{
width: 320px;
}
}
// Hide from screenreaders and browsers
// Credit: HTML5 Boilerplate
.hidden {
display: none !important;
visibility: hidden !important;
}
// Visibility utilities
2013-08-14 23:44:51 +00:00
.visible-xs {
2013-08-04 00:54:25 +00:00
.responsive-visibility();
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-lg) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
}
.visible-sm {
.responsive-invisibility();
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
2013-08-14 23:44:51 +00:00
.responsive-visibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-lg) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
2013-08-04 00:54:25 +00:00
}
.visible-md {
.responsive-invisibility();
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
2013-08-14 23:44:51 +00:00
.responsive-visibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-lg) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
2013-08-04 00:54:25 +00:00
}
.visible-lg {
.responsive-invisibility();
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
2013-08-14 23:44:51 +00:00
.responsive-invisibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-lg) {
2013-08-14 23:44:51 +00:00
.responsive-visibility();
}
2013-08-04 00:54:25 +00:00
}
2013-08-14 23:44:51 +00:00
.hidden-xs {
2013-08-04 00:54:25 +00:00
.responsive-invisibility();
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
2013-08-04 00:54:25 +00:00
.responsive-visibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
2013-08-14 23:44:51 +00:00
.responsive-visibility();
2013-08-04 00:54:25 +00:00
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-lg) {
2013-08-04 00:54:25 +00:00
.responsive-visibility();
}
2013-08-14 23:44:51 +00:00
}
.hidden-sm {
.responsive-visibility();
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
2013-08-04 00:54:25 +00:00
.responsive-invisibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
2013-08-14 23:44:51 +00:00
.responsive-visibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-lg) {
2013-08-04 00:54:25 +00:00
.responsive-visibility();
}
}
2013-08-14 23:44:51 +00:00
.hidden-md {
.responsive-visibility();
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
2013-08-14 23:44:51 +00:00
.responsive-visibility();
2013-08-04 00:54:25 +00:00
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
2013-08-04 00:54:25 +00:00
.responsive-invisibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-lg) {
2013-08-04 00:54:25 +00:00
.responsive-visibility();
}
2013-08-14 23:44:51 +00:00
}
.hidden-lg {
.responsive-visibility();
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-sm) and (max-width: @screen-sm-max) {
2013-08-04 00:54:25 +00:00
.responsive-visibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-md) and (max-width: @screen-md-max) {
2013-08-04 00:54:25 +00:00
.responsive-visibility();
}
2013-08-18 00:02:23 +00:00
@media (min-width: @screen-lg) {
2013-08-04 00:54:25 +00:00
.responsive-invisibility();
}
}
// Print utilities
.visible-print {
.responsive-invisibility();
}
@media print {
.visible-print {
.responsive-visibility();
}
.hidden-print {
.responsive-invisibility();
}
}