12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /*
- * DO NOT EDIT THIS FILE.
- * See the following change record for more information,
- * https://www.drupal.org/node/3084859
- * @preserve
- */
- /**
- * @file
- * Skip link
- *
- * Allows keyboard users to quickly skip to the main content of the page.
- */
- [dir="ltr"] .skip-link {
- padding-left: 1.125rem;
- }
- [dir="rtl"] .skip-link {
- padding-right: 1.125rem;
- }
- [dir="ltr"] .skip-link {
- padding-right: 1.125rem;
- }
- [dir="rtl"] .skip-link {
- padding-left: 1.125rem;
- }
- .skip-link {
- display: block;
- width: 100%;
- max-width: 98.125rem;
- padding-top: 0.5625rem;
- padding-bottom: 0.5625rem;
- text-decoration: none;
- color: #fff;
- outline: 0;
- background-color: #0d1214;
- }
- .skip-link:hover {
- text-decoration: underline;
- color: #fff;
- }
- .skip-link:after {
- content: "\0020 ➔";
- }
- .skip-link.focusable:focus {
- position: absolute !important;
- }
- .skip-link.focusable:focus { /* Override position from module file. */
- z-index: 503;
- width: 100%;
- height: 2.5rem;
- outline: none;
- }
|