Advertisement
sierre

Comments Form: Style CSS

Jun 3rd, 2022 (edited)
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.77 KB | None | 0 0
  1. #commentcount .comment-list {
  2. list-style-type: none;
  3. margin-left: 0;
  4. }
  5.  
  6. #commentcount .comment-list .comment {
  7. background: #fafafa;
  8. padding: 15px;
  9. margin-bottom: 15px;
  10. font-weight:600;
  11. }
  12.  
  13. #commentcount .comment-list .comment.parent {
  14. background: unset;
  15. padding:0;
  16. }
  17.  
  18. #commentcount .comment-list .comment.parent .comment-body {
  19. background: #fafafa;
  20. padding: 15px;
  21. border:none;
  22. }
  23.  
  24. #commentcount .comment-list .comment .children {
  25. list-style-type: none;
  26. margin:15px 0 0 0;
  27. }
  28.  
  29. #commentcount .comment-list .comment .children .parent {
  30. padding:15px;
  31. }
  32.  
  33. #commentcount .comment-list .comment .children .comment {
  34. background: #efd0ca;
  35. margin-left:50px;
  36. }
  37.  
  38. #commentcount .comment-list .comment .children .comment-body {
  39. background: #efd0ca;
  40. padding: 0;
  41. border:none;
  42. margin:0;
  43. }
  44.  
  45. #commentcount .comment-list .comment .children .depth-4 {
  46. background: #fafafa;
  47. margin:0 0 10px 0;
  48. }
  49.  
  50. #commentcount .comment-list .comment .children .depth-4 .comment-body {
  51. background: #fafafa;  
  52. }
  53.  
  54. #commentcount .comment-list .comment-author {
  55. display: inline;
  56. }
  57.  
  58. #commentcount .comment-list .commentmetadata {
  59. display: inline;
  60. float: right;
  61. clear: both;
  62. }
  63.  
  64. #commentcount .comment-list .reply {
  65. border:none;
  66. margin:0;
  67. padding:0;
  68. }
  69.  
  70. #commentcount .comment-list #cancel-comment-reply-link {
  71. margin-left: 20px;
  72. font-weight: 300;
  73. border: 1px solid #e3dfdf;
  74. padding: 5px;
  75. color: #000;
  76. background: #eee;
  77. }
  78.  
  79. #commentform input {
  80. border: 1px solid #e3dfdf;
  81. }
  82.  
  83. #commentcount .comment-list .comment-respond {
  84. margin-left:50px;
  85. margin-top: 0;
  86. border-bottom: none;
  87. border-top: none;
  88. }
  89.  
  90. #commentcount .comment-list .comment-author cite,
  91. #commentcount .comment-list .reply a {
  92. text-transform:uppercase!important;
  93. font-weight:600!important;
  94. margin-right:5px;
  95. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement