2020-02-16 18:30:00 +00:00
|
|
|
.card {
|
|
|
|
position: relative;
|
|
|
|
width: 85%;
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.channelBanner {
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
max-height: 300px;
|
|
|
|
}
|
|
|
|
|
2020-07-11 22:36:42 +00:00
|
|
|
.defaultChannelBanner {
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
height: 200px;
|
|
|
|
background-color: black;
|
|
|
|
background-image: url("~images/defaultBanner.png");
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.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;
|
2020-03-24 14:33:53 +00:00
|
|
|
color: var(--tertiary-text-color);
|
2020-02-16 18:30:00 +00:00
|
|
|
top: 50px;
|
|
|
|
left: 120px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.subscribeButton {
|
|
|
|
position: absolute;
|
|
|
|
top: 50px;
|
|
|
|
right: 20px;
|
|
|
|
height: 50px;
|
2020-09-03 02:01:47 +00:00
|
|
|
min-width: 150px;
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2020-07-11 22:36:42 +00:00
|
|
|
.message {
|
|
|
|
color: var(--tertiary-text-color);
|
|
|
|
}
|
|
|
|
|
2020-02-16 18:30:00 +00:00
|
|
|
.getNextPage {
|
|
|
|
background-color: var(--search-bar-color);
|
|
|
|
width: 100%;
|
|
|
|
height: 45px;
|
|
|
|
line-height: 45px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
2020-06-24 10:11:37 +00:00
|
|
|
margin-top: 16px;
|
2020-02-16 18:30:00 +00:00
|
|
|
}
|