aboutsummaryrefslogtreecommitdiff
path: root/examples/docs/src/components/Header/SkipToContent.astro
blob: 6df3a72ed04d6f1d7811860e5ffb0b85bc594701 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<style>
.skiplink,
.skiplink:focus,
.skiplink:focus-visible {
  position: absolute;
  padding: 0.25em;
  font-size: larger;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  display: block;
  text-align: center;
  background-color: var(--theme-text-accent);
  color: var(--theme-bg);
  border-radius: 0.25em;
  outline: var(--theme-bg) solid 1px;
  outline-offset: 0;
}
</style>
<a href="#article" class="sr-only skiplink"><span>Skip to Content</span></a>