contentdb/app/scss/comments.scss

50 lines
621 B
SCSS
Raw Normal View History

2018-06-12 00:11:15 +02:00
.comments, .comments li {
list-style: none;
padding: 0;
margin: 0;
border: 1px solid #444;
}
.comments {
border-radius: 5px;
margin: 15px 0;
background: #333;
2018-06-12 00:20:18 +02:00
.info_strip, .msg {
2018-06-12 00:11:15 +02:00
display: block;
margin: 0;
}
2018-06-12 00:20:18 +02:00
.info_strip {
2018-06-12 00:11:15 +02:00
padding: 0.2em 1em;
2018-06-12 00:20:18 +02:00
border-bottom: 1px solid #444;
2018-06-12 00:11:15 +02:00
}
.msg {
padding: 1em;
background: #222;
}
2018-06-12 00:20:18 +02:00
.author {
font-weight: bold;
float: left;
display: inline-block;
}
.info_strip span {
float: right;
display: inline-block;
color: #bbb;
}
2018-06-12 00:11:15 +02:00
}
.comment_form {
margin: 1em 0;
}
.comment_form textarea {
min-width: 60%;
max-width: 100%;
margin: 0 0 1em 0;
}