Commit 77bdd156 authored by Charles Lim's avatar Charles Lim

Added stylings for forum.

parent 6d0d3258
.banner-text {
margin: 0;
font-family: Khula;
font-size: 26px;
}
.post-link {
font-family: Khula;
font-size: 22px;
font-weight: 500;
text-decoration: none;
color: black;
margin: 10px 0;
transition: 0.2s ease-in-out;
}
.post-link:hover {
margin-left: 20px;
}
\ No newline at end of file
p {
font-family: Khula;
margin: 10px 0;
font-size: 20px;
font-weight: 600;
}
\ No newline at end of file
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
{% block title %}Homepage{% endblock %} {% block title %}Homepage{% endblock %}
{% block styles %} {% block styles %}
<link rel="stylesheet" href="{% static 'forum/forum_detail.css' %}"> <link rel="stylesheet" href="{% static 'forum/post_detail.css' %}">
{% endblock %} {% endblock %}
{% block header %} {% block header %}
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<ul> <ul>
{% for reply in replies %} {% for reply in replies %}
<li> <li>
<p class="post-link"> <p>
{{reply.author.first_name}} {{reply.author.first_name}}
{{reply.author.last_name}}, {{reply.author.last_name}},
{{reply.pub_date | date:"d/m/o"}}: {{reply.pub_date | date:"d/m/o"}}:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment