/* 
    Document   : comments.css
    Created on : 11 груд 2011, 19:41:11
    Author     : segoddnja@gmail.com
*/
root { 
    display: block;
}
.comments-list{
    list-style-type: none;
    padding-left: 0;
}
.comments-list .admin-panel{
    border: solid 1px grey;
    padding: 5px;
}
.comments-list .comments-list{
    padding-left: 20px;
}
.comments-list li{
    margin: 0 0 15px 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    /*border-radius: 5px;*/
}
.comments-list li:nth-child(2n){
    background: #efefef;
    border: 1px solid #aaa;
}
.comments-list li .comment-header{
    margin-bottom: 10px;
}
.comments-list li .comment-header .author {
    font-weight: bold;
    margin-right: 5px;
}
.comments-list li .comment-header .date {
    color: #777;
}

