freetube/src/renderer/views/Channel/Channel.css

146 lines
2.2 KiB
CSS
Raw Normal View History

2020-02-16 18:30:00 +00:00
.card {
position: relative;
width: 85%;
margin: 0 auto 20px;
2020-02-16 18:30:00 +00:00
}
.channelBanner {
width: 100%;
max-height: 200px;
2020-02-16 18:30:00 +00:00
}
.defaultChannelBanner {
width: 100%;
max-height: 200px;
height:200px;
background-color: black;
background-image: url("images/defaultBanner.png");
}
2020-02-16 18:30:00 +00:00
.channelInfoContainer {
width: 100%;
position: relative;
background-color: var(--card-bg-color);
margin-top: 10px;
2020-02-16 18:30:00 +00:00
}
.channelInfo {
display: flex;
flex-flow: row wrap;
width: 100%;
justify-content: space-between;
2020-02-16 18:30:00 +00:00
}
.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;
}
.channelSubCount {
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 {
height: 50px;
min-width: 150px;
align-self: center;
margin-bottom: 10px;
2020-02-16 18:30:00 +00:00
}
.channelSearch {
width: 200px;
align-self: flex-end;
}
.sortSelect {
align-self: flex-end;
}
.channelInfoTabs {
position: relative;
2020-02-16 18:30:00 +00:00
width: 100%;
margin-top: -16px;
margin-bottom: -13px;
2020-02-16 18:30:00 +00:00
}
.tab {
padding: 15px;
font-size: 15px;
cursor: pointer;
align-self: flex-end;
color: var(--tertiary-text-color);
2020-02-16 18:30:00 +00:00
}
.selectedTab {
color: var(--primary-text-color);
border-bottom: 3px solid var(--primary-color);
margin-bottom: -3px;
font-weight: bold;
box-sizing: border-box;
}
2020-02-16 18:30:00 +00:00
.tab:hover {
font-weight: bold;
2020-02-16 18:30:00 +00:00
}
.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;
}
.channelSearch {
margin-top: 10px;
}
2020-02-16 18:30:00 +00:00
.elementList {
margin-top: 15px;
}
.elementListLoading {
margin-top: 200px;
}
.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
}
.thumbnailContainer {
display: flex
}
.channelLineContainer {
display: flex;
justify-content: center;
flex-direction: column;
padding-left: 1em;
}