Christophe Dervieux | e1893ae | 2021-10-07 17:09:02 +0200 | [diff] [blame] | 1 | #customcontrols { |
| 2 | z-index: 40; |
| 3 | position: fixed; |
| 4 | left: 70px; |
| 5 | bottom: 30px; |
| 6 | text-align: center; |
| 7 | font-size: 24px; |
| 8 | } |
| 9 | |
| 10 | #customcontrols button { |
| 11 | background: none; |
| 12 | color: var(--r-link-color); |
| 13 | border: none; |
| 14 | padding: 0; |
| 15 | font: inherit; |
| 16 | cursor: pointer; |
| 17 | outline: inherit; |
| 18 | z-index: 40; |
| 19 | } |
| 20 | |
| 21 | #customcontrols button:hover { |
| 22 | color: var(--r-link-color-hover); |
| 23 | } |
| 24 | |
| 25 | #customcontrols > ul { |
| 26 | position: fixed; |
| 27 | left: 54px; |
| 28 | bottom: 64px; |
| 29 | list-style-type: none; |
| 30 | overflow: hidden; |
| 31 | margin: 0; |
| 32 | padding: 0; |
| 33 | border: 1px solid var(--r-link-color); |
| 34 | border-radius: 5px; |
| 35 | padding: 10px; |
| 36 | background-color: var(--r-background-color) |
| 37 | } |
| 38 | |
| 39 | #customcontrols ul > li { |
| 40 | margin: 0px 5px; |
| 41 | padding: 0px 5px; |
| 42 | float: left; |
| 43 | } |
| 44 | |
| 45 | #customcontrols.collapsed #collapse-customcontrols, #customcontrols.collapsed > ul { |
| 46 | display: none; |
| 47 | } |
| 48 | |
| 49 | #customcontrols:not(.collapsed) #expand-customcontrols { |
| 50 | display: none; |
| 51 | } |
| 52 | |
| 53 | @media only screen and (min-width: 500px) { |
| 54 | #customcontrols > button { |
| 55 | display: none; |
| 56 | } |
| 57 | #customcontrols > ul { |
| 58 | bottom: 20px; |
| 59 | border: none; |
| 60 | background: none; |
| 61 | } |
| 62 | } |