Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5964 | Rev 6467 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5436 stevensc 1
@use "../../settings/mixins.scss";
2
 
3
.suggests_widget {
4
    @include mixins.widget;
5
    display: block;
6
 
7
    &-header {
8
        align-items: center;
9
        display: flex;
10
        justify-content: space-between;
11
        padding: 1rem;
12
        position: relative;
13
 
14
        h3 {
15
            color: $title-color;
16
            font-weight: 600;
17
            font-size: 1.1rem;
18
        }
19
 
20
        span {
21
            color: $subtitle-color;
22
            font-weight: 600;
23
            font-size: 1rem;
24
            cursor: pointer;
25
        }
26
    }
27
 
28
    &>.suggest-list {
29
        max-height: 265px;
30
        overflow: auto;
31
        width: 100%;
32
        display: flex;
33
        flex-direction: row;
34
 
35
        @include mixins.for-size(tablet-landscape) {
36
            flex-direction: column;
37
 
38
            &::-webkit-scrollbar-thumb {
39
                visibility: visible;
40
            }
41
        }
42
    }
43
}
44
 
45
.user {
46
    align-items: center;
47
    display: flex;
48
    padding: 1rem;
49
    gap: 0.5rem;
50
    width: -webkit-fill-available;
51
 
52
    img {
53
        border-radius: 50%;
54
        max-width: 3.3rem;
55
        background: #fff;
56
    }
57
 
5447 stevensc 58
    div.d-inline-flex {
5436 stevensc 59
        gap: 0.5rem;
60
    }
61
 
62
    a.btn,
63
    button.btn {
64
        padding: 0.2rem 0.6rem;
65
        white-space: nowrap;
66
    }
67
 
68
    h4 {
69
        color: $font-color;
5447 stevensc 70
        font-weight: 600;
5436 stevensc 71
        line-height: 1.4;
72
    }
73
 
74
    @include mixins.for-size(phone) {
75
        border-right: 1px solid $border-primary;
76
 
77
        &:last-child {
78
            border-right: none;
79
        }
80
    }
81
 
82
    @include mixins.for-size(tablet-portrait) {
83
        border-top: 1px solid $border-primary;
84
    }
85
}
86
 
87
.app-widget {
88
    @include mixins.widget;
89
    align-items: center;
90
    display: flex;
91
    flex-direction: column;
92
    gap: .5rem;
5437 stevensc 93
    padding: 1rem;
5436 stevensc 94
    position: relative;
95
 
5441 stevensc 96
    span {
5436 stevensc 97
        font-weight: 600;
98
        color: $subtitle-color;
99
        width: fit-content;
100
    }
101
 
102
    img {
103
        width: 50px;
104
        height: 50px;
105
        border-radius: 100px;
106
    }
5438 stevensc 107
}
108
 
109
.posts-widget {
110
    @include mixins.widget;
111
    padding: 1rem;
112
    display: flex;
113
    flex-direction: column;
114
    gap: 1rem;
115
 
116
    h3 {
117
        color: $title-color;
118
        font-size: 1.1rem;
119
        font-weight: 600;
120
    }
121
 
122
    .posts-list {
123
        display: flex;
124
        flex-direction: column;
5949 stevensc 125
        gap: .5rem;
5944 stevensc 126
        max-height: 380px;
5438 stevensc 127
        overflow: auto;
128
    }
129
 
130
    .post-item {
131
        display: flex;
132
        gap: .5rem;
133
 
134
        img {
5949 stevensc 135
            height: calc(76px - 1rem);
5964 stevensc 136
            width: 100px;
5438 stevensc 137
            object-fit: cover;
138
        }
139
 
140
        h4 {
141
            font-weight: 600;
142
            font-size: 1.2rem;
143
            color: $subtitle-color;
144
        }
145
 
146
        span {
147
            color: $font-color;
5949 stevensc 148
            font-size: .8rem;
5438 stevensc 149
        }
150
 
5949 stevensc 151
        .post-info {
152
            display: flex;
153
            flex-direction: column;
154
        }
155
 
5438 stevensc 156
        .btn {
157
            width: fit-content;
158
        }
159
    }
5446 stevensc 160
}
161
 
162
.daily_pulse-widget {
163
    @include mixins.widget;
164
    flex-direction: column;
165
    display: flex;
166
    height: fit-content;
167
    padding: 1rem 0.5rem;
168
    gap: .5rem;
169
 
170
    h3 {
171
        color: $title-color;
172
        font-weight: 700;
173
        font-size: 1.1rem;
174
    }
175
 
176
    span {
177
        color: $subtitle-color;
178
        font-weight: 600;
179
    }
180
 
181
    .daily_pulse-quest {
182
        align-items: center;
183
        display: flex;
184
        flex-direction: column;
185
        gap: .5rem;
186
 
187
        h4 {
188
            font-weight: 600;
189
            color: $title-color;
190
        }
191
 
192
        ul {
193
            display: flex;
194
            gap: .5rem;
195
 
196
            li {
197
                transition: all 300ms;
198
 
199
                &:hover {
200
                    transform: translateY(-10px);
201
                }
202
            }
203
 
204
            img {
205
                width: 32px;
206
                height: 32px;
207
                border-radius: 50%;
208
            }
209
        }
210
    }
5462 stevensc 211
}
212
 
213
.user-info {
214
    @include mixins.widget;
215
    align-items: center;
216
    display: flex;
217
    flex-direction: column;
218
    gap: .5rem;
219
    padding: 1rem;
220
    text-align: center;
221
 
222
    img {
223
        border-radius: 50%;
224
        border: 2px solid $font-color;
225
        height: 150px;
226
        width: 150px;
227
    }
228
 
229
    p {
230
        color: $subtitle-color
231
    }
232
 
233
    a,
234
    svg {
235
        color: $font-color;
236
    }
237
 
238
    ul {
239
        align-items: start;
240
        display: flex;
241
        flex-direction: column;
242
        gap: .5rem;
243
        width: 100%;
244
    }
245
 
246
    .user-status {
247
        display: flex;
248
        align-items: center;
249
        gap: .5rem;
250
        justify-content: space-around;
251
    }
5436 stevensc 252
}