diff options
author | bnewbold <bnewbold@robocracy.org> | 2016-10-28 00:07:12 -0700 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2016-10-28 00:07:12 -0700 |
commit | 360a3f82c02fdbe2c2d317e01f01fc69adbf4ab5 (patch) | |
tree | 6d87639cef6b31ec069d259d9a119e14e7f241a7 /webface/templates/base.html | |
parent | adf41d8d3dcbc21806475bc652d560c7483fbcfb (diff) | |
download | modelthing-360a3f82c02fdbe2c2d317e01f01fc69adbf4ab5.tar.gz modelthing-360a3f82c02fdbe2c2d317e01f01fc69adbf4ab5.zip |
webface front page
Diffstat (limited to 'webface/templates/base.html')
-rw-r--r-- | webface/templates/base.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/webface/templates/base.html b/webface/templates/base.html index 59060ed..db49004 100644 --- a/webface/templates/base.html +++ b/webface/templates/base.html @@ -3,10 +3,17 @@ <head> <meta charset="UTF-8"> <title>{{#block title}}modelthing{{/block}}</title> +<style> +html, body, div{ margin: 0; padding: 0; } +body { font-family: monospace; font-size: larger; line-height: 1.3; } +#content { max-width: 700px; margin: 0 auto; margin-top: 4em; } +</style> </head> <body> +<div id="content"> {{~#block content}}{{/block~}} +</div><!-- content --> </body> </html> |