41 lines
628 B
CSS
41 lines
628 B
CSS
.singleComment {
|
|
border: solid 1px #ddd;
|
|
border-radius: 3px;
|
|
padding: 8px;
|
|
margin-bottom: 5px;
|
|
background-color: rgba(255,255,255, 0.8);
|
|
}
|
|
|
|
.singleComment .info {
|
|
background-color: #eee;
|
|
color: #777;
|
|
height: 50px;
|
|
padding: 15px 10px 15px 60px;
|
|
|
|
}
|
|
|
|
.singleComment .info .anchor{
|
|
margin-right: 10px;
|
|
float: right;
|
|
}
|
|
|
|
.singleComment .avatar {
|
|
width: 50px;
|
|
height: 50px;
|
|
float: left;
|
|
}
|
|
|
|
div.commentForm {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
div.commentForm .buttons {
|
|
text-align: center;
|
|
}
|
|
|
|
div.deny {
|
|
padding: 10px 20px;
|
|
border-radius: 3px;
|
|
border: solid 1px #ea4444;
|
|
}
|