_tooltip.scss 454 B

123456789101112131415161718
  1. // Tooltip used when hovering on divisions
  2. .tooltip {
  3. position : absolute;
  4. top : 0;
  5. right : 0;
  6. color : $color-top;
  7. display : none;
  8. z-index : 4;
  9. font-family : $font;
  10. // width : 120px;
  11. padding : 2px;
  12. // line-height : 25px;
  13. background-color: $background;
  14. border : 1px solid $background-lighter3;
  15. }