2012-06-29 12:46:45 +08:00
|
|
|
//
|
|
|
|
// Responsive: Utility classes
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-03-25 16:12:51 +08:00
|
|
|
|
2012-12-11 02:29:16 +08:00
|
|
|
// IE10 Metro responsive
|
|
|
|
// Required for Windows 8 Metro split-screen snapping with IE10
|
2013-04-22 05:50:44 +08:00
|
|
|
//
|
2012-12-11 02:29:16 +08:00
|
|
|
// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/
|
|
|
|
@-ms-viewport{
|
|
|
|
width: device-width;
|
|
|
|
}
|
|
|
|
|
2013-04-22 05:50:44 +08:00
|
|
|
// IE10 on Windows Phone 8
|
2013-04-22 09:25:49 +08:00
|
|
|
// 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,
|
2013-04-22 05:50:44 +08:00
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-25 16:12:51 +08:00
|
|
|
// Hide from screenreaders and browsers
|
|
|
|
// Credit: HTML5 Boilerplate
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Visibility utilities
|
|
|
|
|
2013-04-21 03:33:09 +08:00
|
|
|
// For Phones
|
2013-05-17 10:13:58 +08:00
|
|
|
.visible-sm { display: block !important; }
|
2013-05-13 12:00:37 +08:00
|
|
|
.visible-md { display: none !important; }
|
2013-05-11 21:58:59 +08:00
|
|
|
.visible-lg { display: none !important; }
|
2013-04-21 03:33:09 +08:00
|
|
|
|
2013-05-13 12:00:37 +08:00
|
|
|
.hidden-sm { display: none !important; }
|
2013-05-17 10:13:58 +08:00
|
|
|
.hidden-md { display: block !important; }
|
|
|
|
.hidden-lg { display: block !important; }
|
2013-04-21 03:33:09 +08:00
|
|
|
|
2012-03-25 16:12:51 +08:00
|
|
|
|
2012-06-26 07:25:50 +08:00
|
|
|
// Tablets & small desktops only
|
2013-04-28 02:55:45 +08:00
|
|
|
@media (min-width: @screen-tablet) and (max-width: @screen-tablet-max) {
|
2013-05-13 12:00:37 +08:00
|
|
|
.visible-sm { display: none !important; }
|
2013-05-17 10:13:58 +08:00
|
|
|
.visible-md { display: block !important; }
|
2013-05-11 21:58:59 +08:00
|
|
|
.visible-lg { display: none !important; }
|
2013-04-21 03:33:09 +08:00
|
|
|
|
2013-05-17 10:13:58 +08:00
|
|
|
.hidden-sm { display: block !important; }
|
2013-05-13 12:00:37 +08:00
|
|
|
.hidden-md { display: none !important; }
|
2013-05-17 10:13:58 +08:00
|
|
|
.hidden-lg { display: block !important; }
|
2012-03-25 16:12:51 +08:00
|
|
|
}
|
|
|
|
|
2013-04-21 03:33:09 +08:00
|
|
|
// For desktops
|
2013-04-28 00:47:47 +08:00
|
|
|
@media (min-width: @screen-desktop) {
|
2013-05-13 12:00:37 +08:00
|
|
|
.visible-sm { display: none !important; }
|
|
|
|
.visible-md { display: none !important; }
|
2013-05-17 10:13:58 +08:00
|
|
|
.visible-lg { display: block !important; }
|
2013-04-21 03:33:09 +08:00
|
|
|
|
2013-05-17 10:13:58 +08:00
|
|
|
.hidden-sm { display: block !important; }
|
|
|
|
.hidden-md { display: block !important; }
|
2013-05-11 21:58:59 +08:00
|
|
|
.hidden-lg { display: none !important; }
|
2012-03-25 16:12:51 +08:00
|
|
|
}
|
2013-02-06 14:17:28 +08:00
|
|
|
|
|
|
|
// Print utilities
|
2013-05-13 12:00:37 +08:00
|
|
|
.visible-print { display: none !important; }
|
|
|
|
.hidden-print { }
|
2013-02-06 14:17:28 +08:00
|
|
|
|
|
|
|
@media print {
|
2013-05-17 10:13:58 +08:00
|
|
|
.visible-print { display: block !important; }
|
2013-02-06 14:17:28 +08:00
|
|
|
.hidden-print { display: none !important; }
|
2013-04-23 15:30:22 +08:00
|
|
|
}
|