2024-05-10 16:52:13 +00:00
|
|
|
.placeholder {
|
|
|
|
border-radius: 2.2rem;
|
|
|
|
display: flex;
|
2024-05-20 21:26:55 +00:00
|
|
|
font-size: 1.4rem;
|
2024-05-10 16:52:13 +00:00
|
|
|
font-weight: 500;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
h3 {
|
2024-05-20 21:26:55 +00:00
|
|
|
font-size: 2.4rem;
|
2024-05-10 16:52:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
|
|
|
.button {
|
2024-05-11 17:27:57 +00:00
|
|
|
align-items: center;
|
2024-05-10 16:52:13 +00:00
|
|
|
border-radius: 1.2rem;
|
2024-05-11 17:27:57 +00:00
|
|
|
display: flex;
|
2024-05-10 16:52:13 +00:00
|
|
|
@include font-size(1.5rem);
|
2024-05-11 17:27:57 +00:00
|
|
|
gap: 0.6rem;
|
2024-05-18 22:03:06 +00:00
|
|
|
justify-content: center;
|
2024-05-10 16:52:13 +00:00
|
|
|
margin-top: 3rem;
|
|
|
|
padding: 1rem 2rem;
|
|
|
|
width: 100%;
|
2024-05-11 17:27:57 +00:00
|
|
|
|
|
|
|
.icon {
|
|
|
|
height: 2.4rem;
|
|
|
|
width: 2.4rem;
|
|
|
|
}
|
2024-05-10 16:52:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-11 17:27:57 +00:00
|
|
|
.placeholder--feed-mode {
|
|
|
|
flex-direction: column;
|
2024-05-18 22:03:06 +00:00
|
|
|
min-height: 40rem;
|
2024-05-11 17:27:57 +00:00
|
|
|
text-align: center;
|
2024-05-10 16:52:13 +00:00
|
|
|
|
2024-05-18 22:03:06 +00:00
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
aspect-ratio: 1 / 0.8;
|
2024-05-11 17:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.placeholderCover {
|
2024-05-18 22:03:06 +00:00
|
|
|
flex: 1 100%;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
bottom: 0;
|
|
|
|
content: '';
|
|
|
|
height: 20%;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2024-05-11 17:27:57 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
2024-05-18 22:03:06 +00:00
|
|
|
|
|
|
|
&.placeholder--feedMy .placeholderCover:after {
|
|
|
|
background: linear-gradient(to top, #171032, rgba(23, 16, 50, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
&.placeholder--feedCollaborations .placeholderCover:after {
|
|
|
|
background: linear-gradient(to top, #070709, rgba(7, 7, 9, 0));
|
|
|
|
}
|
2024-05-11 17:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.placeholder--profile-mode {
|
2024-05-18 22:03:06 +00:00
|
|
|
min-height: 40rem;
|
|
|
|
|
2024-05-20 21:26:55 +00:00
|
|
|
@include media-breakpoint-down(lg) {
|
2024-05-18 22:03:06 +00:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2024-05-20 21:26:55 +00:00
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
max-height: 30rem;
|
|
|
|
min-height: auto;
|
2024-05-18 22:03:06 +00:00
|
|
|
}
|
2024-05-11 17:27:57 +00:00
|
|
|
|
|
|
|
.placeholderCover {
|
2024-05-25 16:57:14 +00:00
|
|
|
flex: 1;
|
2024-05-11 17:27:57 +00:00
|
|
|
padding: 1.6rem;
|
|
|
|
|
2024-05-20 21:26:55 +00:00
|
|
|
@include media-breakpoint-up(lg) {
|
2024-05-18 22:03:06 +00:00
|
|
|
order: 2;
|
|
|
|
position: static;
|
|
|
|
}
|
|
|
|
|
2024-05-11 17:27:57 +00:00
|
|
|
img {
|
2024-05-25 16:57:14 +00:00
|
|
|
aspect-ratio: 16/10;
|
|
|
|
min-width: 40rem;
|
2024-05-20 21:26:55 +00:00
|
|
|
object-fit: contain;
|
2024-05-11 17:27:57 +00:00
|
|
|
width: 100%;
|
2024-05-20 21:26:55 +00:00
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
object-position: right;
|
|
|
|
}
|
2024-05-11 17:27:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.placeholderContent {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
2024-05-20 21:26:55 +00:00
|
|
|
font-size: 1.4rem;
|
2024-05-11 17:27:57 +00:00
|
|
|
line-height: 1.2;
|
2024-05-20 21:26:55 +00:00
|
|
|
min-width: 60%;
|
|
|
|
padding: 0 2rem 2rem;
|
|
|
|
|
|
|
|
@include media-breakpoint-up(md) {
|
|
|
|
font-size: 1.6rem;
|
|
|
|
padding: 3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@include media-breakpoint-up(lg) {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
2024-05-11 17:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
@include font-size(3.8rem);
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
background: var(--background-color-invert);
|
|
|
|
bottom: 2rem;
|
2024-05-20 21:26:55 +00:00
|
|
|
color: var(--default-color-invert);
|
|
|
|
font-size: 1.6rem;
|
2024-05-18 22:03:06 +00:00
|
|
|
left: 2rem;
|
2024-05-11 17:27:57 +00:00
|
|
|
right: 2rem;
|
2024-05-18 22:03:06 +00:00
|
|
|
width: 100%;
|
|
|
|
|
2024-05-20 21:26:55 +00:00
|
|
|
@include media-breakpoint-up(lg) {
|
2024-05-18 22:03:06 +00:00
|
|
|
left: auto;
|
|
|
|
position: absolute;
|
|
|
|
width: auto;
|
|
|
|
}
|
2024-05-10 16:52:13 +00:00
|
|
|
|
2024-05-11 17:27:57 +00:00
|
|
|
.icon {
|
|
|
|
filter: invert(1);
|
2024-05-10 16:52:13 +00:00
|
|
|
}
|
|
|
|
}
|
2024-05-11 17:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.placeholderCover {
|
|
|
|
position: relative;
|
2024-05-10 16:52:13 +00:00
|
|
|
|
|
|
|
img {
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.placeholderContent {
|
|
|
|
padding: 1.6rem;
|
2024-05-20 20:51:33 +00:00
|
|
|
|
|
|
|
@include media-breakpoint-down(lg) {
|
|
|
|
br {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
2024-05-10 16:52:13 +00:00
|
|
|
}
|
|
|
|
|
2024-05-18 22:03:06 +00:00
|
|
|
.placeholder--feedMy,
|
2024-05-11 17:27:57 +00:00
|
|
|
.placeholder--feedCollaborations {
|
2024-05-10 16:52:13 +00:00
|
|
|
color: var(--default-color-invert);
|
|
|
|
|
|
|
|
button,
|
|
|
|
.button {
|
|
|
|
background: var(--background-color);
|
|
|
|
color: var(--default-color);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-18 22:03:06 +00:00
|
|
|
.placeholder--feedMy {
|
2024-05-10 16:52:13 +00:00
|
|
|
background: #171032;
|
|
|
|
|
|
|
|
.placeholderCover {
|
|
|
|
img {
|
|
|
|
object-position: top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-11 17:27:57 +00:00
|
|
|
.placeholder--feedCollaborations {
|
2024-05-10 16:52:13 +00:00
|
|
|
background: #070709;
|
|
|
|
|
|
|
|
.placeholderCover {
|
|
|
|
img {
|
|
|
|
object-position: bottom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-11 17:27:57 +00:00
|
|
|
.placeholder--feedDiscussions {
|
2024-05-10 16:52:13 +00:00
|
|
|
background: #E9E9EE;
|
|
|
|
|
|
|
|
.placeholderCover {
|
|
|
|
padding: 2rem;
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 90%;
|
|
|
|
mix-blend-mode: multiply;
|
|
|
|
object-fit: contain;
|
|
|
|
top: 10%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
button,
|
|
|
|
.button {
|
|
|
|
background: var(--background-color-invert);
|
|
|
|
color: var(--default-color-invert);
|
|
|
|
}
|
|
|
|
}
|
2024-05-11 17:27:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
.placeholder--author {
|
|
|
|
background: #E58B72;
|
|
|
|
}
|
|
|
|
|
|
|
|
.placeholder--authorComments {
|
|
|
|
background: #E9E9EE;
|
|
|
|
|
|
|
|
.placeholderCover {
|
|
|
|
img {
|
|
|
|
mix-blend-mode: multiply;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottomLinks {
|
|
|
|
display: flex;
|
|
|
|
@include font-size(1.6rem);
|
|
|
|
gap: 4rem;
|
|
|
|
|
2024-05-18 22:03:06 +00:00
|
|
|
@include media-breakpoint-down(sm) {
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1.4rem;
|
|
|
|
}
|
|
|
|
|
2024-05-11 17:27:57 +00:00
|
|
|
a {
|
|
|
|
border: none !important;
|
|
|
|
padding-left: 2.6rem;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.icon {
|
|
|
|
filter: invert(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.icon {
|
|
|
|
filter: invert(1);
|
|
|
|
height: 1.8rem;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
transition: filter 0.2s;
|
|
|
|
width: 1.8rem;
|
|
|
|
}
|
|
|
|
}
|