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