hello-theme/assets/scss/theme/_utilities.scss
2023-05-01 11:11:32 +03:00

29 lines
633 B
SCSS

/**
* Utility styles
*/
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
height: 1px;
overflow: hidden;
position: absolute !important;
width: 1px;
word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
&:focus {
background-color: $gray-lighter;
clip: auto !important;
clip-path: none;
color: $gray-dark;
display: block;
font-size: $font-size-base;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; /* Above WP toolbar. */
}
}