From 4accec50b94f0bb8e26054d5e5de01863e137a53 Mon Sep 17 00:00:00 2001
From: "Glenn Y. Rolland" <glenn.rolland@bewan.com>
Date: Tue, 9 Nov 2010 11:33:29 +0100
Subject: [PATCH] index style: Use a separate stylesheet.

---
 index.html | 30 +++++-------------------------
 style.css  | 33 +++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+), 25 deletions(-)
 create mode 100644 style.css

diff --git a/index.html b/index.html
index 668e4b7..8298890 100644
--- a/index.html
+++ b/index.html
@@ -7,30 +7,7 @@
 
 	<title>glenux/xtm-utils @ GitHub</title>
 	
-	<style type="text/css">
-		body {
-		    margin-top: 1.0em;
-		    background-color: white;
-		    font-family: "Helvetica,Arial,FreeSans";
-		    color: black;
-    }
-    #container {
-      margin: 0 auto;
-      width: 700px;
-    }
-		h1 { font-size: 3.8em; color: #888; margin-bottom: 3px; }
-		h1 .small { font-size: 0.4em; }
-		h1 a { text-decoration: none }
-		h2 { font-size: 1.5em; color: #888; }
-    h3 { text-align: center; color: #888; }
-    a { color: #888; }
-    .description { font-size: 1.2em; margin-bottom: 30px; margin-top: 30px; font-style: italic;}
-    .download { float: right; }
-    pre { background: #000; color: #fff; padding: 15px;}
-    hr { border: 0; width: 80%; border-bottom: 1px solid #aaa}
-    .footer { text-align:center; padding-top:30px; font-style: italic; }
-	</style>
-	
+	<link rel="stylesheet" type="text/css" href="style.css" />
 </head>
 
 <body>
@@ -49,9 +26,12 @@
       <span class="small">by <a href="http://github.com/glenux">glenux</a></span></h1>
 
     <div class="description">
-    xtm-utils is a set of tools for joining or splitting files using the XTM format. It is an open-source replacement for the the closed-source binary provided by the XtremSplit website.
+	xtm-utils is a set of tools for joining or splitting files using the XTM format.
     </div>
 
+    <p>It is an open-source replacement for the the closed-source binary provided by the XtremSplit website.</p>
+    </p>
+
     <h2>License</h2>
 <p>GNU LGPL-3</p>
 <h2>Authors</h2>
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..296c035
--- /dev/null
+++ b/style.css
@@ -0,0 +1,33 @@
+
+body {
+    margin-top: 1.0em;
+    background-color: white;
+    font-family: "Helvetica,Arial,FreeSans";
+    color: black;
+}
+#container {
+    margin: 0 auto;
+    width: 700px;
+}
+
+h1 { font-size: 3.8em; color: #888; margin-bottom: 3px; }
+
+h1 .small { font-size: 0.4em; }
+
+h1 a { text-decoration: none }
+
+h2 { font-size: 1.5em; color: #888; }
+
+h3 { text-align: center; color: #888; }
+
+a { color: #888; }
+
+.description { font-size: 1.2em; margin-bottom: 30px; margin-top: 30px; font-style: italic;}
+
+.download { float: right; }
+
+pre { background: #000; color: #fff; padding: 15px;}
+
+hr { border: 0; width: 80%; border-bottom: 1px solid #aaa}
+
+.footer { text-align:center; padding-top:30px; font-style: italic; }