--- web/trunk/www.linuxsampler.org/index.css 2005/06/04 18:27:05 610 +++ web/trunk/www.linuxsampler.org/index.css 2007/08/08 17:18:12 1275 @@ -5,7 +5,7 @@ #mainwindow { border: 1px solid black; background: white; - overflow: hidden; + overflow: auto; width: 100%; padding: 0; } @@ -45,7 +45,10 @@ } table th { - background: rgb(226,226,226); + font-size: 14pt; + font-family: sans-serif; + font-weight: bold; + background: rgb(240,240,240); } .code { @@ -67,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; } @@ -174,7 +184,6 @@ } ul { - /* list-style-type:circle; */ border: none; background: rgb(240, 240, 240); list-style-image: url("gfx/okay.png"); @@ -220,3 +229,102 @@ 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; +} + + + +/* News section */ + +div.news { + border: 1px dotted; + margin: 0.8em 2em; + padding: 0.4em 0.4em; + font-size: 11pt; + font-family: sans-serif; + text-align: justify; + font-style: normal; + font-weight: normal; +} + +ul.news { + background: transparent; + list-style-type: disc; + margin: 0em 0em 0em 0em; + padding: 0em 0em 0em 1.5em; +} + +li.news { + font-size: 11pt; + font-family: sans-serif; + text-align: justify; + font-style: normal; + font-weight: normal; +} + +span.news_date { + font-weight: bold; +} + +span.news_footer { + margin: 0em 2em; +} + + + +/* CVS Commits section */ + +table.cvs { + table-layout: automatic; + font-size: 11pt; + font-family: sans-serif; + text-align: justify; + font-style: normal; + font-weight: normal; + margin: 0em 2em; +} + +table.cvs_project { + table-layout: automatic; + border: 1px dotted; +} + +#cvs_content { + max-height: 300px; + overflow: hidden; + font-size: 11pt; + font-family: sans-serif; + text-align: justify; + font-style: normal; + font-weight: normal; +} + +span.cvs_footer { + font-size: 11pt; + font-family: sans-serif; + text-align: justify; + font-style: normal; + font-weight: normal; +}