Last active
October 7, 2019 01:17
-
-
Save paxperscientiam/603f23d08e34f0ef7e47ba6055af10c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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