diff options
author | James Taylor <user234683@users.noreply.github.com> | 2020-09-25 09:48:29 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2020-09-25 09:48:29 -0700 |
commit | cf08f96de9d5470a72b97ee169641e25cfabc0e6 (patch) | |
tree | 9389ffa85bfd1bde81430d1738096d14e204ed72 | |
parent | 20152a6316101c50459244930b8d9dad1ed822f5 (diff) | |
download | yt-local-cf08f96de9d5470a72b97ee169641e25cfabc0e6.tar.lz yt-local-cf08f96de9d5470a72b97ee169641e25cfabc0e6.tar.xz yt-local-cf08f96de9d5470a72b97ee169641e25cfabc0e6.zip |
Add some space between transcript button and related videos
-rw-r--r-- | youtube/templates/watch.html | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/youtube/templates/watch.html b/youtube/templates/watch.html index fc4aaf9..8c67cfc 100644 --- a/youtube/templates/watch.html +++ b/youtube/templates/watch.html @@ -208,6 +208,20 @@ grid-column: 4; max-width: 640px; } + #transcript-details{ + margin-bottom: 10px; + } + table#transcript-table { + border-collapse: collapse; + width: 100%; + } + table#transcript-table td, th { + border: 1px solid #dddddd; + } + div#transcript-div { + background-color: var(--interface-color); + padding: 5px; + } .playlist{ border-style: solid; border-width: 2px; @@ -304,18 +318,6 @@ .format-codecs{ width: 120px; } - - table#transcript-table { - border-collapse: collapse; - width: 100%; - } - table#transcript-table td, th { - border: 1px solid #dddddd; - } - div#transcript-div { - background-color: var(--interface-color); - padding: 5px; - } {% endblock style %} {% block main %} |