diff options
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> |