[lastbash-cvs] lastbash/html lastbash.html,1.1,1.2
Status: Beta
Brought to you by:
cstroie
|
From: Costin S. <cs...@us...> - 2007-01-29 16:13:51
|
Update of /cvsroot/lastbash/lastbash/html In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv9862 Modified Files: lastbash.html Log Message: Better HTML output. Index: lastbash.html =================================================================== RCS file: /cvsroot/lastbash/lastbash/html/lastbash.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- lastbash.html 21 Nov 2006 13:59:25 -0000 1.1 +++ lastbash.html 29 Jan 2007 16:13:35 -0000 1.2 @@ -2,23 +2,129 @@ <html> <head> <title>LastBASH</title> - <link rel="stylesheet" href="css/screen.css" type="text/css" media="screen"> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> + <meta name="author" content="Costin Stroie"> + <meta name="copyright" content="© 2007 Costin Stroie <cs...@us...>"> <meta name="revision" content="$Id$"> + <meta http-equiv="refresh" content="30"> + <style type="text/css" media="screen"> + html, body { + margin: 0; + padding: 0; + text-align: center; + } + + body { + background-color: #a9ac99; + padding: 10px 10px; + color: #404040; + } + + a { + background: inherit; + color: #707070; + text-decoration: none; + } + + a:hover { + color: #a06000; + background: inherit; + text-decoration: none; + } + + img { + background-color: #fdfdfa; + border: solid 1px #e0e0d0; + padding: 1px; + margin: 1px; + } + + table { + border-style: none; + border-collapse: collapse; + text-align: left; + width: 500px; + } + + table tr { + background-color: #f5f5ee; + color: #404040; + border: solid 1px #e0e0d0; + } + + table td { + padding: 2px 0; + margin: 0; + font: 12px Arial, Helvetica, sans-serif; + } + + table td.label { + background-color: #f5f5ee; + padding: 1px 0.5em 1px 1em; + } + + table td.data { + background-color: #fdfdfa; + padding: 1px 0.5em 1px 1em; + width: 100%; + } + + table td.cover { + background-color: #fdfdfa; + padding: 0; + margin: 0; + vertical-align: middle; + text-align: center; + height: 160px; + width: 160px; + } + + table td.header { + background-color: #f5f5ee; + padding: 10px; + text-align: right; + } + + table td.header a { + color: #a9ac99; + font: 24px Georgia, 'Times New Roman', Times, serif; + padding: 0 10px; + margin: 0; + } + </style> </head> <body> <table> - <tr class="title"><td colspan="2"><h1><a>LastBASH</a></h1></td></tr> - <tr id="header"><td colspan="2">TEXT</td></tr> <tr> - <td>1</td> - <td>2</td> + <td rowspan="7" class="cover"> + <img src="http://images.amazon.com/images/P/B00004YWEG.01._SCMZZZZZZZ_.jpg" height="160px" width="160px" alt="Album cover"> + </td> + <td colspan="2" class="header"><a href="http://lastbash.sourceforge.net" title="LastBASH homepage">LastBASH</a></td> </tr> <tr> - <td>1</td> - <td>2</td> + <td class="label">Artist</td> + <td class="data"><a href="http://www.last.fm/music/AC%252FDC" title="Last.fm artist homepage">AC/DC</a></td> + </tr> + <tr> + <td class="label">Track</td> + <td class="data"><a href="http://www.last.fm/music/AC%252FDC/_/Cover+You+in+Oil" title="Last.fm track homepage">Cover You in Oil</a></td> + </tr> + <tr> + <td class="label">Album</td> + <td class="data"><a href="http://www.last.fm/music/AC%252FDC/Ballbreaker" title="Last.fm album homepage">Ballbreaker</a></td> + </tr> + <tr> + <td class="label">Length</td> + <td class="data">4:33</td> + </tr> + <tr> + <td class="label">Station</td> + <td class="data"><a href="http://www.last.fm/music/Queen" title="Last.fm station homepage">Similar music to Queen</a></td> + </tr> + <tr> + <td class="label"> </td> + <td class="data"> </td> </tr> - <tr id="footer"><td colspan="2">Next Page »</td></tr> </table> </body> </html> |