From ea82760ed4208044f628823e467291e993784b4c Mon Sep 17 00:00:00 2001 From: Sebastian Reichel Date: Fri, 27 Jul 2012 00:30:23 +0200 Subject: add design.css for non admin views --- static/design.css | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 static/design.css 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; +} -- cgit v1.2.3