Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5949 | Rev 5965 | 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;
5964 stevensc 132
        align-items: center;
5438 stevensc 133
        gap: .5rem;
134
 
135
        img {
5949 stevensc 136
            height: calc(76px - 1rem);
5964 stevensc 137
            width: 100px;
5438 stevensc 138
            object-fit: cover;
139
        }
140
 
141
        h4 {
142
            font-weight: 600;
143
            font-size: 1.2rem;
144
            color: $subtitle-color;
145
        }
146
 
147
        span {
148
            color: $font-color;
5949 stevensc 149
            font-size: .8rem;
5438 stevensc 150
        }
151
 
5949 stevensc 152
        .post-info {
153
            display: flex;
154
            flex-direction: column;
155
        }
156
 
5438 stevensc 157
        .btn {
158
            width: fit-content;
159
        }
160
    }
5446 stevensc 161
}
162
 
163
.daily_pulse-widget {
164
    @include mixins.widget;
165
    flex-direction: column;
166
    display: flex;
167
    height: fit-content;
168
    padding: 1rem 0.5rem;
169
    gap: .5rem;
170
 
171
    h3 {
172
        color: $title-color;
173
        font-weight: 700;
174
        font-size: 1.1rem;
175
    }
176
 
177
    span {
178
        color: $subtitle-color;
179
        font-weight: 600;
180
    }
181
 
182
    .daily_pulse-quest {
183
        align-items: center;
184
        display: flex;
185
        flex-direction: column;
186
        gap: .5rem;
187
 
188
        h4 {
189
            font-weight: 600;
190
            color: $title-color;
191
        }
192
 
193
        ul {
194
            display: flex;
195
            gap: .5rem;
196
 
197
            li {
198
                transition: all 300ms;
199
 
200
                &:hover {
201
                    transform: translateY(-10px);
202
                }
203
            }
204
 
205
            img {
206
                width: 32px;
207
                height: 32px;
208
                border-radius: 50%;
209
            }
210
        }
211
    }
5462 stevensc 212
}
213
 
214
.user-info {
215
    @include mixins.widget;
216
    align-items: center;
217
    display: flex;
218
    flex-direction: column;
219
    gap: .5rem;
220
    padding: 1rem;
221
    text-align: center;
222
 
223
    img {
224
        border-radius: 50%;
225
        border: 2px solid $font-color;
226
        height: 150px;
227
        width: 150px;
228
    }
229
 
230
    p {
231
        color: $subtitle-color
232
    }
233
 
234
    a,
235
    svg {
236
        color: $font-color;
237
    }
238
 
239
    ul {
240
        align-items: start;
241
        display: flex;
242
        flex-direction: column;
243
        gap: .5rem;
244
        width: 100%;
245
    }
246
 
247
    .user-status {
248
        display: flex;
249
        align-items: center;
250
        gap: .5rem;
251
        justify-content: space-around;
252
    }
5436 stevensc 253
}