summaryrefslogtreecommitdiffstats
path: root/styles
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-05-05 19:34:39 +0200
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-05-05 19:34:39 +0200
commit705c4cb50eea66585cc95c7314001fce9dd197cd (patch)
tree4a448f4e30b117e12306b643121f49da15e6376b /styles
downloadCatalog-705c4cb50eea66585cc95c7314001fce9dd197cd.tar.gz
Catalog-705c4cb50eea66585cc95c7314001fce9dd197cd.zip
Initial commit
Diffstat (limited to 'styles')
-rw-r--r--styles/style.css86
1 files changed, 86 insertions, 0 deletions
diff --git a/styles/style.css b/styles/style.css
new file mode 100644
index 0000000..ef2ecf2
--- /dev/null
+++ b/styles/style.css
@@ -0,0 +1,86 @@
+@CHARSET "UTF-8";
+
+u {
+ text-decoration: underline;
+}
+
+form {
+ float: left;
+ width: 450px;
+ background-color: #ccc;
+ border: 1px dotted #333;
+ padding: 5px;
+ margin: 5px auto;
+}
+
+form h1 {
+ text-align: center;
+}
+
+div.row {
+ clear: both;
+ padding-top: 5px;
+}
+
+div.row label {
+ float: left;
+ width: 200px;
+ text-align: right;
+}
+
+div.row .formw {
+ float: right;
+ width: 235px;
+ text-align: left;
+}
+
+div.spacer {
+ clear: both;
+}
+
+body {
+ width: 90%;
+ margin: 10px auto;
+ background-color: #fff;
+ color: #333;
+ border: 1px solid gray;
+ line-height: 130%;
+}
+
+header {
+ padding: .5em;
+ background-color: #ddd;
+ border-bottom: 1px solid gray;
+}
+
+header h1 {
+ padding: 0;
+ margin: 0;
+}
+
+nav {
+ float: left;
+ width: 160px;
+ margin: 0;
+ padding: 1em;
+}
+
+#content {
+ margin-left: 200px;
+ border-left: 1px solid gray;
+ padding: 1em;
+ max-width: 36em;
+}
+
+footer {
+ clear: both;
+ margin: 0;
+ padding: .5em;
+ color: #333;
+ background-color: #ddd;
+ border-top: 1px solid gray;
+}
+
+#content h2 {
+ margin: 0 0 .5em 0;
+} \ No newline at end of file