clone of olivero for island lives
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
950 B

10 months ago
/*
* 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.
*/
.skip-link {
display: block;
width: 100%;
max-width: var(--max-bg-color);
10 months ago
padding-block: var(--sp0-5);
padding-inline-start: var(--sp);
padding-inline-end: var(--sp);
-webkit-text-decoration: none;
10 months ago
text-decoration: none;
color: var(--color--white);
outline: 0;
10 months ago
background-color: var(--color--gray-5);
10 months ago
}
.skip-link:hover {
10 months ago
-webkit-text-decoration: underline;
text-decoration: underline;
color: var(--color--white);
}
10 months ago
.skip-link::after {
10 months ago
content: "\0020 ➔";
}
.skip-link.focusable:focus {
position: absolute !important;
}
10 months ago
.skip-link.focusable:focus {
10 months ago
/* Override position from module file. */
10 months ago
z-index: 503;
width: 100%;
height: 2.5rem;
outline: none;
}