[lastbash-cvs] lastbash/html/css screen.css,1.1,1.2
Status: Beta
Brought to you by:
cstroie
|
From: Costin S. <cs...@us...> - 2007-01-29 16:10:26
|
Update of /cvsroot/lastbash/lastbash/html/css In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv8155 Modified Files: screen.css Log Message: CSS for HTML output. Index: screen.css =================================================================== RCS file: /cvsroot/lastbash/lastbash/html/css/screen.css,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- screen.css 21 Nov 2006 13:59:24 -0000 1.1 +++ screen.css 29 Jan 2007 16:09:53 -0000 1.2 @@ -15,86 +15,78 @@ body { background-color: #a9ac99; - font-size: 13px; - font-family: 'Trebuchet MS', 'Bitstream Vera Sans', Verdana, Arial, 'Lucida Sans', 'Lucida Sans Unicode', Helvetica, sans-serif; - padding: 20px 0; - color: #000000; + padding: 10px 10px; + color: #404040; } a { background: inherit; - color: #a06000; + color: #707070; text-decoration: none; } -h1 { +a:hover { + color: #a06000; background: inherit; - color: #a9ac99; - font-weight: 16pt Georgia, 'Times New Roman', Times, serif normal; - margin: 10pt 0 5pt 0; - padding: 0; text-decoration: none; - letter-spacing: 0.1em; -} - -h2, h2 a { - background: inherit; - color: #990000; - font-size: 16px; - font-weight: normal; - letter-spacing: 0.05em; - margin: 0; - padding: 1em 0 0 0; -} - -h3, h3 a { - background: inherit; - color: #990000; - font-size: 14px; - font-weight: normal; - letter-spacing: 0.05em; - margin: 0; - padding: 1em 0 0 0; -} - -h4 { - background: inherit; - color: #005577; - font-size: 13px; - font-weight: normal; - letter-spacing: 0.05em; - margin: 0; - padding: 1em 0 0 0; } img { - border: none; + background-color: #fdfdfa; + border: solid 1px #e0e0d0; + padding: 1px; + margin: 1px; } table { border-style: none; border-collapse: collapse; text-align: left; - width: 100%; + width: 500px; } table tr { - background: #fdfdfa; + background-color: #f5f5ee; + color: #404040; + border: solid 1px #e0e0d0; } -table tr#header { - background: #f5f5ee; +table td { + padding: 2px 0; + margin: 0; + font: 12px Arial, Helvetica, sans-serif; } -table tr#footer { - background: #f5f5ee; +table td.label { + background-color: #f5f5ee; + padding: 1px 0.5em 1px 1em; +} -table td { - padding: 1pt 5pt; +table td.data { + background-color: #fdfdfa; + padding: 1px 0.5em 1px 1em; + width: 100%; } -table td { - padding: 1pt 5pt; +table td.cover { + background-color: #fdfdfa; + padding: 0; + margin: 0; + vertical-align: middle; + text-align: center; +} + +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; } /* vim: set ft=css nowrap nu */ |