lbry-desktop/ui/scss/component/_channel.scss

118 lines
2.5 KiB
SCSS
Raw Normal View History

2019-05-07 04:35:04 +02:00
$cover-z-index: 0;
$metadata-z-index: 1;
2019-05-13 08:05:38 +02:00
.channel-cover {
2019-05-07 04:35:04 +02:00
background-image: linear-gradient(to right, $lbry-indigo-4, $lbry-cyan-5 80%);
display: flex;
align-items: flex-end;
box-sizing: content-box;
color: $lbry-white;
2019-06-11 20:10:58 +02:00
border-top-left-radius: var(--card-radius);
border-top-right-radius: var(--card-radius);
}
2019-05-13 08:05:38 +02:00
.channel-cover__custom {
2019-05-07 04:35:04 +02:00
z-index: $cover-z-index;
align-self: flex-start;
position: absolute;
object-fit: cover;
2019-09-27 05:52:04 +02:00
filter: brightness(30%);
2019-05-07 04:35:04 +02:00
}
2019-05-13 08:05:38 +02:00
.channel-cover,
.channel-cover__custom {
2019-05-07 04:35:04 +02:00
height: var(--cover-photo-height);
width: 100%;
}
2019-05-11 21:06:22 +02:00
.channel-thumbnail {
display: flex;
2019-06-27 08:18:45 +02:00
height: 5rem;
2019-07-09 03:19:46 +02:00
width: 5rem;
2019-05-07 04:35:04 +02:00
background-size: cover;
2019-06-11 20:10:58 +02:00
margin-right: var(--spacing-medium);
}
.channel__thumbnail--channel-page {
position: absolute;
height: var(--channel-thumbnail-width);
width: var(--channel-thumbnail-width);
2019-05-07 04:35:04 +02:00
box-shadow: 0px 8px 40px -3px $lbry-black;
2019-06-11 20:10:58 +02:00
left: var(--spacing-medium);
}
2019-05-11 21:06:22 +02:00
.channel-thumbnail__custom {
2019-05-07 04:35:04 +02:00
width: 100%;
object-fit: cover;
}
2019-05-07 04:35:04 +02:00
2019-05-11 21:06:22 +02:00
.channel-thumbnail__default {
width: 80%;
height: 80%;
margin-left: auto;
margin-right: auto;
align-self: flex-end;
}
.channel-thumbnail,
.channel-thumbnail__custom {
2019-05-07 04:35:04 +02:00
border-radius: var(--card-radius);
}
.channel-thumbnail__default--0 {
2019-05-11 21:06:22 +02:00
background-color: $lbry-indigo-3;
}
.channel-thumbnail__default--1 {
2019-05-11 21:06:22 +02:00
background-color: $lbry-orange-2;
}
.channel-thumbnail__default--2 {
2019-05-11 21:06:22 +02:00
background-color: $lbry-blue-3;
}
.channel-thumbnail__default--3 {
2019-05-11 21:06:22 +02:00
background-color: $lbry-red-1;
}
2019-05-07 04:35:04 +02:00
.channel__primary-info {
// Ensure the profile pic/title sit ontop of the default cover background
z-index: $metadata-z-index;
// Jump over the thumbnail photo because it is absolutely positioned
// Then add normal page spacing, _then_ add the actual padding
2019-06-11 20:10:58 +02:00
padding-left: calc(var(--channel-thumbnail-width) + var(--spacing-large));
2019-09-27 05:52:04 +02:00
padding-right: var(--spacing-medium);
2019-06-11 20:10:58 +02:00
padding-bottom: var(--spacing-medium);
2019-07-14 00:34:13 +02:00
min-width: 0;
2019-09-27 05:52:04 +02:00
width: 100%;
2019-05-07 04:35:04 +02:00
}
.channel__title {
2019-07-14 00:34:13 +02:00
margin-right: var(--spacing-small);
overflow: hidden;
text-overflow: ellipsis;
2019-07-21 23:31:22 +02:00
// line-height: var(--font-heading);
2019-10-04 07:13:29 +02:00
font-size: xx-large;
2019-11-07 20:39:22 +01:00
font-weight: var(--font-weight-bold);
2019-07-02 19:54:42 +02:00
// Quick hack to get this to work
// We should have a generic style for "header with button next to it"
.button {
margin-left: var(--spacing-medium);
}
2019-05-07 04:35:04 +02:00
}
2019-09-27 05:52:04 +02:00
.channel__meta {
display: flex;
justify-content: space-between;
2019-05-07 04:35:04 +02:00
}
.channel__image--blurred {
filter: blur(16px);
}
2019-09-16 07:32:02 +02:00
.channel__quick-actions {
@extend .card__actions;
position: absolute;
top: 0;
right: var(--spacing-medium);
z-index: $metadata-z-index;
}