123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- #comments {
- margin-top: 3em;
- overflow-wrap: break-word;
- text-align: initial;
- }
- .comment-counter {
- margin-left: .5em;
- }
- .comment-form {
- margin: 1em 0;
- border: 3px double var(--c-txt-alt);
- padding: .5em;
- > label {
- font-size: .9em;
- }
- > button[type=submit] {
- margin-top: 1em;
- margin-bottom: .2em;
- width: 100%;
- }
- }
- .comment-group {
- margin-top: 1em;
- article {
- display: flex;
- margin: 1em 0;
- padding: 1em 0;
- border-top: 1px solid var(--c-bg-alt);
- }
- }
- .comment-avatar {
- margin-right: 1em;
- > img {
- width: 50px;
- height: auto;
- border-radius: 50%;
- }
- }
- .comment-wrapper {
- position: relative;
- width: 100%;
- > header {
- font-size: .9em;
- .comment-date {
- color: var(--c-txt-alt);
- }
- }
- > main {
- margin: 1em 0;
- overflow-wrap: anywhere;
- }
- }
- .reply-btn {
- position: absolute;
- top: 0;
- right: 0;
- font-size: .8em;
- }
- .replies {
- margin-left: calc(7% + 1em);
- }
|