diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-09-01 21:53:40 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-09-01 21:53:40 -0700 |
commit | ffeccc5ac3740080a6597e74af35e03e53425318 (patch) | |
tree | 0a7e72676663351019b5fe3a42fe7ef9427c43ed /youtube/comments.css | |
parent | cdf8b8b0c80c7043a90543f4b017bd3184670c8a (diff) | |
download | yt-local-ffeccc5ac3740080a6597e74af35e03e53425318.tar.lz yt-local-ffeccc5ac3740080a6597e74af35e03e53425318.tar.xz yt-local-ffeccc5ac3740080a6597e74af35e03e53425318.zip |
Reorganize comment system
Diffstat (limited to 'youtube/comments.css')
-rw-r--r-- | youtube/comments.css | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/youtube/comments.css b/youtube/comments.css index ed1721f..e7b9e92 100644 --- a/youtube/comments.css +++ b/youtube/comments.css @@ -23,7 +23,34 @@ width: 100%; } +.comments-area{ + display:grid; +} + .comment-form{ + display:contents; + } + .comments-area textarea{ + resize: vertical; + margin-top:10px; + } + .post-comment-button{ + margin-top:10px; + justify-self:end; + } + .comment-links{ + display:grid; + grid-auto-flow: column; + grid-column-gap: 10px; + justify-content:start; + } + .comment-links a{ + background-color: #d0d0d0; + padding: 2px; + justify-self:start; + } + .comments{ + margin-top:10px; grid-row-gap: 10px; display: grid; align-content:start; @@ -84,5 +111,5 @@ .more-comments{ justify-self:center; - + margin-top:10px; }
\ No newline at end of file |