remove news header border. fix Post title wrapping.

workspace
Brendan Howell 4 years ago
parent 73a3400110
commit 265c9c516e

@ -12,22 +12,16 @@
content: counter(page);
font-size: 11px;
font-family: "Cormorant SC";
border-top: 1px solid black;
border-bottom: 1px solid black;
}
@top-center {
content: "Yesterday's Tomorrows";
font-size: 11px;
font-family: "Cormorant SC";
border-top: 1px solid black;
border-bottom: 1px solid black;
}
@top-right {
content: '${date}';
font-size: 11px;
font-family: "Cormorant SC";
border-top: 1px solid black;
border-bottom: 1px solid black;
}
}
@page :first {
@ -201,7 +195,7 @@
<div class="weatherday">
<h6>Today</h6>
% for period in forecast:
% if (daycount <= 4) and (period["day"] != curr_day):
% if (daycount <= 3) and (period["day"] != curr_day):
<%
daycount += 1
curr_day = period["day"]
@ -210,7 +204,7 @@
<div class="weatherday">
<h6>${period["day"]}</h6>
% endif
% if daycount <= 3:
% if daycount <= 4:
<div class="weatherperiod">
<img src="file://${period['symbol']}" />
<p class="weathertime">${period["period"]}</p>
@ -221,7 +215,7 @@
</div>
</div>
% if len(inbox) > 0:
<div id="email">
<div id="email" class="clearfloats">
<h2>Post</h2>
% for msg in inbox:
<div class="mail">

Loading…
Cancel
Save