diff options
Diffstat (limited to 'youtube/templates/channel.html')
-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 %} |