Experimental "future-proof" version of KNACSS
This commit is contained in:
parent
3fa53f9083
commit
f42ad600be
18 changed files with 3777 additions and 0 deletions
38
future-proof/css-includes/09-booleans.css
Normal file
38
future-proof/css-includes/09-booleans.css
Normal file
|
@ -0,0 +1,38 @@
|
|||
|
||||
/* styling skip links */
|
||||
|
||||
.skip-links {
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.skip-links a {
|
||||
position: absolute;
|
||||
overflow: hidden;
|
||||
clip: rect(1px, 1px, 1px, 1px);
|
||||
padding: 0.5em;
|
||||
background: black;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.skip-links a:focus {
|
||||
position: static;
|
||||
overflow: visible;
|
||||
clip: auto;
|
||||
}
|
||||
|
||||
@media (max-width: 480px) {
|
||||
/* hyphenations on small screens */
|
||||
/* you shall not pass */
|
||||
div,
|
||||
textarea,
|
||||
table,
|
||||
td,
|
||||
th,
|
||||
code,
|
||||
pre,
|
||||
samp {
|
||||
word-wrap: break-word;
|
||||
hyphens: auto;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue