/**
 * Styles for forum-page of VIKO
 */


/**
 * In the table of topics the contents of cells describing the topic
 * (like nr of posts and author) are aligned center and have smaller
 * font.
 */
#forum td.first-post, #forum td.last-post {
    text-align: center;
    font-size: smaller;
}
#forum td.nr-of-posts {
    text-align: center;
}


/**
 * Differenciate posts of current user and posts of topic author
 * from the rest of the posts.
 *
 * Current user posts -> green
 * Topic author posts -> blue
 */
#forum tr.post-of-user {
    background-color: #b7dda6;
}
#forum tr.post-of-topic-author {
    background-color: #c0d5ea;
}
