Skip to content

Instantly share code, notes, and snippets.

@kiichi
Last active March 20, 2020 18:59
Show Gist options
  • Save kiichi/d0276b74be7846ea82519bcd1d2cbc37 to your computer and use it in GitHub Desktop.
Save kiichi/d0276b74be7846ea82519bcd1d2cbc37 to your computer and use it in GitHub Desktop.
Drop-in Stylesheets and Some Design Tools
/* usage <span data-title="tooltip goes here">Help</span> */
[data-title]:hover:after {
opacity: 1;
transition: all 0.1s ease 0.5s;
visibility: visible;
}
[data-title]:after {
content: attr(data-title);
background-color: rgb(203,223,245,0.6);
color:darkblue;
position: absolute;
padding: 1px 5px 2px 5px;
bottom: 1.6em;
left: 10%;
white-space: nowrap;
box-shadow: 1px 1px 3px rgb(203,223,245,0.8);
opacity: 0;
border: 1px solid darkgray;
z-index: 99999;
visibility: hidden;
border-radius: .2em;
}
[data-title] {
position: relative;
/* cursor: help; */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment