Rev 16664 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
@use "../../css/shared/mixin.scss";
@import "../../css/shared/variables.scss";
@import "../../css/shared/breakpoints.scss";
.feed {
@include mixin.widget;
display: flex;
flex-direction: column;
gap: .5rem;
padding: 1rem;
&_header {
align-items: center;
display: flex;
position: relative;
gap: .5rem;
width: 100%;
img {
width: 50px;
height: 50px;
border-radius: 100%;
}
}
&_info {
display: flex;
flex-direction: column;
h2 {
color: $title-color;
font-size: 1.1rem;
font-weight: 600;
}
span {
align-items: center;
color: $subtitle-color;
display: flex;
gap: .5rem;
}
}
}
.feed_content {
width: 100%;
display: flex;
flex-direction: column;
gap: .5rem;
p {
color: $font-color;
font-weight: 500;
}
}
.img_container {
position: relative;
max-height: 500px;
overflow: hidden;
img:first-child {
z-index: 3;
object-fit: cover;
width: 100%;
position: relative;
}
img:nth-child(2) {
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
z-index: 1;
object-fit: cover;
height: 180%;
width: 100%;
max-height: none;
filter: blur(20px);
}
}