Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
4323 stevensc 1
.linked__widget {
2
    background: #fff;
3
    padding: 1rem;
4
    border-radius: 10px;
5
    display: flex;
6
    flex-direction: column;
7
    gap: 1rem;
8
    border: 1px solid lightgray;
9
    & > a {
10
        font-size: 1.1rem;
11
        color: gray;
12
    }
13
    .linked__widget-header {
14
        display: flex;
15
        align-items: center;
16
        justify-content: space-between;
17
    }
18
    .linked__widget-content {
19
        display: flex;
20
        align-items: center;
21
        gap: 0.5rem;
22
        .linked__widget-info {
23
            display: flex;
24
            flex-direction: column;
25
            gap: 5px;
26
            align-items: flex-start;
27
            h4 {
28
                font-weight: 600;
29
            }
30
            p {
31
                color: gray;
32
            }
33
            .btn {
34
                border: 2px solid lightgray;
35
                color: gray;
36
            }
37
        }
38
    }
39
}