60 lines
631 B
CSS
60 lines
631 B
CSS
a:link {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
a:visited {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
a:hover {
|
|
color: orange;
|
|
text-decoration: none;
|
|
}
|
|
.blogtitle {
|
|
color: coral;
|
|
text-decoration:underline;
|
|
}
|
|
/*
|
|
.shortpost {
|
|
|
|
}
|
|
.shortpostheader {
|
|
|
|
}
|
|
*/
|
|
.shortposttitle {
|
|
font-weight: bold;
|
|
}
|
|
.shortpostdate {
|
|
font-style: italic;
|
|
font-size: smaller;
|
|
font-weight: lighter;
|
|
}
|
|
/*
|
|
.shortpostcontent {
|
|
}
|
|
*/
|
|
|
|
/*
|
|
.post {
|
|
|
|
}
|
|
.postheader {
|
|
|
|
}
|
|
*/
|
|
.posttitle {
|
|
font-weight: bold;
|
|
}
|
|
.postdate {
|
|
font-style: italic;
|
|
font-size: smaller;
|
|
font-weight: lighter;
|
|
}
|
|
|
|
/*
|
|
.postcontent {
|
|
|
|
}
|
|
*/
|