26 lines
544 B
SCSS
26 lines
544 B
SCSS
|
/* ----------------------------- */
|
||
|
/* ==skip links */
|
||
|
/* ----------------------------- */
|
||
|
/* see https://www.alsacreations.com/article/lire/572-Les-liens-d-evitement.html */
|
||
|
|
||
|
/* styling skip links */
|
||
|
.#{$kna-namespace}skip-links {
|
||
|
position: absolute;
|
||
|
|
||
|
& a {
|
||
|
position: absolute;
|
||
|
overflow: hidden;
|
||
|
clip: rect(1px, 1px, 1px, 1px);
|
||
|
padding: 0.5em;
|
||
|
background: black;
|
||
|
color: white;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:focus {
|
||
|
position: static;
|
||
|
overflow: visible;
|
||
|
clip: auto;
|
||
|
}
|
||
|
}
|
||
|
}
|