Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. .container {
  2. width: 300px;
  3. margin: 0 auto;
  4. overflow: auto;
  5. }
  6.  
  7. .fruits-list {
  8. list-style: none;
  9. margin: 0;
  10. padding: 0;
  11. text-align: center;
  12.  
  13. li {
  14. position: relative;
  15. padding: 20px 0;
  16. border-bottom: 1px solid #eee;
  17. }
  18. }
  19.  
  20. /* hide tooltip by default */
  21. [tooltip-item]::before,
  22. [tooltip-item]::after {
  23. visibility: hidden;
  24. opacity: 0;
  25. pointer-events: none;
  26. }
  27.  
  28. /* general tooltip styles */
  29. [tooltip-item]::before {
  30. content: attr(tooltip-item); /* get attribute value */
  31. position: absolute;
  32. top: 0;
  33. left: 0;
  34. margin-bottom: 5px;
  35. margin-left: -80px;
  36. padding: 7px;
  37. width: 160px;
  38. border-radius: 3px;
  39. background-color: #fff;
  40. box-shadow: -1px 2px 10px -3px rgba(41, 41, 41, 0.59);
  41. color: #000;
  42. text-align: center;
  43. font-size: 12px;
  44. line-height: 1.2;
  45. }
  46.  
  47. /* show tooltip on hover */
  48. [tooltip-item]:hover::before,
  49. [tooltip-item]:hover::after {
  50. visibility: visible;
  51. opacity: 1;
  52. z-index: 99;
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement