Commit ac905af1 authored by Titia de Castro's avatar Titia de Castro

added styles to announcement details page

parent bf3f54b7
...@@ -11,20 +11,22 @@ ...@@ -11,20 +11,22 @@
<h1 class="announcement-heading">{{ announcement.announcement_title }}</h1> <h1 class="announcement-heading">{{ announcement.announcement_title }}</h1>
<h2 class="announcement-subtitle">by {{ announcement.author.first_name }} {{ announcement.author.last_name }} dated {{ announcement.pub_date|date:'d/m/Y' }}</h2> <h2 class="announcement-subtitle">by {{ announcement.author.first_name }} {{ announcement.author.last_name }} dated {{ announcement.pub_date|date:'d/m/Y' }}</h2>
<p>
{{ announcement.announcement_body }}
</p>
{% load static %} {% load static %}
{% if announcement.id == 1 %} {% if announcement.id == 1 %}
<img src="{% static 'announcement1.jpg' %}" alt="Leni Robredo"> <img src="{% static 'announcement1.jpg' %}" class="announcement-image" alt="Leni Robredo">
{% elif announcement.id == 2 %} {% elif announcement.id == 2 %}
<img src="{% static 'announcement2.jpg' %}" alt="Lady Gaga in her meat dress"> <img src="{% static 'announcement2.jpg' %}" class="announcement-image" alt="Lady Gaga in her meat dress">
{% else %} {% else %}
<img src="{% static 'announcement3.jpg' %}" alt="Taylor Swift handing an award to Bruno Mars"> <img src="{% static 'announcement3.jpg' %}" class="announcement-image" alt="Taylor Swift handing an award to Bruno Mars">
{% endif %} {% endif %}
<p> <div class="announcement-reactions">
{{ announcement.announcement_body }} {% for reaction in announcement.reactions.all %}
</p> <p>{{ reaction.reaction_name }} Reactions: {{ reaction.getTally }}</p>
{% endfor %}
{% for reaction in announcement.reactions.all %} </div>
<p>{{ reaction.reaction_name }} Reactions: {{ reaction.getTally }}</p>
{% endfor %}
{% endblock %} {% endblock %}
\ No newline at end of file
...@@ -15,6 +15,44 @@ ...@@ -15,6 +15,44 @@
font-weight: 500; font-weight: 500;
} }
.announcement-subtitle {
text-align: center;
font-weight: 500;
font-size: 18px;
}
.announcement-list { .announcement-list {
margin-left: 24px; margin-left: 24px;
}
.announcement-image {
width: 20%;
}
.announcement-body {
display: flex;
flex-direction: column;
}
.announcement-reactions {
display: flex;
margin: 8px 0 0 0;
padding: 0;
}
.announcement-reactions p {
border: 1px solid #e6e6e6;
padding: 6px 12px;
}
.announcement-reactions p:nth-child(1) {
color: #118AB2;
}
.announcement-reactions p:nth-child(2) {
color: #FB898D;
}
.announcement-reactions p:last-child {
color: #B72A3F;
} }
\ No newline at end of file
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