diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-07-24 00:26:20 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-07-24 00:41:20 -0700 |
commit | b56e65e0515cf5894640e186b4df01c051a85b17 (patch) | |
tree | 106bb11b655028b35c225c3dc2cf48c69cf28940 | |
parent | eb89c7426d8918332558aaba9ff4b7547c507f96 (diff) | |
download | yt-local-b56e65e0515cf5894640e186b4df01c051a85b17.tar.lz yt-local-b56e65e0515cf5894640e186b4df01c051a85b17.tar.xz yt-local-b56e65e0515cf5894640e186b4df01c051a85b17.zip |
channel.html: add some space to the left of the page
-rw-r--r-- | youtube/templates/channel.html | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/youtube/templates/channel.html b/youtube/templates/channel.html index 8293559..069e33b 100644 --- a/youtube/templates/channel.html +++ b/youtube/templates/channel.html @@ -20,7 +20,8 @@ } main .summary{ grid-row:1; - grid-column:2; + grid-column:2; + margin-left: 5px; } main .channel-tabs{ grid-row:2; @@ -32,6 +33,7 @@ background-color: #aaaaaa; padding: 3px; + padding-left: 6px; } #links-metadata{ display: grid; @@ -41,6 +43,7 @@ justify-content: start; padding-top: 8px; padding-bottom: 8px; + padding-left: 6px; background-color: #bababa; margin-bottom: 10px; } @@ -48,6 +51,7 @@ font-weight:bold; } .item-grid{ + padding-left: 20px; grid-row:4; grid-column: 1 / span 2; } @@ -61,14 +65,20 @@ .tab{ padding: 5px 75px; } - main .channel-info{ + .channel-info{ grid-row: 3; grid-column: 1 / span 3; } - .description{ + .channel-info ul{ + padding-left: 40px; + } + .channel-info h3{ + margin-left: 40px; + } + .channel-info .description{ white-space: pre-wrap; min-width: 0; - + margin-left: 40px; } .medium-item img{ max-width: 168px; @@ -104,7 +114,7 @@ </ul> <hr> <h3>Description</h3> - <span class="description">{{ common_elements.text_runs(description) }}</span> + <div class="description">{{ common_elements.text_runs(description) }}</div> <hr> <ul> {% for text, url in links %} |