Rev 4284 | Rev 4309 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
.feed__share {
background-color: #fff;
border: 1px solid lightgray;
border-radius: 10px;
display: grid;
gap: 1rem;
padding: 10px;
width: 100%;
}
.feed__input-container {
display: flex;
align-items: center;
gap: 0.5rem;
.feed__input {
align-items: center;
border: 1px solid lightgray;
border-radius: 30px;
color: gray;
display: flex;
gap: 0.5rem;
padding: 10px;
padding-left: 1rem;
overflow: hidden;
flex: 1;
cursor: pointer;
&:hover {
background-color: rgba(0, 0, 0, 0.08);
}
input {
background-color: transparent;
border: none;
outline: none;
flex: 1;
font-weight: 600;
}
}
}
.feed__section {
display: flex;
flex-direction: column;
grid-area: main;
gap: 1rem;
}
.feed__info {
display: flex;
flex-direction: column;
justify-content: center;
gap: 5px;
.time__elapse {
align-items: center;
display: flex;
font-size: 14px;
gap: 5px;
.time__elapse-icon {
font-size: 14px;
}
}
}
.feed__share-options {
display: flex;
justify-content: space-evenly;
}
.feed__share-option {
align-items: center;
display: inline-flex;
cursor: pointer;
gap: 0.5rem;
padding: 10px;
&:hover {
background-color: whitesmoke;
border-radius: 10px;
}
}
.feed {
background-color: #fff;
border: 1px solid #d3d3d3;
border-radius: 10px;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.feed__header {
display: flex;
gap: 0.5rem;
padding: 5px 1rem 0;
}
.feed__info > h2 {
font-size: 1rem;
font-weight: bold;
}
.feed__info > p {
font-size: 0.8rem;
color: gray;
line-height: 1.5;
}
.feed__body {
overflow-wrap: anywhere;
display: flex;
flex-direction: column;
gap: 0.5rem;
p,
a {
padding-left: 10px;
}
}
.feed__buttons {
display: flex;
justify-content: space-around;
border-top: 1px solid lightgray;
gap: 0.5rem;
padding: 5px;
margin: 0 5px;
.feed__share-option {
flex-grow: 1;
}
}