summaryrefslogtreecommitdiffstats
path: root/inventory/static/design.css
diff options
context:
space:
mode:
Diffstat (limited to 'inventory/static/design.css')
-rw-r--r--inventory/static/design.css87
1 files changed, 87 insertions, 0 deletions
diff --git a/inventory/static/design.css b/inventory/static/design.css
new file mode 100644
index 0000000..b900217
--- /dev/null
+++ b/inventory/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;
+}