Skip to content

Commit

Permalink
Misc. updates; forgot style.css.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkreps committed Mar 8, 2009
1 parent d5faa99 commit a8be013
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 3 deletions.
6 changes: 3 additions & 3 deletions www/quickstart.php
Expand Up @@ -56,7 +56,7 @@

<p>There are three methods for using the server:</p>

<p>1. Start from the command line</p>
<h4>1. Start from the command line</h4>

You must first build the jar file using ant, as described above, then do the following:
<pre>
Expand Down Expand Up @@ -86,7 +86,7 @@
...
</pre>

<p>2. Embedded Server</p>
<h4>2. Embedded Server</h4>

<p>You can instantiate the server directly in your code.</p>

Expand All @@ -96,7 +96,7 @@
server.start();
</pre>

<p>Deploy as a war</p>
<h4>3. Deploy as a war</h4>
<p>To do this build the war file using the <pre>ant war</pre> target and deploy via whatever mechanism your servlet container supports.</p>

<?php require "includes/footer.inc" ?>
72 changes: 72 additions & 0 deletions www/style.css
@@ -0,0 +1,72 @@
html, body{
font-family:arial,helvetica,sans-serif;
margin: 0px;
padding: 0px;
background-color: #fff;
color: #222;
line-height: 150%;
font-size: 11pt;
}
code, pre {
font: 1em/normal "courier new", courier, monospace;
}
h1, h2, h3, h4 {
color: darkred;
}

#header {
margin-top: 30px;
margin-left: 0px;
margin-bottom: 1px;
padding: 20px;
border-width: 0px;
background-color: darkred;
width: 80%;
min-width: 900px;
}
.title {
color: white;
font-size: 24pt;
margin: 2px;
}
.subtitle {
color: white;
font-size: 14pt;
font-style: italic;
margin: 2px;
}
.lsidebar {
float: left;
font-size: 12pt;
color: darkred;
width: 150px;
}
.lsidebar li {
list-style-type: none;
}
.lsidebar li a {
text-decoration: none;
color: darkred;
font-weight: bold;
}
.content {
width: 700px;
margin-left: 200px;
padding: 10px;
min-height: 800px;
}
.numeric {
text-align: right;
}
.data-table {
border: 1px solid darkgrey;
border-collapse: collapse;
}
.data-table td, .data-table th {
border: 1px solid #888;
padding: 2px;
}
.data-table th {
background-color: #ccc;
font-weight: bold;
}

0 comments on commit a8be013

Please sign in to comment.