1 2/* ### ### ### */ 3 4#action__top { 5 /* Position */ 6 position: absolute; 7} 8 9#action__top > .action.top { 10 /* Display */ 11 display: flex; 12 flex-flow: row-reverse nowrap; 13 align-items: center; 14 gap: 1rem; 15 /* Position */ 16 position: fixed; 17 right: 3rem; 18 bottom: 3rem; 19 z-index: 2; 20 /* Settings */ 21 opacity: .5; 22 /* Color */ 23 background: var(--lite-color); 24 /* Box */ 25 padding: .5rem; 26} 27 28#action__top > .action.top span { 29 /* Display */ 30 display: none; 31 /* Box */ 32 padding: 0 0 0 1rem; 33} 34 35#action__top > .action.top:hover { 36 /* Settings */ 37 opacity: 1; 38} 39 40#action__top > .action.top:hover > span, 41#action__top > .action.top:focus > span { 42 /* Display */ 43 display: block; 44} 45