Skip to content

Instantly share code, notes, and snippets.

@paxperscientiam
Last active October 7, 2019 01:17
Show Gist options
  • Save paxperscientiam/603f23d08e34f0ef7e47ba6055af10c6 to your computer and use it in GitHub Desktop.
Save paxperscientiam/603f23d08e34f0ef7e47ba6055af10c6 to your computer and use it in GitHub Desktop.
@mixin moose-tooltip($message) {
position: relative;
display: inline-block;
text-decoration: underline dotted blue;
&::before {
opacity: 0;
}
&:hover::before {
opacity: 1;
font-size: 0.8rem;
content: "ⓘ #{$message}";
position: absolute;
padding: 0.5em;
bottom: 1.5rem;
left: 20px;
max-width: 20em;
white-space: nowrap;
border: 1px solid black;
border-radius: .5em;
background-color: white;
box-shadow: 0 0 .2em grey;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment