diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-04 18:48:00 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-04 18:48:00 +0000 |
commit | 0dcff763268e19302a97b14018e972fceeab37c3 (patch) | |
tree | b033ec073a6d7cf75b43b2c93f07f92b36d4f5ef | |
parent | 7862547b2ebd4c830b8c155e6f09cab1f41ce48d (diff) |
initial stylesheet
git-svn-id: file:///var/lib/svn/phpfspot/trunk@4 fa6a889d-dae6-447d-9e79-4ba9a3039384
-rw-r--r-- | stylesheet.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/stylesheet.css b/stylesheet.css new file mode 100644 index 0000000..52d045c --- /dev/null +++ b/stylesheet.css @@ -0,0 +1,30 @@ +body {
+ background-color: rgb(255,255,255);
+ color: rgb(26,151,15);
+ font-family: Arial, Helvetica, sans-serif;
+ border-left-width: px; border-right-width: px; border-top-width: px; border-bottom-width: px;
+ border-left-style: none; border-right-style: none; border-top-style: none; border-bottom-style: none;
+ border-color: rgb(15,15,15);
+}
+
+#content {
+ background-color: rgb(255,255,255);
+ color: rgb(0,0,0);
+ border-left-width: px; border-right-width: px; border-top-width: px; border-bottom-width: px;
+ border-left-style: none; border-right-style: none; border-top-style: none; border-bottom-style: none;
+ padding: 2px;
+ border-color: rgb(0,0,0);
+ margin-left: 25%; width: auto;
+}
+
+#tags {
+ background-color: rgb(255,255,255);
+ color: rgb(4,151,15);
+ font-family: Trebuchet MS, sans-serif;
+ font-style: normal;
+ border-left-width: px; border-right-width: px; border-top-width: px; border-bottom-width: px;
+ border-left-style: none; border-right-style: none; border-top-style: none; border-bottom-style: none;
+ border-color: rgb(0,0,0);
+ padding-top: 20px;
+ width: 25%; position: relative; top: 0; left: 0; float: left;
+}
|