--- web/trunk/www.linuxsampler.org/index.css 2005/09/26 21:58:35 782 +++ web/trunk/www.linuxsampler.org/index.css 2007/06/21 17:30:38 1246 @@ -70,6 +70,13 @@ padding: 1em 2.2em; } +td.bordered { + text-align: center; + padding: 0.6em; + border: 2px outset White; + background-color: #F0F0F0; + } + td.default { padding: 0.6em; } @@ -223,3 +230,27 @@ font-family: sans-serif; text-align: justify; } + + +/* info code from SantaKlauss at http://www.madaboutstyle.com/tooltip2.html */ +a.info { + /* This is the key. */ + position: relative; + z-index: 24; + text-decoration: none; +} +a.info:hover { + z-index: 25; + color: #FFF; background-color: #900; +} +a.info span { display: none; } +a.info:hover span.info { + /* The span will display just on :hover state. */ + display: block; + position: absolute; + font-size: smaller; + top: 2em; left: -5em; width: 15em; + padding: 2px; border: 1px solid #333; + color: #900; background-color: #DDF; + text-align: left; +}