initial commit

This commit is contained in:
Jeff Carr 2017-11-29 08:59:02 +00:00
commit 5031e98cd9
11 changed files with 644 additions and 0 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

53
index.nginx-debian.html Normal file
View File

@ -0,0 +1,53 @@
<!DOCTYPE html>
<html>
<head>
<title>check.wit.com</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<br>
<br>
<br>
Your web browser is:
<script LANGUAGE= "javascript">
document.write(navigator.userAgent + "<br><br>");
document.write(navigator.appName + "<br><br>");
</script>
<a href="http://check.wit.com:1200/">Hugo minx demo</a><br/>
<a href="http://check.wit.com:1201/">Hugo ananka demo</a><br/>
<h2>Browser benchmarks</h2>
<a href="http://check.wit.com:1202/polygon-shredder">Polygon demo</a><br/>
<a href="http://check.wit.com:1202/Icicle-Bubbles/app/">Icicle-Bubbles demo</a><br/>
<a href="http://check.wit.com:1202/cabbibo-Text">Text demo</a><br/>
<h2>GO benchmarks</h2>
<a href="https://github.com/golang/go/wiki/Benchmarks">Standard GO benchmarks</a><br/>
<a href="https://godoc.org/golang.org/x/benchmarks">GO benchmark docs</a><br/>
<h2>your web browser</h2>
<a href="https://www.whatsmybrowser.org/">Show your browser details</a><br/>
<a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Browser_detection_using_the_user_agent">Parsing user agent</a><br/>
<a href="javascript1.html">java test1</a><br/>
<a href="javascript2.html">java test2</a><br/>
<a href="javascript3.html">java test3</a><br/>
<a href="javascript_dump/">dump javascript info</a><br/>
<br>
<FORM>
<INPUT TYPE="text" VALUE= "dont change" NAME = "leavebutton"
onChange= "alert('Please dont change this')">
</FORM>
</body>
</html>

69
javascript1.html Normal file
View File

@ -0,0 +1,69 @@
<HTML>
<HEAD><TITLE>Choice</TITLE>
<SCRIPT Language="javascript">
// sets up database of links - SECTION A1
muresources=""
muresources["classical"]= "<A HREF='http://net.com/classical.file1'>Meditative classical music<A><P>
<A HREF='http://net.com/classical.file2'>Provoking classical music<A>"
muresources["rock"] = "<A HREF='http://net.com/rock.file1'>Popular rock music<A><P>
<A HREF='http://net.com/rock.file2'>Exciting rock music<A>"
muresources["ethnic"] = "<A HREF='http://net.com/mexican.file1'>Mexican music<A><P>
<A HREF='http://net.com/Indian.file2'>Indian music<A>"
function getLink() {
// constructs unique page using name and choice of music - SECTION A.2
temp = muresources[choice]
temp2 = "<TITLE>Custom Links</TITLE><H3>" +document.m.pername.value+", here are some
links for you</H3><P>"+temp
}
function writeIt(){
// creates new window to display page - SECTION A.3
diswin = window.open();
diswin.document.open();
diswin.document.write(temp2);
diswin.document.close()
}
function doAll(){
// master routine calls other functions - SECTION A.4
getLink();
writeIt()
}
</SCRIPT>
</HEAD>
<BODY >
<!-- Sets up basic input form SECTION B -->
<H3> Choose the kind of music you prefer<BR>
and this page will fetch links of interest to you</H3>
<HR>
<FORM NAME="m" >
Choose a kind of music<P>
<INPUT TYPE="radio" NAME="mus" VALUE="classical" OnClick="choice='classical'"
>Classical <BR>
<INPUT TYPE="radio" NAME="mus" VALUE="rock" OnClick="choice='rock'">Rock<BR>
<INPUT TYPE="radio" NAME="mus" VALUE="ethnic"
OnClick="choice='ethnic'">Ethnic<BR>
<HR>
Please type your name<P>
<INPUT TYPE="text" NAME="pername" SIZE=25>
<HR>
<INPUT TYPE="button" NAME="sub" VALUE="Show me links" OnClick=doAll()>
<INPUT TYPE="reset" NAME="res" >
</FORM>
<SCRIPT>
// sets defaults - SECTION C
choice = "classical"
document.m.mus[0].checked = true
document.m.mus[1].checked = false
document.m.mus[2].checked = false
</SCRIPT>
</BODY>
</HTML>

43
javascript2.html Normal file
View File

@ -0,0 +1,43 @@
<HTML>
<HEAD>
<TITLE> Animated Text</TITLE>
</HEAD>
<body>
<FORM NAME="fa1">
<INPUT NAME="ta1" TYPE="text" SIZE="20">
<INPUT NAME="ta2" TYPE="text" SIZE="20">
<INPUT NAME="ta3" TYPE="text" SIZE="20">
<input id="UserAgent" name="User Agent" />
</FORM>
<SCRIPT LANGUAGE= "javascript">
setTimeout("document.fa1.ta1.value = 'ta1 start'", 1000);
setTimeout("document.fa1.ta1.value = 'ta1 end'", 1300);
setTimeout("document.fa1.ta2.value = 'ta2 start'", 1600);
setTimeout("document.fa1.ta2.value = 'ta2 end'", 1900);
setTimeout("document.fa1.ta3.value = 'ta3 start'", 2200);
setTimeout("document.fa1.ta3.value = 'ta3 end'", 2500);
document.getElementById('UserAgent').value = navigator.userAgent;
document.write("<br>");
document.write(navigator.userAgent + "<br>");
document.write("<br>");
</SCRIPT>
<SCRIPT>
//assigns value to variable
test ="javascript font attributes"
// opens document and uses methods to modify text characteristics
document.open()
document.write(test.bold()+"<P>")
document.write(test.fontsize(7)+"<P>")
document.write(test.fontcolor("red")+"<P>")
document.write(test.toUpperCase()+"<P>")
//assigns multiple characteristics to text
document.write(test.italics().fontsize(6).fontcolor("green")+"<P>")
document.open()
</SCRIPT>
</body>

54
javascript3.html Normal file
View File

@ -0,0 +1,54 @@
<HTML>
<HEAD><TITLE> Banner</TITLE>
<SCRIPT LANGUAGE= "javascript">
// Puts the text to scroll into variable called sent - SECTION A
// uses length propert to assess its length and put into variable slen
// initalizes a,b,n, and subsent variables
var sent = "This is a demonstration of a banner moving from the left to right. It makes use of the substring property of Javascript to make an interesting display"
var slen = sent.length
var siz = 25
var a = -3, b = 0
var subsent = "x"
// Creates a function to capture substrings of sent - SECTION B
function makeSub(a,b) {
subsent = sent.substring(a,b) ;
return subsent;
}
//Creates a function that increments the indexes of the substring - SECTION C
//each time and calls the makeSub() function to geneate strings
//a indicates start of substring and siz indicates size of string required
function newMake() {
a = a + 3;
b = a + siz
makeSub(a,b);
return subsent
}
//function uses loop to get changing substrings of target - SECTION D
//repeatedly calls newMake to get next substring
//uses setTimeout() command to arrange for substrings to display
// at specified times
function doIt() {
for (var i = 1; i <= slen ; i++) {
setTimeout("document.z.textdisplay.value = newMake()", i*300);
setTimeout("window.status = newMake()", i*300);
}
}
</SCRIPT>
</HEAD>
<BODY >
<HR> <CENTER>
<FORM NAME="z">
<INPUT NAME="textdisplay" TYPE="text" SIZE=25> <P>
<INPUT NAME="doit" Type="button" value = "Run Banner" onClick = "doIt()">
</FORM></CENTER>
<HR>
</BODY></HTML>

BIN
javascript_dump/fav_aw.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 318 B

324
javascript_dump/index.html Normal file
View File

@ -0,0 +1,324 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Language" content="en">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="JavaScript that attempts to identify your Web browser and provide information about your computer.">
<meta name="keywords" content="Web browser, Web browsers, browser, browsers, identify, identification, information, JavaScript">
<meta name="author" content="Alan Wood">
<link rel="top" href="../index.html" title="Alan Woods Web site">
<link rel="shortcut icon" href="fav_aw.ico">
<link rel="icon" href="fav_aw.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="alternate stylesheet" type="text/css" href="mainhigh.css" title="High visibility">
<link rel="meta" href="http://www.alanwood.net/labels.rdf" type="application/rdf+xml" title="ICRA labels">
<meta http-equiv="pics-Label" content='(pics-1.1 "http://www.icra.org/pics/vocabularyv03/" l gen true for "http://alanwood.net" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0) gen true for "http://www.alanwood.net" r (n 0 s 0 v 0 l 0 oa 0 ob 0 oc 0 od 0 oe 0 of 0 og 0 oh 0 c 0))'>
<title>Information about your Web browser from JavaScript</title>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
var yourapp=navigator.appName
var yourappalt=navigator.userAgent
var yourversion=navigator.appVersion
var yourappcodename=navigator.appCodeName
var yourplatform=navigator.platform
var youroscpu=navigator.oscpu
var yourcookie=navigator.cookieEnabled
var outwinw=window.outerWidth
var outwinh=window.outerHeight
var inwinw=window.innerWidth
var inwinh=window.innerHeight
document.cookie="Cookies are supported";
jsversion = "1.0";
// End of script -->
</script>
<script language="JavaScript1.1" type="text/javascript">
<!-- Start of script
jsversion = "1.1";
// End of script -->
</script>
<script language="JavaScript1.2" type="text/javascript">
<!-- Start of script
jsversion = "1.2";
colourbits = window.screen.colorDepth;
colournumber = Math.pow (2, colourbits);
// End of script -->
</script>
<script language="JavaScript1.3">
<!-- Start of script
jsversion = "1.3";
// End of script -->
</script>
<script language="JavaScript1.4">
<!-- Start of script
jsversion = "1.4";
// End of script -->
</script>
<script language="JavaScript1.5">
<!-- Start of script
jsversion = "1.5";
// End of script -->
</script>
<script language="JavaScript1.6">
<!-- Start of script
jsversion = "1.6";
// End of script -->
</script>
<script language="JavaScript1.7">
<!-- Start of script
jsversion = "1.7";
// End of script -->
</script>
<script language="JavaScript1.8">
<!-- Start of script
jsversion = "1.8";
// End of script -->
</script>
<script language="JavaScript1.9">
<!-- Start of script
jsversion = "1.9";
// End of script -->
</script>
</head>
<body><a name="top"></a>
<div class="c">
<div class="h">
<h1>Information about your Web browser</h1>
<h2>JavaScript</h2>
</div>
<div class="i">
<table class="nav">
<tr>
<td class="navg">JavaScript</td>
<td><a class="nav" href="browserinfo.php">PHP: Hypertext Preprocessor</a></td>
<td><a class="nav" href="browserinfo-ssi.shtml">SSI: Server-side includes</a></td>
</tr>
</table>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write("<p>This Web page uses JavaScript to determine information about the Web browser that you are using and about your computer. This information is only displayed; it is not stored or used in any way.<\/p><p><a href='enabling-javascript.html'>Instructions for enabling and disabling JavaScript in Web browsers<\/a><\/p>");
// End of script -->
</script>
</div>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write("<div class='i'><h3>Browser identity<\/h3><p>The <a href='#navobj'>JavaScript navigator object<\/a> includes 4 properties that help to identify a Web browser: appName, appCodeName, userAgent and appVersion.<\/p>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write ("<h4>appName</h4><p class='mt'><strong>" + yourapp + "<\/strong><\/p>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write ("<h4>appCodeName</h4><p class='mt'><strong>" + yourappcodename + "<\/strong><br>Almost all Web browsers use the internal code name Mozilla.<\/p>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write ("<h4>userAgent</h4><p class='mt'><strong>" + yourappalt + "<\/strong><br>This is the most useful data for identifying a browser.<\/p>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write ("<h4>appVersion</h4><p class='mt'><strong>" + yourversion + "<\/strong><br>If you are using an obsolete Netscape browser, then the first number is its version number.<br>If you are using any other browser, then the first number is either (a) the Netscape version with which your browser claims to be compatible, and the version of your browser will appear among the other information, or (b) the version of your browser.<br><\/p>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write ("<h4>How does this identify my browser?</h4><p class='mt'>This data is intended for use by computer programs, not by human beings. However, it is possible to make an educated guess as to the identity of your Web browser by interpreting the data, and then to <a href='browser-identification.html'>display the browser&#8217;s name in plain English<\/a>. In combination with other data, it is sometimes possible to tell when a browser is <a href='browser-identification.html#spoof'>spoofing<\/a> (pretending to be a different browser).<\/p><\/div>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write("<div class='i'><h3>Browser properties<\/h3><p>JavaScript can detect some of the capabilities of your Web browser.<\/p>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
if (document.cookie.length > 0)
{
document.write("<h4>Cookie support<\/h4><p class='mt'>An attempt to create a temporary cookie succeeded, and therefore:<br><strong>Cookie support is enabled<\/strong><\/p>");
}
else
{
document.write("<h4>Cookie support<\/h4><p class='mt'>An attempt to create a temporary cookie failed, and therefore:<br><strong>Cookie support is not enabled<\/strong><\/p>");
}
document.write("<p>Querying the navigator object indicates that cookie support is:<br><strong>" + yourcookie + "<\/strong><\/p>");
// End of script -->
</script>
<script language="JavaScript1.1" type="text/javascript">
<!-- Start of script
if (navigator.javaEnabled())
{
document.write("<h4>Java support<\/h4><p class='mt'>This Web site does not use Java, but your Web browser reports its Java support as:<br><strong>enabled<\/strong><\/p>");
}
else
{document.write("<h4>Java support<\/h4><p class='mt'>This Web site does not use Java, but your Web browser reports its Java support as:<br><strong>not enabled<\/strong><\/p>");
}
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write("<h4>JavaScript support<\/h4><p class='mt'>Your Web browser reports its JavaScript support as:<br><strong>JavaScript version " + jsversion + "<\/strong><\/p>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
if (navigator.userAgent.toLowerCase().indexOf("msie") != -1 && (parseInt(navigator.appVersion) >= 4) && navigator.userAgent.toLowerCase().indexOf(".net clr") != -1)
{
document.write("<h4>Encodings<\/h4><p class='mt'>Your Web browser is displaying this document using <strong>" + document.charset + "<\/strong> encoding. You can change this from Encoding (or Character Set) on the View menu.<\/p><p>Your Web browser&#8217;s default encoding (i.e. the one used for Web pages for which charset is not specified) is currently set to <strong>" + document.defaultCharset + "<\/strong>.<\/p><\/div>");
}
else
{
document.write("<h4>Encoding<\/h4><p class='mt'>The encoding that your Web browser is using to display this document is:<br><strong> " + document.characterSet + "<\/strong><\/p><\/div>");
}
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write("<div class='i'><h3>Computer properties<\/h3><p>JavaScript can detect some of the features of your computer.<\/p>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write("<h4>Operating system<\/h4><p class='mt'>Your Web browser reports your platform as:<br><strong>" + yourplatform + "<\/strong><br><small>Technical note: this item displays the platform property of the navigator object.<\/small><\/p>");
// End of script -->
</script>
<script language="JavaScript1.2" type="text/javascript">
<!-- Start of script
document.write("<h4>Screen colours<\/h4><p class='mt'>Your current screen colour depth is:<br><strong>" + colournumber + " colours (" + colourbits + " bits)<\/strong><\/p>");
// End of script -->
</script>
<script language="JavaScript1.2" type="text/javascript">
<!-- Start of script
document.write("<h4>Screen resolution<\/h4><p class='mt'>Your current screen resolution is:<br><strong>" + screen.width + " &times; " + screen.height + " pixels (width &times; height)<\/strong><br><small>Technical note: this item displays the width and height properties of the screen object.<\/small><\/p><p class='mt'>The area of your screen that is currently available to applications is:<br><strong>" + screen.availWidth + " &times; " + screen.availHeight + " pixels (width &times; height)<\/strong><br><small>Technical note: this item displays the availWidth and availHeight properties of the screen object.<\/small><\/p>");
// End of script -->
</script>
<script language="JavaScript1.2" type="text/javascript">
<!-- Start of script
document.write("<h4>Browser window size<\/h4><p class='mt'>Your current browser window size is:<br><strong>" + outwinw + " &times; " + outwinh + " pixels (width &times; height)<\/strong><br><small>Technical note: this item displays the outerWidth and outerHeight properties of the window object.<\/small><\/p><p class='mt'>The area of your browser window that is currently available to display web pages is:<br><strong>" + inwinw + " &times; " + inwinh + " pixels (width &times; height)<\/strong><br><small>Technical note: this item displays the innerWidth and innerHeight properties of the window object.<\/small><\/p><p class='mt'>Note 1: If you change the size of your browser window, these values will not change until you refresh the display by pressing F5.<\/p><p class='mt'>Note 2: Internet Explorer 8 and earlier do not support these properties.<\/p><p class='mt'>Note 3: Some browsers modify the values for these properties if you zoom in or zoom out.<\/p><\/div>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
if (jsversion < 1.2)
{
document.write("<h4>Screen colours and resolution<\/h4><p class='mt'>Your Web browser is quite old, and the early version of JavaScript that it supports is not able to determine the resolution or the colour depth of your screen.<\/p><\/div>");
}
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write("<div class='i'><a name='navobj'><\/a><h3>Navigator object properties<\/h3><p>The following table lists all of the properties of the JavaScript navigator object that are supported by your browser:<\/p>");
var html = "";
for (var n in window.navigator)
html += "<tr><td>" + n + "<\/td><td>" + window.navigator[n] + "&nbsp\;<\/td><\/tr>";
document.write("<table class='bord' border='1' cellpadding='4' cellspacing='0' width='100%'>");
document.write("<tr><th>Property<\/th><th>Value<\/th><\/tr>");
document.write(html);
document.write("<\/table>");
document.write("<br><\/div>");
// End of script -->
</script>
<script language="JavaScript" type="text/javascript">
<!-- Start of script
document.write("<div class='i'><h3>Navigator document properties<\/h3><p>The following table lists a few of the properties of the JavaScript document object that may be supported by your browser:<\/p>");
document.write("<table class='bord' border='1' cellpadding='4' cellspacing='0' width='100%'>");
document.write("<tr><th>Property<\/th><th>Value<\/th><\/tr>");
document.write("<tr><td>charset<\/td><td>" + document.charset + "<\/td><\/tr>");
document.write("<tr><td>characterSet<\/td><td>" + document.characterSet + "<\/td><\/tr>");
document.write("<tr><td>defaultCharset<\/td><td>" + document.defaultCharset + "<\/td><\/tr>");
document.write("<tr><td>inputEncoding<\/td><td>" + document.inputEncoding + "<\/td><\/tr>");
document.write("<tr><td>cookie<\/td><td>" + document.cookie + "<\/td><\/tr>");
document.write("<tr><td>bgColor<\/td><td>" + document.bgColor + "<\/td><\/tr>");
document.write("<tr><td>fgColor<\/td><td>" + document.fgColor + "<\/td><\/tr>");
document.write("<tr><td>linkColor<\/td><td>" + document.linkColor + "<\/td><\/tr>");
document.write("<tr><td>alinkColor<\/td><td>" + document.alinkColor + "<\/td><\/tr>");
document.write("<tr><td>vlinkColor<\/td><td>" + document.vlinkColor + "<\/td><\/tr>");
document.write("<tr><td>contentType<\/td><td>" + document.contentType + "<\/td><\/tr>");
document.write("<tr><td>mimeType<\/td><td>" + document.mimeType + "<\/td><\/tr>");
document.write("<tr><td>compatMode<\/td><td>" + document.compatMode + "<\/td><\/tr>");
document.write("<\/table>");
document.write("<br><\/div>");
// End of script -->
</script>
<noscript>
<div class="i">
<h3>Your Web browser does not support JavaScript</h3>
<p>This Web page tries to use JavaScript to determine information about your Web browser, but either you are using a browser that does not support JavaScript, or else support has been disabled.</p>
<p><a href="enabling-javascript.html">Instructions for enabling and disabling JavaScript in Web browsers</a></p>
</div>
</noscript>
<div class="i">
<p class="m"><a href="../em2aw.php" rel="nofollow">Send comments or questions to Alan Wood</a></p>
<p class="m2"><a href="http://validator.w3.org/check?uri=referer"><img src="../valid-html401.gif" width="88" height="31" alt="Valid HTML 4.01" title="Validates with the W3C HTML Validation Service"></a> &nbsp; &nbsp; <a href="http://www.unicode.org"><img src="../unienctransbord31.gif" width="88" height="31" alt="Unicode Encoded" title="Go to the Unicode, Inc. Web site"></a><br>
<small>Created 6th December 1997 &nbsp;&nbsp; Updated 8th September 2013<br>
Copyright &copy; 19972013 Alan Wood</small></p>
</div>
<div class="h">
<a class="b" href="../index.html" title="Go to the home page of this Web site">Alan Woods Web site</a>
</div>
</div>
</body>
</html>

49
javascript_dump/main.css Normal file
View File

@ -0,0 +1,49 @@
body, html {background-color:#eeeeee; color:black; border:0 none; font-family:Arial,Helvetica,sans-serif; font-size:16px; line-height:1.2; margin:0;}
div.c {border:3px solid #0000c0; margin-left:auto; margin-right:auto; text-align:center; width:600px;}
div.cem {border:3px solid #0000c0; margin-left:auto; margin-right:auto; text-align:center; width:720px;}
div.cr {border:3px solid #0000c0; margin-left:auto; margin-right:auto; text-align:center; width:815px;}
div.cnews {border:3px solid #0000c0; margin-left:auto; margin-right:auto; text-align:center; width:620px;}
div.h {background-color:#0000c0; color:#fffff2; border:0 none; padding:10px; text-align:center;}
h1 {font-size:110%; margin-top:0;}
h2 {font-size:140%; margin-top:0; margin-bottom:0;}
h3 {font-size:130%; font-weight:bold; margin-top:0; margin-bottom:0.5em;}
h4 {font-size:115%; font-weight:bold; margin-bottom:0;}
div.i {background-color:#fffff2; color:#0000c0; border-width:3px 0 0 0; border-style:solid; margin:0; padding:0.6em; text-align:left;}
div.search {text-align:center;}
div.search table {margin-left:auto; margin-right:auto;}
div.in {margin:0; padding:0;}
a {background-color:#fffff2; color:blue; text-decoration:underline;}
a:visited {background-color:#fffff2; color:#800080; text-decoration:underline;}
a:hover {background-color:#fffff2; color:red; text-decoration:underline;}
a.h {background-color:#0000c0; color:#fffff2; text-decoration:none;}
a.h:visited {background-color:#0000c0; color:#fffff2; text-decoration:none;}
a.h:hover {background-color:#0000c0; color:#fffff2; text-decoration:underline;}
a.b {background-color:#0000c0; color:#fffff2; font-weight:bold; text-decoration:underline;}
a.b:visited {background-color:#0000c0; color:#fffff2; text-decoration:underline;}
a.b:hover {background-color:#0000c0; color:#fffff2; font-weight:bold; text-decoration:underline;}
p, ol, ul, td {background-color:#fffff2; color:black;}
p.i {font-size:100%; font-weight:bold; margin:0;}
p.n {font-size:85%; margin-left:1.5em; margin-top:0; margin-bottom:0;}
p.mt {margin-top:0.4em;}
p.ps {margin-bottom:0;}
ul.n {margin-top:0.3em; margin-bottom:0;}
p.m {line-height:1.8; margin-bottom:0; margin-top:0.2em; text-align:center;}
p.m2 {line-height:1.8; margin-bottom:0; text-align:center;}
p.code {font-family:Courier,'Courier New',monospace; text-wrap:normal; word-wrap:break-word;}
td input, td textarea {font-size:100%;}
input, textarea {font-family:Arial,Helvetica,sans-serif; font-size:100%;}
li li {font-size:100%;}
li.mb {margin-bottom:0.5em;}
table.bord {border:1px solid #0000c0; border-collapse:collapse;}
table.bord th {border:1px solid #0000c0;}
table.bord td {border:1px solid #0000c0;}
th.l {background-color:#fffff2; color:black; font-weight:normal; text-align:left; white-space:nowrap;}
table.nav {background-color:#fffff2; color:#000080; border:1px solid #0000c0; border-collapse:collapse; font-family:Verdana,Tahoma,Arial,Helvetica,sans-serif; font-size:70%; font-weight:bold; margin-left:auto; margin-right:auto; text-align:center;}
table.nav td {border:1px solid #0000c0; padding-left:12px; padding-right:12px; padding-top:3px; padding-bottom:3px; text-wrap:normal; word-wrap:break-word;}
a.nav {background-color:#fffff2; color:blue; text-decoration:none;}
a.nav:visited {background-color:#fffff2; color:#800080; text-decoration:none;}
a.nav:active {background-color:#fffff2; color:blue; text-decoration:none;}
a.nav:hover {background-color:#fffff2; color:red; text-decoration:underline;}
td.navg {background-color:#fffff2; color:#999999;}
img {border:0 none;}
.under {text-decoration:underline;}

View File

@ -0,0 +1,52 @@
body, html {background-color:white; color:black; border:0 none; font-size:100%; font-family:Arial,Helvetica,sans-serif; margin:0;}
div.c {border:3px solid black; margin-left:auto; margin-right:auto; text-align:center; width:600px;}
div.cr {border:3px solid black; margin-left:auto; margin-right:auto; text-align:center; width:815px;}
div.cem {border:3px solid black; margin-left:auto; margin-right:auto; text-align:center; width:880px;}
div.cnews {border:3px solid black; margin-left:auto; margin-right:auto; text-align:center; width:620px;}
div.h {background-color:white; color:black; border:0 none; padding:10px; text-align:center;}
h1 {font-size:1.5em; margin-top:0;}
h2 {font-size:2.2em; margin-top:0; margin-bottom:0;}
h2.aw {font-size:1.65em; margin-top:0; margin-bottom:0.5em;}
h3 {font-size:2.0em; font-weight:bold; margin-top:0; margin-bottom:0.5em;}
h4 {font-size:1.65em; font-weight:bold; margin-bottom:0;}
div.i {background-color:white; color:black; border-width:3px 0 0 0; border-style:solid; margin:0; padding:0.6em; text-align:left;}
div.search {text-align:center;}
div.search table {margin-left:auto; margin-right:auto;}
div.in {margin:0; padding:0;}
a {background-color:white; color:blue; text-decoration:underline;}
a:visited {background-color:white; color:#800080; text-decoration:underline;}
a:hover {background-color:white; color:red; text-decoration:underline;}
a.h {background-color:white; color:blue; text-decoration:underline;}
a.h:visited {background-color:white; color:#800080; text-decoration:none;}
a.h:hover {background-color:white; color:red; text-decoration:underline;}
a.b {background-color:white; color:blue; font-size:1.4em; font-weight:bold; text-decoration:underline;}
a.b:visited {background-color:white; color:#800080; text-decoration:underline;}
a.b:hover {background-color:white; color:red; font-size:1.4em; font-weight:bold; text-decoration:underline;}
p, ol, ul, td {background-color:white; color:black; font-size:1.4em;}
p.i {font-size:1.4em; font-weight:bold; margin:0;}
p.n {font-size:1.25em; margin-left:1.5em; margin-top:0; margin-bottom:0;}
p.mt {margin-top:0.4em;}
p.ps {margin-bottom:0;}
ul.n {margin-top:0.3em; margin-bottom:0;}
p.m {line-height:1.8; margin:0; text-align:center;}
p.m2 {line-height:1.8; margin-bottom:0; text-align:center;}
p.code {font-family:Courier,'Courier New',monospace; text-wrap:normal; word-wrap:break-word;}
td input, td textarea {font-size:1em;}
input, textarea {font-family:Arial,Helvetica,sans-serif; font-size:1.4em;}
ul ul {font-size:100%;}
li.mb {margin-bottom:0.5em;}
table.bord {border:1px solid black; border-collapse:collapse;}
table.bord th {border:1px solid black;}
table.bord td {border:1px solid black;}
th.l {background-color:white; color:black; font-size:1.4em; font-weight:normal; text-align:left; white-space:nowrap;}
table.nav {background-color:white; color:black; border:1px solid blue; border-collapse:collapse; font-family:Verdana,Tahoma,Arial,Helvetica,sans-serif; font-size:1.0em; font-weight:bold; margin-left:auto; margin-right:auto; text-align:center;}
table.nav td {border:1px solid blue; padding-left:12px; padding-right:12px; padding-top:3px; padding-bottom:3px; text-wrap:normal; word-wrap:break-word;}
a.nav {background-color:white; color:blue;text-decoration:none;}
a.nav:visited {background-color:white; color:#800080; text-decoration:none;}
a.nav:active {background-color:white; color:blue; text-decoration:none;}
a.nav:hover {background-color:white; color:red; text-decoration:underline;}
td.navg {background-color:white; color:#999999;}
img {border:0 none;}
a.l {font-size:1.4em;}
div.std {font-size:1.25em;}
.under {text-decoration:underline;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB