diff options
author | floam <floam@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-02 04:56:06 +0000 |
---|---|---|
committer | floam <floam@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-02 04:56:06 +0000 |
commit | 121e96f4103de8bd466289fd572670355a6b2c3f (patch) | |
tree | eb249e6801a60cda244388130a44e02649a0804d /web | |
parent | b9532661e99282b5ad8a7207fee2a911187fd628 (diff) | |
download | ioquake3-aero-121e96f4103de8bd466289fd572670355a6b2c3f.tar.gz ioquake3-aero-121e96f4103de8bd466289fd572670355a6b2c3f.zip |
* Moved things around, added footer.
* CSS now doesn't give warnings in W3C's validator.
git-svn-id: svn://svn.icculus.org/quake3/trunk@213 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'web')
-rw-r--r-- | web/images/quake3.jpg (renamed from web/quake3.jpg) | bin | 28458 -> 28458 bytes | |||
-rw-r--r-- | web/images/w3ccss.gif | bin | 0 -> 704 bytes | |||
-rw-r--r-- | web/images/w3cxhtml.gif | bin | 0 -> 897 bytes | |||
-rw-r--r-- | web/index.html | 18 | ||||
-rw-r--r-- | web/ioq3.css | 27 |
5 files changed, 38 insertions, 7 deletions
diff --git a/web/quake3.jpg b/web/images/quake3.jpg Binary files differindex 9ab814a..9ab814a 100644 --- a/web/quake3.jpg +++ b/web/images/quake3.jpg diff --git a/web/images/w3ccss.gif b/web/images/w3ccss.gif Binary files differnew file mode 100644 index 0000000..f6522d3 --- /dev/null +++ b/web/images/w3ccss.gif diff --git a/web/images/w3cxhtml.gif b/web/images/w3cxhtml.gif Binary files differnew file mode 100644 index 0000000..d53d7b4 --- /dev/null +++ b/web/images/w3cxhtml.gif diff --git a/web/index.html b/web/index.html index f57dff2..020e735 100644 --- a/web/index.html +++ b/web/index.html @@ -17,7 +17,7 @@ pie-rat, or borrow Quake 3/Team Arena data. Do not file bugs or show your face in the <acronym title="Internet Relay Chat">IRC</acronym> channel if you've acquired the game data illegally!</p> - <p><img src="quake3.jpg" alt="Quake3" /></p> + <p><img src="images/quake3.jpg" alt="Quake3 Screenshot" class="right"/></p> <h2>What works:</h2> @@ -25,7 +25,7 @@ <li>Everything.</li> <li>x86_64 support (including movies, native and interpreted vm mods!)</li> <li>PowerPC, we think.</li> - <li><a href="http://www.libsdl.org/" title="Simple DirectMedia Layer">SDL</a> input/joysticks/window handling/etc</li> + <li><a href="http://www.libsdl.org/" title="Simple DirectMedia Layer">SDL</a> input, joysticks, window handling, etc.</li> <li><a href="http://www.libsdl.org/" title="Simple DirectMedia Layer">SDL</a> sound, so <a href="http://alsa-project.org" title="Advanced Linux Sound Architecture">ALSA</a> should work now.</li> <li>Win32 compiles and runs fine with current <acronym title="Subversion">SVN</acronym>.</li> <li>mingw support.</li> @@ -49,7 +49,7 @@ mods that use Quake 3 maps/textures/models/etc.)</li> <li>Security fixes.</li> <li>Bug fixes.</li> - <li>New architectures (x86-64/AmigaOS/BeOS/DOS/PSP, whatever.)</li> + <li>New architectures (x86-64, AmigaOS, BeOS, DOS, PSP, whatever.)</li> <li><a href="http://www.openal.org/">OpenAL</a> (for better support of <a href="http://alsa-project.org" title="Advanced Linux Sound Architecture">ALSA</a> and such) at some point</li> @@ -104,5 +104,15 @@ Do NOT contact us for copies of the game. Otherwise, if you aren't sending us patches, or good feedback, don't contact us at all. </p> - </body> + <div id="footer"> + <a href="http://jigsaw.w3.org/css-validator/validator?uri=http://icculus.org/quake3/ioq3.css"> + <img src="images/w3ccss.gif" alt="Valid CSS" /> + </a> + <a href="http://validator.w3.org/check?uri=http://icculus.org/quake3"> + <img src="images/w3cxhtml.gif" alt="Valid XHTML 1.0 Strict"/> + </a> + <br /> + Website Design by <a href="http://floam.sh.nu" title="floam">Aaron Gyes</a> + </div> +</body> </html> diff --git a/web/ioq3.css b/web/ioq3.css index d22a31c..a830d44 100644 --- a/web/ioq3.css +++ b/web/ioq3.css @@ -1,30 +1,50 @@ body, html { font-family: "Trebuchet Sans MS", "Bitstream Vera Sans", sans-serif; font-size: 10pt; + color: black; background-color: #888; } -:link, :visited {
+#footer { + color: #aaa; + background-color: transparent; + border-top: .1em dashed #222; + padding-top: .3em; + font-size: .8em; +} + +#footer a { + color: #aaa; + background-color: transparent; +} + +:link, :visited { color: black; + background-color: transparent; font-weight: bold; text-decoration: underline;
}
-:link:hover, :visited:hover { +h1, :link:hover, :visited:hover { color: maroon; + background-color: transparent; } h1 { - color: maroon; font-size: 1.75em; } h2 { color: #440000; + background-color: transparent; font-size: 1.25em; } img { + border: 0; +} + +.right { float: right; } @@ -33,6 +53,7 @@ img { } .angryzakk { + color: black; background-color: #aaa; font-style: italic; font-size: 1.2em; |