Files
unifi-voucher-site/public/scss/global/_utils.scss
Glenn de Haan 91bad12f52 Initial commit
2018-02-26 22:24:07 +01:00

23 lines
546 B
SCSS

// Visibility
.hidden {
visibility: hidden;
}
.visible {
visibility: visible;
}
/**
* Accessibility: Positioning content offscreen
* @see https://www.paciellogroup.com/blog/2012/05/html5-accessibility-chops-hidden-and-aria-hidden/
* @see http://alistapart.com/article/now-you-see-me
* @see http://accessibilitytips.com/2008/03/04/positioning-content-offscreen/
*/
.off-screen,
.visually-hidden {
position: absolute;
// never use the top property!
left: -999em;
margin: 0; // fix uncontrolled whitespace still being displayed
}