Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7148 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
6830 stevensc 1
.feed__share {
2
    background-color: #fff;
3
    display: grid;
4
    gap: 1rem;
5
    padding: 10px;
6
    width: 100%;
7
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
8
 
9
    @media (min-width: 768px) {
10
        border-radius: 10px;
11
    }
12
}
13
 
14
.feed__input-container {
15
    display: flex;
16
    align-items: center;
17
    gap: 0.5rem;
18
 
19
    .feed__input {
20
        align-items: center;
21
        border: 1px solid lightgray;
22
        border-radius: 30px;
23
        color: gray;
24
        display: flex;
25
        gap: 0.5rem;
26
        padding: 10px;
27
        padding-left: 1rem;
28
        overflow: hidden;
29
        flex: 1;
30
        cursor: pointer;
31
 
32
        &:hover {
33
            background-color: rgba(0, 0, 0, 0.08);
34
        }
35
 
36
        input {
37
            background-color: transparent;
38
            border: none;
39
            cursor: pointer;
40
            outline: none;
41
            flex: 1;
42
            font-weight: 600;
43
        }
44
    }
45
}
46
 
47
.feed__section {
48
    display: flex;
49
    flex-direction: column;
50
    grid-area: main;
51
    gap: 1rem;
52
    position: relative;
53
}
54
 
55
.feed__info {
56
    display: flex;
57
    flex-direction: column;
58
    justify-content: center;
59
    gap: 5px;
60
 
61
    &>a>h2 {
62
        font-size: 1rem;
63
        font-weight: bold;
64
    }
65
 
66
    &>p {
67
        font-size: 0.8rem;
68
        color: gray;
69
        line-height: 1.5;
70
    }
71
 
72
    .time__elapse {
73
        align-items: center;
74
        display: flex;
75
        font-size: 14px;
76
        gap: 5px;
77
 
78
        .time__elapse-icon {
79
            font-size: 14px;
80
        }
81
    }
82
}
83
 
84
.feed__share-options {
85
    display: flex;
86
    justify-content: space-evenly;
87
}
88
 
89
.feed__share-option {
90
    align-items: center;
91
    display: inline-flex;
92
    justify-content: center;
93
    cursor: pointer;
94
    gap: 0.5rem;
95
    padding: 10px;
96
 
97
    &:hover {
98
        background-color: whitesmoke;
99
        border-radius: 10px;
100
    }
101
 
102
    h4 {
103
        display: none;
104
    }
105
 
106
    @media (min-width: 1200px) {
107
        justify-content: flex-start;
108
 
109
        h4 {
110
            display: initial;
111
        }
112
    }
113
}
114
 
115
.feed {
116
    background-color: #fff;
117
    display: flex;
118
    flex-direction: column;
119
    gap: 0.5rem;
120
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
121
    padding: 0;
122
 
123
    @media (min-width: 768px) {
124
        box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.08);
125
        border-radius: 10px;
126
    }
127
}
128
 
129
.feed__header {
130
    display: flex;
131
    gap: 0.5rem;
132
    padding: 5px 1rem 0;
133
    justify-content: space-between;
134
    align-items: center;
135
}
136
 
137
.feed__body {
138
    overflow-wrap: anywhere;
139
    display: flex;
140
    flex-direction: column;
141
    gap: 0.5rem;
142
 
143
    h2 {
144
        padding: 0 10px;
145
    }
146
 
147
    p,
148
    a,
149
    span {
150
        padding: 0 10px;
151
        line-height: 1.25;
152
    }
153
 
154
    &>img,
155
    &>video {
156
        width: 100%;
157
        max-height: 550px;
158
        object-fit: cover;
159
    }
160
}
161
 
162
.feed__buttons {
163
    display: flex;
164
    justify-content: space-around;
165
    border-top: 1px solid lightgray;
166
    gap: 0.5rem;
167
    padding: 5px;
168
    margin: 0 5px;
169
 
170
    .feed__share-option {
171
        flex-grow: 1;
172
    }
173
}
174
 
175
.external__share {
176
    display: flex;
177
    position: absolute;
178
    align-items: center;
179
    padding: 5px 1rem;
180
    bottom: calc(100% + 0.5rem);
181
    gap: 0.5rem;
182
    right: 0;
183
    width: 16.5rem;
184
    border-radius: 10px;
185
    background-color: #fff;
186
    box-shadow: 0px 4px 4px -2px rgb(0 0 0 / 12%), 0px -4px 4px -2px rgb(0 0 0 / 12%);
187
 
188
    &.post {
189
        transform: none;
190
        bottom: 100%;
191
        right: 1.5rem;
192
        z-index: 200;
193
    }
194
}