-rw-r--r-- | htdocs/ancestry/page.chtml | 2 | ||||
-rw-r--r-- | htdocs/style.css | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/htdocs/ancestry/page.chtml b/htdocs/ancestry/page.chtml index 5bec31e..b9f3434 100644 --- a/htdocs/ancestry/page.chtml +++ b/htdocs/ancestry/page.chtml @@ -1,28 +1,28 @@ % html(); return; /* vim:set ft=sitecing: */ %%var bool b_strict = true; <%decl> using std::string; </%decl> <%method void html() %> % if(b_strict){ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> % }else{ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> % } <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> -% __SCIF->headers["Content-Type"] = "text/html"; +% __SCIF->headers["Content-Type"] = "text/html; charset=utf-8"; <title>site-C-ing: <% title() %></title> <meta name="copyright" content="Copyright (c) 2005 Klever Group"/> <link rel="stylesheet" href="/style.css" type="text/css" /> </head> <body> % body(); </body> </html> </%method> <%codemethod string title() %> return "untitled"; </%codemethod> <%method void body() %> </%method> diff --git a/htdocs/style.css b/htdocs/style.css index 28aa8df..27721d4 100644 --- a/htdocs/style.css +++ b/htdocs/style.css @@ -1,50 +1,50 @@ body { - font-family: sans-serif; + font-family: arial,helvetica, sans-serif; font-size: 11pt; } a:link, a:visited { text-decoration: none; } a:link:hover, a:visited:hover { text-decoration: underline; } p { margin: 1ex 1em; text-indent: 2em; text-align: justify; } p.note { margin-left: 10%; border-width: 1px 1px 1px 6px; border-color: gray gray gray #0000a0; border-style: solid solid solid double; padding: 1ex 1ex 1ex 2em; font-size: 80%; background: #c0c0e0; color: #202020; } code a, code { color: #d04040; } em { white-space: nowrap; } div.google_ad { text-align: center; margin: 1ex; } div.google_ad.top { padding-bottom: 1ex; border-bottom: 1px gray solid; } div.google_ad.bottom { padding-top: 1ex; border-top: 1px gray solid; } div#sidepanel { position: absolute; top: 0px; left: 0px; margin: 0px; @@ -189,74 +189,75 @@ ul.sourcebrowser li.file a { ul.sourcebrowser li.file a:hover { background: gray; border: 1px solid black; color: white; } div.prevnext { margin: 1ex; } div.prevnext a { margin: 0.5ex 1em; padding: 0.2ex 0.5ex; display: block; width: 30%; border: solid 1px gray; color: black; text-decoration: none; } div.prevnext a.prevnext-prev { float: left; text-align: left; } div.prevnext a.prevnext-next { float: right; text-align: right; } div.prevnext a:hover { background: gray; border: black 1px solid; color: white; text-decoration: none; } ul.quickref.toc { margin: 1em 20%; font-size: 90%; border: solid 1px gray; } dl.quickref { margin: 1ex 1em; overflow: hidden; } dl.quickref dt { margin: 0.4ex; padding: 2px 0.5ex; background: #e0e0e0; display: compact; } dl.quickref dd { - margin: 0px 0.4ex 0.4ex 10%; + margin: 0px 1% 0.4ex 10%; + width: 89%; padding: 0px; border: 1px solid gray; overflow: hidden; } dl.quickref code kbd { font-style: italic; color: #0000c0; } dl.quickref blockquote { background: #ffffc0; padding: 4px; border: dotted 1px gray; font-family: monospace; font-size: 90%; overflow: hidden; } dl.quickref blockquote em { display: block; font-family: inherit !important; font-size: inherit !important; font-weight: inherit !important; font-style: inherit !important; background: #ffc0c0; overflow: hidden; } |