0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/client/assets/sass/patterns/global.scss
John O'Nolan 76c8c86ada Clean up
2014-07-28 23:21:02 +02:00

58 lines
No EOL
879 B
SCSS

//
// Globals
// --------------------------------------------------
*, *:before, *:after {
@include box-sizing(border-box);
}
html {
font: 62.5%/1.65 "Open Sans", sans-serif;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
width: 100%;
}
a, a:active {
text-decoration: none;
}
//
// Utilities
// --------------------------------------------------
.show {
display: block !important;
}
.hidden {
display: none !important;
visibility: hidden !important;
}
.invisible {
visibility: hidden;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
&:active,
&:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
}