remove underline from the urls.

This commit is contained in:
Aditi 2013-08-06 03:48:00 +05:30
parent b4188c485a
commit e70fcc0040
5 changed files with 20 additions and 9 deletions

View File

@ -295,7 +295,7 @@ text-align: center;
display: block;
float: none;
width: 90%;
max-width: 700px;
max-width: 800px;
min-height: 500px;
margin-left: auto;
margin-right: auto;
@ -308,22 +308,26 @@ text-align: center;
background-color: #86D4B1;
text-transform:capitalize;
text-decoration: none;
border-radius: 4px;
}
#border-radius: 4px;
}
.b_listing_title > a {
text-decoration: none;
}
.b_list_owner {
height: 100px;
width: 100%;
padding: 0em;
margin-right: auto;
background-color: #DDA0DD;
border-radius: 4px;
#border-radius: 4px;
text-transform: capitalize;
}
}
.b_list_des {
text-align:justify;
}
}
.edit_box {

View File

@ -22,6 +22,13 @@
{{blog.title}} Dashboard — {{ super() }}
{%- endblock title %}
{% block mediagoblin_head%}
<style type = "text/css">
td > a { text-decoration:none; font-weight: bold; }
</style>
{% endblock %}
{% block mediagoblin_content %}
<h1> {{blog.title}}</h1>
<p>

View File

@ -26,7 +26,7 @@
{% block mediagoblin_content %}
<form action="" method="POST">
<div class="blog_form_box_xl">
<h1>{% trans %}Create a Blog Post.{% endtrans %}</h1>
<h1>{% trans %}Create/Edit a Blog Post.{% endtrans %}</h1>
<b>Title</b>
<div class="blog_form_field_input input">
<h3>{{ form.title}}</h3>

View File

@ -27,7 +27,7 @@
<div>
{% for post in blog_posts[0:9] %}
<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>
<div class="b_list_des"> <p>{{ post.description|safe }} </p></div>
{% endfor %}
</div>
{% endblock %}

View File

@ -39,7 +39,7 @@
'mediagoblin.user_pages.user_home',
user=media.get_uploader.username),
username=media.get_uploader.username -%}
❖ Browsing media by <a href="{{user_url}}">{{username}}</a>
❖ Blog post by <a href="{{user_url}}">{{username}}</a>
{%- endtrans -%}
</p>
{% include "mediagoblin/utils/prev_next.html" %}