mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 03:25:23 -04:00
30 lines
552 B
CSS
30 lines
552 B
CSS
/*!
|
|
* @reach/skip-nav | MIT License | https://github.com/reach/reach-ui/blob/v0.18.0/packages/skip-nav/styles.css
|
|
*/
|
|
|
|
.hidden {
|
|
border: 0;
|
|
clip: rect(0 0 0 0);
|
|
height: 1px;
|
|
width: 1px;
|
|
margin: -1px;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
}
|
|
|
|
.hidden:focus {
|
|
padding: 1rem;
|
|
position: fixed;
|
|
top: 10px;
|
|
left: 10px;
|
|
z-index: 99999;
|
|
width: auto;
|
|
height: auto;
|
|
clip: auto;
|
|
background: var(--color-gray-100);
|
|
color: var(--color-link);
|
|
border: 2px solid var(--color-gray-300);
|
|
text-decoration: underline;
|
|
}
|