e96ea7f073
* Check if entries/title.comments exists and switch from 'no comments' to 'comments (count) * Changed font of commentlink to Helvetica 10
81 lines
1.5 KiB
CSS
81 lines
1.5 KiB
CSS
.html, body {
|
|
background: #000;
|
|
color: #FFF;
|
|
margin: 0px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
img {
|
|
border: 0;
|
|
}
|
|
|
|
a:link, a:active, a:visited, a:hover {
|
|
font-family: Verdana;
|
|
font-size: 12px;
|
|
color: #FC3;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.title:link, a.title:hover, a.title:active, a.title:visited {
|
|
position: absolute;
|
|
text-align: center;
|
|
width: 100%;
|
|
height: 25px;
|
|
background-image: url(blogthon_img/title_background.png);
|
|
font-family: Verdana;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
color: #FC3;
|
|
}
|
|
|
|
.content { /* Container for entrytitle and entry */
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 6px;
|
|
width: 600px;
|
|
}
|
|
|
|
.entrytitle {
|
|
font-family: Verdana;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
color: #335599;
|
|
text-decoration: underline;
|
|
}
|
|
a.entrytitle:link, a.entrytitle:hover, a.entrytitle:visited, a.entrytitle:active {
|
|
font-family: Verdana;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
color: #335599;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.entry {
|
|
font-family: Verdana;
|
|
font-size: 12px;
|
|
color: #FFF;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.sidebar {
|
|
position: absolute;
|
|
right: 6px;
|
|
top: 30px;
|
|
background: #0F0;
|
|
}
|
|
|
|
.sidebarentry {
|
|
font-family: Verdana;
|
|
font-size: 12px;
|
|
color: #5577BB;
|
|
text-align: center;
|
|
background: #111;
|
|
}
|
|
|
|
a.comment:link, a.comment:hover, a.comment:active, a.comment:visited {
|
|
font-family: Helvetica;
|
|
font-size: 10px;
|
|
}
|
|
|
|
# vim: set tw=0 ts=4:
|