diff options
author | James Taylor <user234683@users.noreply.github.com> | 2018-08-26 18:06:48 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2018-08-26 18:06:48 -0700 |
commit | 6a6433619f82652d7943e29579fe6cf1bbf0cc11 (patch) | |
tree | e11f1b551c6d20eb636e650a997d46b0dc151f81 /youtube/comments.css | |
parent | d9115ea2cf63b97f5fb24c639041c8f18f20a6cc (diff) | |
download | yt-local-6a6433619f82652d7943e29579fe6cf1bbf0cc11.tar.lz yt-local-6a6433619f82652d7943e29579fe6cf1bbf0cc11.tar.xz yt-local-6a6433619f82652d7943e29579fe6cf1bbf0cc11.zip |
Display video title & thumbnail on comment pages
Diffstat (limited to 'youtube/comments.css')
-rw-r--r-- | youtube/comments.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/youtube/comments.css b/youtube/comments.css index 18d0488..599f569 100644 --- a/youtube/comments.css +++ b/youtube/comments.css @@ -1,3 +1,25 @@ +.video-metadata{ + display: grid; + grid-template-columns: auto 1fr; + grid-template-rows: auto 1fr auto; +} + .video-metadata > .video-metadata-thumbnail-box{ + grid-row: 1 / span 2; + } + .video-metadata > .title{ + word-wrap:break-word; + grid-row: 1; + } + .video-metadata > h2{ + grid-row: 2; + font-size: 15px; + } + .video-metadata > hr{ + grid-row: 3; + grid-column: 1 / span 2; + width: 100%; + } + .comments{ grid-row-gap: 10px; display: grid; |