31 lines
425 B
HTML
31 lines
425 B
HTML
<section id="replies"></section>
|
|
|
|
<style>
|
|
section#replies {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
.reply-block {
|
|
display: block;
|
|
margin: 0 0 1em;
|
|
padding: 1em;
|
|
border-left: 3px solid #ccc;
|
|
}
|
|
|
|
.reply-photo {
|
|
width: 2em;
|
|
height: 2em;
|
|
border-radius: 50%;
|
|
float: left;
|
|
}
|
|
|
|
.reply-name,
|
|
.reply-date {
|
|
margin-left: 0.5em;
|
|
float: left;
|
|
}
|
|
|
|
.reply-name {
|
|
font-weight: bold;
|
|
}
|
|
</style>
|