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