[Scummvm-cvs-logs] CVS: web/docs/specs specs.css,NONE,1.1 aary.php,1.6,1.7 char.php,1.4,1.5 glossary.php,1.5,1.6 index.php,1.5,1.6 introduction.php,1.8,1.9 scrp-v5.php,1.5,1.6 scrp-v6.php,1.6,1.7 scrp.php,1.5,1.6

Max Horn fingolfin at users.sourceforge.net
Thu Sep 2 12:25:51 CEST 2004


Update of /cvsroot/scummvm/web/docs/specs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8024/docs/specs

Modified Files:
	aary.php char.php glossary.php index.php introduction.php 
	scrp-v5.php scrp-v6.php scrp.php 
Added Files:
	specs.css 
Log Message:
Split CSS code into multiple files

--- NEW FILE: specs.css ---
/*
 * Stuff for the scumm reference guide
 */

TABLE.bitfield TH {
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: smaller;
}
 
TABLE.bitfield TD {
        border: 1px solid #000000;
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: smaller;
}

DIV.opcode {
        background-color: #FAFAFA;
        border: 2pt solid #000000;
        padding: 0.5em;
        margin-top: 1em;
}

DIV.opcode H2 {
        float: right;
        font-family: Arial, Helvetica, sans-serif;
        font-size: larger;
        font-weight: bold;
        margin-top: 0em;
}

DIV.opcode H3 {
        margin-top: 0em;
        font-family: Arial, Helvetica, sans-serif;
        font-size: large;
        font-weight: normal;
}

DIV.opcode H5 {
        margin-top: 0em;
        font-family: monospace;
        white-space: pre;
        margin: 0 0;
}

PRE.box {
	font-family: courier, monospace;
	font-size: small;
	white-space: pre;
	border: 2pt solid #000000;
	margin-left: 10%;
	margin-right: 10%;
	padding: 2%;
	background-color: #F0F0F0;
}

TABLE.list TH {
        background-color: #A0A0A0;
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: smaller;
}

TABLE.list CAPTION {
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: small;
        width: 100%;
}

TABLE.list TD {
        background-color: #F0F0F0;
        text-align: center;
        font-family: Arial, Helvetica, sans-serif;
        font-size: smaller;
}

Index: aary.php
===================================================================
RCS file: /cvsroot/scummvm/web/docs/specs/aary.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- aary.php	28 Aug 2004 13:09:56 -0000	1.6
+++ aary.php	2 Sep 2004 19:23:23 -0000	1.7
@@ -5,7 +5,7 @@
 require($file_root."/include/"."incl.php");
 
 // start of html
-html_header("SCUMM Reference Guide :: AARY Arrays and Strings");
+html_header("SCUMM Reference Guide :: AARY Arrays and Strings", '<link href="specs.css" rel="stylesheet" type="text/css">');
 sidebar_start(true);
     
 //display welcome table

Index: char.php
===================================================================
RCS file: /cvsroot/scummvm/web/docs/specs/char.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- char.php	14 Oct 2003 13:08:38 -0000	1.4
+++ char.php	2 Sep 2004 19:23:23 -0000	1.5
@@ -5,7 +5,7 @@
 require($file_root."/include/"."incl.php");
 
 // start of html
-html_header("SCUMM Reference Guide :: CHAR Character Sets");
+html_header("SCUMM Reference Guide :: CHAR Character Sets", '<link href="specs.css" rel="stylesheet" type="text/css">');
 sidebar_start(true);
 
 //display welcome table

Index: glossary.php
===================================================================
RCS file: /cvsroot/scummvm/web/docs/specs/glossary.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- glossary.php	14 Oct 2003 13:08:38 -0000	1.5
+++ glossary.php	2 Sep 2004 19:23:23 -0000	1.6
@@ -5,7 +5,7 @@
 require($file_root."/include/"."incl.php");
 
 // start of html
-html_header("SCUMM Reference Guide :: Glossary");
+html_header("SCUMM Reference Guide :: Glossary", '<link href="specs.css" rel="stylesheet" type="text/css">');
 sidebar_start(true);
 
 //display welcome table

Index: index.php
===================================================================
RCS file: /cvsroot/scummvm/web/docs/specs/index.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- index.php	14 Oct 2003 13:08:38 -0000	1.5
+++ index.php	2 Sep 2004 19:23:23 -0000	1.6
@@ -5,7 +5,7 @@
 require($file_root."/include/"."incl.php");
 
 // start of html
-html_header("The inComplete SCUMM Reference Guide");
+html_header("The inComplete SCUMM Reference Guide", '<link href="specs.css" rel="stylesheet" type="text/css">');
 sidebar_start(true);
 
 // add 

Index: introduction.php
===================================================================
RCS file: /cvsroot/scummvm/web/docs/specs/introduction.php,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- introduction.php	14 Oct 2003 13:08:38 -0000	1.8
+++ introduction.php	2 Sep 2004 19:23:23 -0000	1.9
@@ -5,7 +5,7 @@
 require($file_root."/include/"."incl.php");
 
 // start of html
-html_header("SCUMM Reference Guide :: Introduction");
+html_header("SCUMM Reference Guide :: Introduction", '<link href="specs.css" rel="stylesheet" type="text/css">');
 sidebar_start(true);
 
 //display welcome table

Index: scrp-v5.php
===================================================================
RCS file: /cvsroot/scummvm/web/docs/specs/scrp-v5.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- scrp-v5.php	14 Oct 2003 13:08:38 -0000	1.5
+++ scrp-v5.php	2 Sep 2004 19:23:24 -0000	1.6
@@ -5,7 +5,7 @@
 require($file_root."/include/"."incl.php");
 
 // start of html
-html_header("SCUMM Reference Guide :: V5 opcode list");
+html_header("SCUMM Reference Guide :: V5 opcode list", '<link href="specs.css" rel="stylesheet" type="text/css">');
 sidebar_start(true);
 
 //display welcome table 

Index: scrp-v6.php
===================================================================
RCS file: /cvsroot/scummvm/web/docs/specs/scrp-v6.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- scrp-v6.php	14 Oct 2003 13:08:38 -0000	1.6
+++ scrp-v6.php	2 Sep 2004 19:23:24 -0000	1.7
@@ -5,7 +5,7 @@
 require($file_root."/include/"."incl.php");
 
 // start of html
-html_header("SCUMM Reference Guide :: V6 opcode list");
+html_header("SCUMM Reference Guide :: V6 opcode list", '<link href="specs.css" rel="stylesheet" type="text/css">');
 sidebar_start(true);
 
 //display welcome table

Index: scrp.php
===================================================================
RCS file: /cvsroot/scummvm/web/docs/specs/scrp.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- scrp.php	14 Oct 2003 13:08:38 -0000	1.5
+++ scrp.php	2 Sep 2004 19:23:24 -0000	1.6
@@ -5,7 +5,7 @@
 require($file_root."/include/"."incl.php");
 
 // start of html
-html_header("SCUMM Reference Guide :: SCRP Scripts");
+html_header("SCUMM Reference Guide :: SCRP Scripts", '<link href="specs.css" rel="stylesheet" type="text/css">');
 sidebar_start(true);
 
 //display welcome table





More information about the Scummvm-git-logs mailing list