Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nowells/django-pluggables
Browse files Browse the repository at this point in the history
  • Loading branch information
nowells committed Sep 7, 2009
2 parents 6c6a538 + 2de7858 commit 04946d1
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions examples/media/css/base.css
Expand Up @@ -58,6 +58,16 @@ h2 {
margin: 10px 0px 20px 0px;
}

h3 {
font-size: 22px;
color: #451B34;
}

h4 {
font-size: 18px;
color: #225C5C;
}

.body_center_container {
padding: 0px;
margin: 0px;
Expand All @@ -77,3 +87,32 @@ h2 {
padding-top:10px;
text-align: center;
}

label {
color: #225C5C;
}

textarea {
font-family: Georgia, Times, sans-serif;
font-size: 13px;
padding: 3px;
}

input[type="text"] {
font-family: Georgia, Times, sans-serif;
font-size: 13px;
width: 250px;
padding: 2px;
}

input[type="submit"] {
font-family: Georgia, Times, sans-serif;
font-size: 13px;
background-color: #3D3D4E;
color: white;

border: 0px;
margin: 5px 0px 5px 10px;
width: 100px;
height: 30px;
}
2 changes: 1 addition & 1 deletion examples/sillywalks/templates/sillywalks/index.html
Expand Up @@ -2,7 +2,7 @@

{% block body_content %}
{{ block.super }}
<div><a href="{% url sillywalks_create %}">Create a New Walk</a></div>
<div class=item_container><a href="{% url sillywalks_create %}">Create a New Walk</a></div>
{% for sillywalk in sillywalks %}
<div class=item_container>
<h2><a href="{% url sillywalks_view sillywalk.slug %}">{{ sillywalk.title }}</a></h2>
Expand Down

0 comments on commit 04946d1

Please sign in to comment.