hello-theme/dev/scss/theme/_utilities.scss

31 lines
699 B
SCSS

/**
* Utility styles
*/
@use "../reset/variables" as variables;
.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: variables.$gray-lighter;
clip: auto !important;
clip-path: none;
color: variables.$gray-dark;
display: block;
font-size: variables.$font-size-base;
height: auto;
left: 5px;
line-height: normal;
padding: 12px 24px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; /* Above WP toolbar. */
}
}