aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mediagoblin/static/css/base.css3
-rw-r--r--mediagoblin/templates/mediagoblin/blog/blog_post_listing.html6
2 files changed, 5 insertions, 4 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css
index 3a176408..8c73b7de 100644
--- a/mediagoblin/static/css/base.css
+++ b/mediagoblin/static/css/base.css
@@ -307,6 +307,7 @@ text-align: center;
padding: 0px;
background-color: #86D4B1;
text-transform:capitalize;
+ text-decoration: none;
border-radius: 4px;
}
@@ -317,7 +318,7 @@ text-align: center;
margin-right: auto;
background-color: #DDA0DD;
border-radius: 4px;
-
+ text-transform: capitalize;
}
.b_list_des {
diff --git a/mediagoblin/templates/mediagoblin/blog/blog_post_listing.html b/mediagoblin/templates/mediagoblin/blog/blog_post_listing.html
index a1c35393..b001395d 100644
--- a/mediagoblin/templates/mediagoblin/blog/blog_post_listing.html
+++ b/mediagoblin/templates/mediagoblin/blog/blog_post_listing.html
@@ -23,11 +23,11 @@
{% trans %}{{ blog_owner }} 's Blog{% endtrans %} — {{ super() }}
{%- endblock %}
{% block mediagoblin_content %}
- <div class="b_list_owner"> <h1> {{ blog_owner }} 's Blog </h1></div>
+ <div class="b_list_owner"> <h1><font color="black"> {{ blog_owner }} 's Blog</font></h1></div>
<div>
{% for post in blog_posts[0:9] %}
- <div class="b_listing_title"><a href="{{ post.url_for_self(request.urlgen) }}"><h2>{{ post.title }}</h2></a></div>
- <div class="b_list_des"> <p>{{ post.description|safe }} </p></div>
+ <div class="b_listing_title"><a href="{{ post.url_for_self(request.urlgen) }}"><h2><font color="black">{{ post.title }}</font></h2></a></div>
+ <div class="b_list_des"> <p>{{ post.description|safe }} </font></p></div>
{% endfor %}
</div>
{% endblock %}