Pull merge.
[yaffs-website] / web / core / profiles / demo_umami / themes / umami / css / components / navigation / skip-link / skip-link.css
1 /**
2  * @file
3  * Styles for the skip link.
4  */
5
6 .skip-link {
7   left: 50%;
8   -webkit-transform: translateX(-50%);
9   -ms-transform: translateX(-50%);
10   transform: translateX(-50%);
11   z-index: 50;
12   background: #444;
13   background: rgba(0, 0, 0, 0.6);
14   padding: 1px 10px 2px;
15   border-radius: 0 0 10px 10px;
16   border: 1px solid #444;
17   border-top-width: 0;
18   outline: 0;
19 }
20 .skip-link.visually-hidden.focusable:focus {
21   position: absolute !important;
22 }