[SimBot-commits] CVS: simbot/templates base.default.tmpl,1.4,1.5
Status: Abandoned
Brought to you by:
kstange
|
From: Pete P. <fou...@us...> - 2005-08-11 15:25:49
|
Update of /cvsroot/simbot/simbot/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19971/templates Modified Files: base.default.tmpl Log Message: - bold and underline now work in the irc log - colors simply need to be added to the css and they'll work too - httpd will now happily serve CSS files in the templates/css directory. They should be named similarly to templates, so a request for main.css will use main.local.css if it exists, otherwise it'll use main.default.css. - Moved the CSS from the base template to an external file. Index: base.default.tmpl =================================================================== RCS file: /cvsroot/simbot/simbot/templates/base.default.tmpl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -p -r1.4 -r1.5 --- base.default.tmpl 10 Aug 2005 16:49:37 -0000 1.4 +++ base.default.tmpl 11 Aug 2005 15:25:29 -0000 1.5 @@ -4,23 +4,8 @@ <!-- SimBot Default Base Template Copy to base.local.tmpl before editing --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> +<link rel="stylesheet" href="/css/main.css" type="text/css" /> <title>SimBot » <TMPL_VAR NAME=title></title> -<style type="text/css"> -h1 { - text-shadow: 4px 4px 5px #AAA; - border-bottom: 1px solid #000; - margin-bottom: 0; -} -#footer { - border-top: 1px solid #000; - margin-top: 0; -} -#content { margin: 1em 0; } -.ts { color: #777; font-size: 90%; margin-right: .5em; } -span.nick { color: #006; font-weight: bold; } -.row { padding: .1em 0 .1em 10em; text-indent: -9em; } -.row.kicked { color: #500; } -</style> </head><body> <h1><TMPL_VAR NAME=title></h1> <div id="content"> |