jquery.tooltip.css 533 B

123456789101112131415161718192021222324
  1. /*
  2. * jQuery Tooltip plugin 1.3
  3. *
  4. * http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
  5. * http://docs.jquery.com/Plugins/Tooltip
  6. *
  7. * Copyright (c) 2006 - 2008 Jörn Zaefferer
  8. *
  9. * $Id$
  10. *
  11. * Dual licensed under the MIT and GPL licenses:
  12. * http://www.opensource.org/licenses/mit-license.php
  13. * http://www.gnu.org/licenses/gpl.html
  14. */
  15. #tooltip {
  16. position: absolute;
  17. z-index: 3000;
  18. border: 1px solid #111;
  19. background-color: lightyellow;
  20. padding: 5px;
  21. opacity: 0.9;
  22. }
  23. #tooltip h3, #tooltip div { margin: 0; }