mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-07 00:46:15 +01:00
24 lines
354 B
Plaintext
24 lines
354 B
Plaintext
/*
|
|
* Fancy skip link
|
|
*
|
|
* Make it look a bit less "bare bones"
|
|
* Also includes focus suppression for the Chrome tabindex="-1" workaround
|
|
*/
|
|
|
|
#skippy {
|
|
display: block;
|
|
padding: 1em;
|
|
color: #fff;
|
|
background-color: #6f5499;
|
|
outline: 0;
|
|
}
|
|
|
|
#skippy .skiplink-text {
|
|
padding: .5em;
|
|
outline: 1px dotted;
|
|
}
|
|
|
|
#content:focus {
|
|
outline: none;
|
|
}
|