Move channel specific CSS to separate file

This commit is contained in:
syeopite 2021-04-16 01:13:42 -07:00
parent 35d94f9ed3
commit 710b269d30
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82
3 changed files with 14 additions and 10 deletions

13
assets/css/channel.css Normal file
View File

@ -0,0 +1,13 @@
#channel-banner-container {
margin-bottom: 1em;
}
#banner {
display: flex;
flex-direction: column-reverse;
height: calc(100vw / 6.2 - 1px);
background-size: cover !important;
background-repeat: no-repeat !important;
}

View File

@ -15,16 +15,6 @@ body {
background-color: rgb(255, 0, 0, 0.5);
}
#channel-banner-container {
margin-bottom: 1em;
}
#banner {
height: calc(100vw / 6.2 - 1px);
background-size: cover !important;
background-repeat: no-repeat !important;
}
.channel-profile > * {
font-size: 1.17em;
font-weight: bold;

View File

@ -1,5 +1,6 @@
<% content_for "header" do %>
<title><%= channel.author %> - Invidious</title>
<link rel="stylesheet" href="/css/channel.css?v=<%= ASSET_COMMIT %>"/>
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feed/channel/<%= channel.ucid %>" />
<% end %>