Remove (potentially useful) unused CSS.

This commit is contained in:
Fabien Basmaison 2021-03-06 21:18:39 +01:00
parent 99e5e3e414
commit a52fee4ccf

View file

@ -161,35 +161,3 @@ html {
content: "\e905";
right: 0;
}
/**
* Accessibility (a11y)
============================================================================ */
/**
* Skip links
*
* @see https://webaim.org/styles/main.css
---------------------------------------------------------------------------- */
.skip-link {
position: absolute;
opacity: 0;
z-index: 100;
padding: 6px;
border: 1px solid white;
color: white;
background: #BF1722;
transition: opacity 1s ease-out;
}
.skip-link:focus {
opacity: 1;
outline-color: transparent;
transition: opacity .1s ease-in;
}
@media (prefers-reduced-motion: reduce) {
.skip-link {
transition-duration: 0.001ms !important;
}
}