1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- .hidden {
- display: none;
- }
- .visually-hidden {
- position: absolute !important;
- clip: rect(1px, 1px, 1px, 1px);
- overflow: hidden;
- height: 1px;
- width: 1px;
- word-wrap: normal;
- }
- .visually-hidden.focusable:active,
- .visually-hidden.focusable:focus {
- position: static;
- clip: auto;
- overflow: visible;
- height: auto;
- width: auto;
- }
- .invisible {
- visibility: hidden;
- }
|