From 33d97f6022410df9be21c8937959798116daaaff Mon Sep 17 00:00:00 2001 From: Aaron Lindsay Date: Fri, 15 Apr 2011 23:25:52 -0600 Subject: [PATCH] Fixed styling for Wordpress comments --- css/wordpress.css | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/css/wordpress.css b/css/wordpress.css index c6f5089..280abec 100644 --- a/css/wordpress.css +++ b/css/wordpress.css @@ -86,3 +86,29 @@ div.aligncenter { margin-left: 0.5em; } +/* Styling for comments */ +.commentlist { + list-style-type: none; +} +.commentlist ol, .commentlist ul{ + list-style-type: none; +} +.commentlist .comment { + padding: 1em; +} +.commentlist .thread-even { + background-color: #f5f5f5; + border: 2px solid #CCD; + border-radius: 5px; + -moz-border-radius: 5px; +} +.commentlist .comment .avatar { + float: right; +} +.commentlist .comment-author { + font-size: 1.2em; +} +.commentlist .comment-meta { + font-size: .8em; + border-bottom: 1px solid #ccd; +}