2014-07-20 03:55:29 +04:00
|
|
|
//
|
|
|
|
// Globals
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
|
|
|
*, *:before, *:after {
|
|
|
|
@include box-sizing(border-box);
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2014-07-29 01:21:02 +04:00
|
|
|
font: 62.5%/1.65 "Open Sans", sans-serif;
|
2014-07-20 03:55:29 +04:00
|
|
|
-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;
|
|
|
|
}
|
|
|
|
}
|