Guest User

Untitled

a guest
Nov 16th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. // note that you'll need to edit out variables for this to work. Also, this isn't guaranteed to work!
  2.  
  3. @mixin moose-tooltip($message) {
  4. position: relative;
  5. display: inline-block;
  6. text-decoration: underline dotted $oc-blue-3;
  7. &::before {
  8. opacity: 0;
  9. }
  10. &:hover::before {
  11. opacity: 1;
  12. font-size: 0.8rem;
  13. content: "ⓘ #{$message}";
  14. position: absolute;
  15. padding: 0.5em;
  16. bottom: 1.5rem;
  17. left: 20px;
  18. max-width: 20em;
  19. white-space: nowrap;
  20. border: 1px solid $black;
  21. border-radius: .5em;
  22. background-color: $white;
  23. box-shadow: 0 0 .2em $dark-gray;
  24. }
  25. }
Add Comment
Please, Sign In to add comment