summaryrefslogtreecommitdiffstats
path: root/WebContent/stylesheets
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-11-22 15:07:27 +0100
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-11-23 15:57:23 +0100
commitdf8c8d8eaa3fd74b2f6a76341611555ee6d8834d (patch)
tree40e93e3b3674f32d4870486eb9f5870d9fe45b2b /WebContent/stylesheets
downloadJCatalog-df8c8d8eaa3fd74b2f6a76341611555ee6d8834d.tar.gz
JCatalog-df8c8d8eaa3fd74b2f6a76341611555ee6d8834d.zip
Add initial files
Diffstat (limited to 'WebContent/stylesheets')
-rw-r--r--WebContent/stylesheets/form.css16
-rw-r--r--WebContent/stylesheets/navigation.css25
-rw-r--r--WebContent/stylesheets/twocolumn.css53
3 files changed, 94 insertions, 0 deletions
diff --git a/WebContent/stylesheets/form.css b/WebContent/stylesheets/form.css
new file mode 100644
index 0000000..8667f07
--- /dev/null
+++ b/WebContent/stylesheets/form.css
@@ -0,0 +1,16 @@
+div.row {
+ clear: both;
+ padding-top: 10px;
+}
+
+div.row label {
+ float: left;
+ width: 100px;
+ text-align: right;
+}
+
+div.row span.formw {
+ float: right;
+ width: 335px;
+ text-align: left;
+}
diff --git a/WebContent/stylesheets/navigation.css b/WebContent/stylesheets/navigation.css
new file mode 100644
index 0000000..1ec153b
--- /dev/null
+++ b/WebContent/stylesheets/navigation.css
@@ -0,0 +1,25 @@
+#navcontainer ul
+{
+margin: 0;
+padding: 0;
+list-style-type: none;
+}
+
+#navcontainer li { margin: 0 0 .2em 0; }
+
+#navcontainer a
+{
+display: block;
+color: black;
+background-color: #ddd;
+width: 6em;
+padding: .2em .8em;
+text-decoration: none;
+}
+
+#navcontainer a:hover
+{
+background-color: #bbb;
+color: #FFF;
+}
+
diff --git a/WebContent/stylesheets/twocolumn.css b/WebContent/stylesheets/twocolumn.css
new file mode 100644
index 0000000..e5b8e84
--- /dev/null
+++ b/WebContent/stylesheets/twocolumn.css
@@ -0,0 +1,53 @@
+@CHARSET "ISO-8859-1";
+
+#container
+{
+width: 90%;
+margin: 10px auto;
+background-color: #fff;
+color: #333;
+border: 1px solid gray;
+line-height: 130%;
+}
+
+#top
+{
+padding: .5em;
+background-color: #ddd;
+border-bottom: 1px solid gray;
+}
+
+#top h1
+{
+padding: 0;
+margin: 0;
+}
+
+#leftnav
+{
+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;
+}
+
+#leftnav p { margin: 0 0 1em 0; }
+#content h2 { margin: 0 0 .5em 0; }