Design:
Entries are now floating around the sidebar if there is not enough space for the maxwidth.
This commit is contained in:
parent
b1e6cb9b65
commit
622aec5bad
@ -71,7 +71,7 @@ if newest_first:
|
|||||||
else:
|
else:
|
||||||
entries.sort()
|
entries.sort()
|
||||||
|
|
||||||
print ' <div class="sidebar">'
|
print ' <div class="screen"><div class="sidebar">'
|
||||||
|
|
||||||
if staticpages == "True":
|
if staticpages == "True":
|
||||||
staticpages = []
|
staticpages = []
|
||||||
@ -163,7 +163,7 @@ else: # Show regular entry
|
|||||||
if not month_display and not post_display and not allentries_display and entry_counter == entries_per_page: # Display pagelist
|
if not month_display and not post_display and not allentries_display and entry_counter == entries_per_page: # Display pagelist
|
||||||
print ' <div class="entry"><a href=?a=1>View all entries...</a></div>'
|
print ' <div class="entry"><a href=?a=1>View all entries...</a></div>'
|
||||||
|
|
||||||
print ' </div>'
|
print ' </div></div>'
|
||||||
print ' </body>'
|
print ' </body>'
|
||||||
print '</html>'
|
print '</html>'
|
||||||
|
|
||||||
|
@ -28,24 +28,28 @@ a.title:link, a.title:hover, a.title:active, a.title:visited {
|
|||||||
color: #FC3;
|
color: #FC3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content { /* Container for entrytitle and entry */
|
.screen {
|
||||||
position: absolute;
|
position: relative;
|
||||||
|
margin: auto;
|
||||||
top: 30px;
|
top: 30px;
|
||||||
left: 6px;
|
}
|
||||||
width: 600px;
|
|
||||||
|
.content { /* Container for entrytitle and entry */
|
||||||
|
margin-left: 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entrytitle {
|
.entrytitle {
|
||||||
font-family: Verdana;
|
font-family: Verdana;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 16px;
|
font-size: 14px;
|
||||||
color: #335599;
|
color: #335599;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.entrytitle:link, a.entrytitle:hover, a.entrytitle:visited, a.entrytitle:active {
|
a.entrytitle:link, a.entrytitle:hover, a.entrytitle:visited, a.entrytitle:active {
|
||||||
font-family: Verdana;
|
font-family: Verdana;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 16px;
|
font-size: 12px;
|
||||||
color: #335599;
|
color: #335599;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
@ -54,14 +58,15 @@ a.entrytitle:link, a.entrytitle:hover, a.entrytitle:visited, a.entrytitle:active
|
|||||||
font-family: Verdana;
|
font-family: Verdana;
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #FFF;
|
color: #FFF;
|
||||||
margin-left: 15px;
|
margin: 15px;
|
||||||
|
width: 600px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar {
|
.sidebar {
|
||||||
position: absolute;
|
margin-right: 15px;
|
||||||
right: 6px;
|
margin-left: 20px;
|
||||||
top: 30px;
|
margin-bottom: 20px;
|
||||||
background: #0F0;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebarentry {
|
.sidebarentry {
|
||||||
@ -69,6 +74,8 @@ a.entrytitle:link, a.entrytitle:hover, a.entrytitle:visited, a.entrytitle:active
|
|||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
color: #5577BB;
|
color: #5577BB;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
padding-left: 8px;
|
||||||
|
padding-right: 8px;
|
||||||
background: #111;
|
background: #111;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user