Fix skip-to-content accessibility styling - only show when focused
ci/woodpecker/push/woodpecker Pipeline failed
Details
ci/woodpecker/push/woodpecker Pipeline failed
Details
This commit is contained in:
parent
83e90a13be
commit
1199d13a5d
|
@ -12,7 +12,22 @@ a { color: #EB2078; }
|
||||||
.contact-form .mdl-textfield--floating-label.has-placeholder .mdl-textfield__label { color: #EB2078;}
|
.contact-form .mdl-textfield--floating-label.has-placeholder .mdl-textfield__label { color: #EB2078;}
|
||||||
.contact-form .mdl-textfield__label:after { background-color: #EB2078; }
|
.contact-form .mdl-textfield__label:after { background-color: #EB2078; }
|
||||||
|
|
||||||
.skip-to-content { background: #EB2078; height: 50px; line-height: 50px; font-size: 20px; }
|
/* Fix skip-to-content accessibility styling */
|
||||||
|
.skip-to-content {
|
||||||
|
background: #EB2078;
|
||||||
|
height: 50px;
|
||||||
|
line-height: 50px;
|
||||||
|
font-size: 20px;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: -999px;
|
||||||
|
width: 100%;
|
||||||
|
z-index: 9999;
|
||||||
|
transition: left 0.3s;
|
||||||
|
}
|
||||||
|
.skip-to-content:focus {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
/* Video.js custom styling */
|
/* Video.js custom styling */
|
||||||
.video-container {
|
.video-container {
|
||||||
|
|
Loading…
Reference in New Issue