FreeTube/src/renderer/views/Channel/Channel.css

142 lines
2.2 KiB
CSS

.card {
position: relative;
width: 85%;
margin: 0 auto;
margin-bottom: 20px;
}
.channelBanner {
width: 100%;
position: absolute;
top: 0px;
left: 0px;
max-height: 300px;
}
.defaultChannelBanner {
width: 100%;
position: absolute;
top: 0px;
left: 0px;
height: 200px;
background-color: black;
background-image: url("~images/defaultBanner.png");
}
.channelInfoContainer {
width: 100%;
height: 200px;
margin-top: 300px;
position: relative;
background-color: var(--card-bg-color);
}
.channelInfo {
height: 100px;
width: 85%;
position: absolute;
top: 30px;
left: 30px;
}
.channelThumbnail {
width: 100px;
height: 100px;
border-radius: 200px 200px 200px 200px;
-webkit-border-radius: 200px 200px 200px 200px;
}
.channelName {
font-weight: bold;
width: 100%;
font-size: 25px;
position: absolute;
top: 20px;
left: 120px;
}
.channelSubCount {
position: absolute;
color: var(--tertiary-text-color);
top: 50px;
left: 120px;
}
.subscribeButton {
position: absolute;
top: 50px;
right: 20px;
height: 50px;
width: 150px;
}
.channelSearch {
width: 200px;
align-self: flex-end;
}
.sortSelect {
align-self: flex-end;
}
.channelInfoTabs {
position: absolute;
bottom: -16px;
width: 100%;
}
.tab {
padding: 15px;
font-size: 15px;
cursor: pointer;
text-decoration: underline;
align-self: flex-end;
-webkit-transition: background 0.2s ease-out;
-moz-transition: background 0.2s ease-out;
-o-transition: background 0.2s ease-out;
transition: background 0.2s ease-out;
}
.tab:hover {
background-color: var(--side-nav-hover-color);
-moz-transition: background 0.2s ease-in;
-o-transition: background 0.2s ease-in;
transition: background 0.2s ease-in;
}
.aboutTab {
background-color: var(--card-bg-color);
position: relative;
margin-top: 0px;
padding: 10px;
z-index: 1;
}
.aboutInfo {
font-family: 'Roboto', sans-serif;
font-size: 17px;
white-space: pre-wrap;
}
.elementList {
margin-top: 15px;
}
.elementListLoading {
margin-top: 200px;
}
.message {
color: var(--tertiary-text-color);
}
.getNextPage {
background-color: var(--search-bar-color);
width: 100%;
height: 45px;
line-height: 45px;
text-align: center;
cursor: pointer;
margin-top: 16px;
}