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

204 lines
3.4 KiB
CSS

.card {
position: relative;
inline-size: 85%;
margin-block: 0 20px;
margin-inline: auto;
box-sizing: border-box;
}
.channelDetails {
padding: 0;
max-inline-size: 92vw;
}
.channelBannerContainer {
background: center / cover no-repeat var(--banner-url, transparent);
block-size: 13vw;
min-block-size: 110px;
max-block-size: 32vh;
inline-size: 100%;
}
.channelBannerContainer.default {
background-color: black;
background-image: url("../../assets/img/defaultBanner.png");
background-repeat: repeat;
background-size: contain;
}
.channelInfoContainer {
position: relative;
background-color: var(--card-bg-color);
margin-block-start: 10px;
padding-block: 0;
padding-inline: 16px;
}
.channelInfo {
display: flex;
flex-flow: row wrap;
inline-size: 100%;
justify-content: space-between;
}
.channelInfoHasError {
padding-block-end: 10px;
}
.channelThumbnail {
inline-size: 100px;
block-size: 100px;
border-radius: 200px;
-webkit-border-radius: 200px;
object-fit: cover;
}
.channelName {
font-weight: bold;
inline-size: 100%;
font-size: 25px;
}
.channelSubCount {
color: var(--tertiary-text-color);
inset-block-start: 50px;
inset-inline-start: 120px;
}
.channelInfoActionsContainer {
display: flex;
gap: 30px;
justify-content: space-between;
}
.shareIcon {
align-self: center;
}
.channelSearch {
inline-size: 220px;
margin-inline-start: auto;
align-self: flex-end;
flex: 1 1 0%;
}
.sortSelect {
margin-inline-start: auto;
}
.channelInfoTabs {
position: relative;
inline-size: 100%;
block-size: auto;
justify-content: unset;
gap: 32px;
padding-block: .3em;
padding-inline: 0;
}
.tabs {
display: flex;
flex: 0 1 33%;
}
.tab {
padding: 15px;
font-size: 15px;
cursor: pointer;
flex: 1 1 0%;
align-self: flex-end;
text-align: center;
color: var(--tertiary-text-color);
border-block-end: 3px solid transparent;
}
.tab:hover,
.tab:focus {
font-weight: bold;
border-block-end: 3px solid var(--tertiary-text-color);
}
.selectedTab {
color: var(--primary-text-color);
border-block-end: 3px solid var(--primary-color);
font-weight: bold;
box-sizing: border-box;
}
.channelSearch {
margin-block-start: 10px;
max-inline-size: 250px;
}
.elementListLoading {
margin-block-start: 200px;
}
.message {
color: var(--tertiary-text-color);
}
.getNextPage {
background-color: var(--search-bar-color);
inline-size: 100%;
block-size: 45px;
line-height: 45px;
text-align: center;
cursor: pointer;
margin-block-start: 16px;
}
.thumbnailContainer {
display: flex
}
.channelLineContainer {
display: flex;
justify-content: center;
flex-direction: column;
padding-inline-start: 1em;
}
.channelLineContainer h1,
.channelLineContainer p {
margin: 0;
}
.communityThumbnail {
/* stylelint-disable-next-line property-no-vendor-prefix */
-webkit-border-radius: 200px;
border-radius: 200px;
block-size: 12%;
inline-size: 12%;
}
.ft-community-image {
display: block;
margin-inline-start: auto;
margin-inline-end: auto;
}
.community-post-container {
padding-inline-start: 30%;
padding-inline-end: 30%;
}
@media only screen and (max-width: 800px) {
.channelInfoTabs {
block-size: auto;
flex-flow: column-reverse;
}
.channelSearch {
inline-size: 100%;
max-inline-size: none;
}
.tabs {
overflow-x: scroll;
}
#communityPanel {
margin-block-start: 1rem;
}
}