summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Reichel <sre@ring0.de>2012-07-27 00:30:23 +0200
committerSebastian Reichel <sre@ring0.de>2012-07-27 00:30:23 +0200
commitea82760ed4208044f628823e467291e993784b4c (patch)
tree59daa294abdf2d94ccbf1cbc4d4a26f787eda7d8
parent8b7839acf9508b4ec701d454510958c1a390d5f7 (diff)
downloadktt-inventory-system-ea82760ed4208044f628823e467291e993784b4c.tar.bz2
add design.css for non admin views
-rw-r--r--static/design.css87
1 files changed, 87 insertions, 0 deletions
diff --git a/static/design.css b/static/design.css
new file mode 100644
index 0000000..b900217
--- /dev/null
+++ b/static/design.css
@@ -0,0 +1,87 @@
+.row1 {
+ background-color: #DDD;
+}
+
+.row2 {
+ background-color: #CCC;
+}
+
+#itemsearch input {
+ background: url(search.svg) no-repeat scroll 0px 0px;
+ background-size: contain;
+ background-color: white;
+ padding-left: 30px;
+ font-size: 20px;
+}
+
+#itemchooser input {
+ background: url(barcode.svg) no-repeat scroll 0px 0px;
+ background-size: contain;
+ background-color: white;
+ padding-left: 30px;
+ font-size: 20px;
+}
+
+html, body {
+ margin: 0px;
+ padding: 0px;
+ height: 100%;
+ background-color: #eee;
+}
+
+body {
+ height: 100%;
+}
+
+.header {
+ text-align: center;
+ height: 40px;
+ margin: 0px;
+ padding: 0px;
+}
+
+.header h1 {
+ padding: 0px;
+ margin: 0px;
+ font-size: 30px;
+}
+
+.body {
+ height: auto;
+ position: absolute;
+ bottom: 0; top: 0; left: 0; right: 0;
+ margin-top: 40px;
+ border-top: 1px solid black;
+}
+
+.menu {
+ float: left;
+ padding-right: 5px;
+}
+
+.menu ul {
+ padding-left: 5px;
+}
+
+.menu li {
+ list-style: none;
+ display: block;
+ float: none;
+ position: relative;
+}
+
+.menu li a {
+ color: blue;
+ text-decoration: none;
+}
+
+.content {
+ border-left: 1px solid black;
+ padding-left: 5px;
+ overflow: auto;
+ height: 100%;
+}
+
+.path {
+ list-style-type: square;
+}