KNACSS/sass/09-booleans.scss
2014-05-07 11:33:47 +02:00

41 lines
690 B
SCSS

@import "00-config";
/* ----------------------------- */
/* ==output booleans */
/* ----------------------------- */
/**
* Skip links
* Only output when `$enable-skip-links` is true
*/
@if $enable-skip-links == true {
.skip-links {
position: absolute;
a {
position: absolute;
left: -7000px;
padding: 0.5em;
background: black;
color: white;
text-decoration: none;
&:focus {
position: static;
}
}
}
}
/**
* Hyphens
* Only output when `$enable-hyphens` is true
*/
@if $enable-hyphens == true {
@media (max-width: $small-screen) {
div, textarea, table, td, th, code, pre, samp {
word-wrap: break-word;
hyphens: auto;
}
}
}