File size: 678 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
.react-page-controls-mode-toggle-button-inner {
float: right;
margin: 8px;
}
.react-page-controls-mode-toggle-button-description {
font-family: Roboto, sans-serif;
font-size: 16px;
margin-top: 18px;
float: right;
background: transparent;
color: transparent;
border: 1px transparent solid;
padding: 2px 8px;
text-align: right;
display: none;
transition: all 200ms ease;
white-space: nowrap;
overflow: hidden;
}
.react-page-controls-mode-toggle-button:hover
.react-page-controls-mode-toggle-button-description {
max-width: 999px;
background: var(--darkBlack);
color: var(--white);
display: block;
border: 1px solid var(--faintBlack);
}
|