Last active
May 31, 2017 04:17
-
-
Save AdamSoucie/cc56bc754f287e0b8bd8efaa183beb4c to your computer and use it in GitHub Desktop.
CSS styles for skip links
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.skip-link | |
{ | |
position: absolute; | |
top: 0; | |
z-index: 9999; | |
right: 100%; | |
padding: 5px; | |
padding: 0.5rem; | |
font-size: 20px; | |
font-size: 2rem; | |
color: #000; | |
background: #FFF; | |
} | |
.admin-bar .skip-link | |
{ | |
top: 32px; | |
} | |
.skip-link:focus | |
{ | |
right: auto; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment