code { padding: .2rem; } .highlight { position: relative; } button.highlight-copy-button { position: absolute; display: flex; top: .3em; right: .3em; width: 1.7em; height: 1.7em; opacity: 0; transition: opacity 0.3s, border .3s, background-color .3s; user-select: none; padding: 0; outline: none; border-radius: 0.4em; /* The colors that GitHub uses */ border: #1b1f2426 1px solid; background-color: #f6f8fa; color: #57606a; } button.highlight-copy-button.success { border-color: #22863a; color: #22863a; } button.highlight-copy-button svg { stroke: currentColor; width: 1.5em; height: 1.5em; padding: 0.1em; } .highlight:hover button.highlight-copy-button { cursor: pointer; opacity: 1; } .highlight button.highlight-copy-button:hover { cursor: pointer; background-color: rgb(235, 235, 235); } .highlight button.highlight-copy-button:active { background-color: rgb(187, 187, 187); } /* Hide the copy button when printing the page */ @media print { button.highlight-copy-button { display: none; } } /** * A minimal CSS-only tooltip copied from: * https://codepen.io/mildrenben/pen/rVBrpK * * To use, write HTML like the following: * *

Short

*/ .o-tooltip--left { position: relative; } .o-tooltip--left:after { opacity: 0; visibility: hidden; position: absolute; content: attr(data-tooltip); padding: .2em; font-size: .8em; left: -.2em; background: grey; color: white; white-space: nowrap; z-index: 2; border-radius: 2px; transform: translateX(-102%) translateY(0); transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); } .o-tooltip--left:hover:after { display: block; opacity: 1; visibility: visible; transform: translateX(-100%) translateY(0); transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); transition-delay: .5s; }