diff options
author | Jef van Schendel <jefvanschendel@gmail.com> | 2011-05-28 20:43:57 +0200 |
---|---|---|
committer | Jef van Schendel <jefvanschendel@gmail.com> | 2011-05-28 20:43:57 +0200 |
commit | 9ef7c0f7376ef18e9703722b6730021c95bbdb33 (patch) | |
tree | 63c9679f5f5dc65eaa874115c279f5e46af50b61 | |
parent | 491b9109f368f06aa4032cba14518638b6b7cb5c (diff) | |
download | mediagoblin-9ef7c0f7376ef18e9703722b6730021c95bbdb33.tar.lz mediagoblin-9ef7c0f7376ef18e9703722b6730021c95bbdb33.tar.xz mediagoblin-9ef7c0f7376ef18e9703722b6730021c95bbdb33.zip |
Fixed form header
-rw-r--r-- | mediagoblin/static/css/base.css | 8 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/auth/register.html | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index 48331554..26bf8bd9 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -23,6 +23,8 @@ h1 { margin-top:40px; } +28px + a { color: #86D4B1; } @@ -92,11 +94,15 @@ label { margin-left:auto; margin-right:auto; background-color:#393939; - padding:50px 83px 83px; + padding:0px 83px 83px; border-top:5px solid #d49086; font-size:18px; } +.form_box h1 { + font-size:28px; +} + .form_field_input input { width:300px; font-size:18px; diff --git a/mediagoblin/templates/mediagoblin/auth/register.html b/mediagoblin/templates/mediagoblin/auth/register.html index 2ebe99ec..730d684d 100644 --- a/mediagoblin/templates/mediagoblin/auth/register.html +++ b/mediagoblin/templates/mediagoblin/auth/register.html @@ -20,11 +20,11 @@ {% import "/mediagoblin/utils/wtforms.html" as wtforms_util %} {% block mediagoblin_content %} - <h1>Create an account!</h1> <form action="{{ request.urlgen('mediagoblin.auth.register') }}" method="POST" enctype="multipart/form-data"> <div class="register_box form_box"> + <h1>Create an account!</h1> {{ wtforms_util.render_divs(register_form) }} <div class="form_submit_buttons"> <input type="submit" value="submit" class="button" /> |