diff options
author | Jef van Schendel <jefvanschendel@gmail.com> | 2011-05-28 18:32:43 +0200 |
---|---|---|
committer | Jef van Schendel <jefvanschendel@gmail.com> | 2011-05-28 18:32:43 +0200 |
commit | 491b9109f368f06aa4032cba14518638b6b7cb5c (patch) | |
tree | b6515c6411b111d4caf6a91689abd2858afa6273 | |
parent | ead3ebd6b77fd6f7716ebfffee431b58ebb6388e (diff) | |
download | mediagoblin-491b9109f368f06aa4032cba14518638b6b7cb5c.tar.lz mediagoblin-491b9109f368f06aa4032cba14518638b6b7cb5c.tar.xz mediagoblin-491b9109f368f06aa4032cba14518638b6b7cb5c.zip |
Styled forms
-rw-r--r-- | mediagoblin/static/css/base.css | 25 | ||||
-rw-r--r-- | mediagoblin/templates/mediagoblin/auth/register.html | 2 |
2 files changed, 26 insertions, 1 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css index c7d3d4ad..48331554 100644 --- a/mediagoblin/static/css/base.css +++ b/mediagoblin/static/css/base.css @@ -84,3 +84,28 @@ label { left:0px; margin-top:-20px; } + +/* forms */ + +.form_box { + width:300px; + margin-left:auto; + margin-right:auto; + background-color:#393939; + padding:50px 83px 83px; + border-top:5px solid #d49086; + font-size:18px; +} + +.form_field_input input { + width:300px; + font-size:18px; +} + +.form_field_box { + margin-bottom:20px; +} + +.form_field_label { + margin-bottom:4px; +} diff --git a/mediagoblin/templates/mediagoblin/auth/register.html b/mediagoblin/templates/mediagoblin/auth/register.html index 31c3d23e..2ebe99ec 100644 --- a/mediagoblin/templates/mediagoblin/auth/register.html +++ b/mediagoblin/templates/mediagoblin/auth/register.html @@ -20,7 +20,7 @@ {% import "/mediagoblin/utils/wtforms.html" as wtforms_util %} {% block mediagoblin_content %} - <h2>Create an account!</h2> + <h1>Create an account!</h1> <form action="{{ request.urlgen('mediagoblin.auth.register') }}" method="POST" enctype="multipart/form-data"> |