summaryrefslogtreecommitdiff
path: root/www/css
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2018-08-01 21:16:57 +0000
committerIan C <ianc@noddybox.co.uk>2018-08-01 21:16:57 +0000
commit6fd82c0ff0b8ab230cd2bbf8efa0d4bbc088e3e8 (patch)
treefafba874216ae8137ae115c32e6d6ba114324355 /www/css
parent17983d86e1b905f8ae4ca46d0b59939bb7eed957 (diff)
Made header a fixed div.
Diffstat (limited to 'www/css')
-rw-r--r--www/css/main.css24
1 files changed, 17 insertions, 7 deletions
diff --git a/www/css/main.css b/www/css/main.css
index e1420c6..1bc30bc 100644
--- a/www/css/main.css
+++ b/www/css/main.css
@@ -1,7 +1,23 @@
body
{
font-family: sans-serif;
- font-size: large;
+}
+
+div.header
+{
+ position: fixed;
+ top: 0;
+ width: 100%;
+ background: white;
+ height: 150px;
+}
+
+table.datatable
+{
+ margin-top: 150px;
+ width: 100%;
+ max-width: 1000px;
+ z-index: -10;
}
.smalltext
@@ -69,11 +85,5 @@ td.commands
max-width: 100px;
}
-table.datatable
-{
- width: 100%;
- max-width: 1000px;
-}
-
/* vim: sw=4 ts=4
*/