body
{
- font-family: "MuseoSlab-700";
+ font-family: "MuseoSlab-300";
+}
+
+time
+{
+ font: 12px/2em "MuseoSlab-300";
}
.half-padding
{
color: #FFF;
padding-top: 18px;
- font-size: 12px;
+ font-size: 14px;
cursor: pointer;
padding-bottom: 16px;
}
+#login_container a
+{
+ float: right;
+}
#login_container.clicked
{
.activity_details_action, .activity_details_action a
{
- font-family: "MuseoSlab-500";
- font-size: 20px;
+ font-family: "MuseoSlab-300";
+ font-size: 22px;
line-height: 125%;
}
text-decoration: underline;
}
-a.activity_target, a.activity_target:hover
+a.activity_target
{
- color: #9ccf00;
+ color: black;
text-decoration: underline;
}
+a.activity_target:hover
+{
+ color: #f1592a;
+}
+
.activity_details_context, .activity_details_context a
{
- font-family: "MuseoSlab-500";
- font-size: 14px;
+ font-size: 12px;
line-height: 2em;
}
.activity_details_callout_copy
{
line-height: 125%;
+ font: 14px/1.4em "Georga", Serif;
+ font-style: italic;
}
.activity_details_status
{
}
+
+hr.midrule
+{
+ border: dotted black;
+ border-width: 1px 0 0;
+ width: 60px;
+ margin: 2em auto;
+}
<a href="{{ note.get_absolute_url }}" class="activity_target">{{ note.name }}</a>
</div>
- <div class="activity_timestamp"> <!-- TODO: use the <time> tag -->
- {{ note.uploaded_at|date:"gA" }} // {{ note.uploaded_at|date:"D M d o" }}
- </div>
-
+ <time datetime="{{ note.uploaded_at }}">
+ {{ note.uploaded_at|date:"l M d o" }}
+ </time>
{% if note.tags.count > 0 %}
<div class="activity_details_context">
Tags:
{% for tag in note.tags.all %}
{{ tag.name }}
+ {% if not forloop.last %}, {% endif %}
{% endfor %}
</div>
{% endif %}
- <div class="activity_details_callout">
- <div class="row">
- <div class="one column">
- <img src="{{ STATIC_URL }}img/dashboard_activity_callout_icon_notebook.png" alt="dashboard_activity_callout_icon_notebook" width="44" height="44" />
- </div>
- <div class="eleven columns activity_details_callout_copy">
-
- {% if note.text %}
- {{ note.text|slice:":500" }}…
- {% else %}
- {{ note.description }}
- {% endif %}
- </div>
- </div>
+ <div class="activity_details_callout_copy">
+ {{ note.text|slice:":500" }} …
</div>
</div><!-- /notes_result -->
</div><!-- /notes_result_container -->
+
+ <hr class=midrule>
+
{% endfor %}
</div>
</div>