Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4323 | Rev 4325 | Ir a la última revisión | | Comparar con el anterior | 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 {
4324 stevensc 10
        font-size: 1rem;
4323 stevensc 11
        color: gray;
4324 stevensc 12
        svg {
13
            font-size: 1.3rem;
14
        }
4323 stevensc 15
    }
16
    .linked__widget-header {
17
        display: flex;
18
        align-items: center;
19
        justify-content: space-between;
20
    }
21
    .linked__widget-content {
22
        display: flex;
23
        align-items: center;
24
        gap: 0.5rem;
25
        .linked__widget-info {
26
            display: flex;
27
            flex-direction: column;
28
            gap: 5px;
29
            align-items: flex-start;
30
            h4 {
31
                font-weight: 600;
32
            }
33
            p {
34
                color: gray;
35
            }
36
            .btn {
37
                border: 2px solid lightgray;
38
                color: gray;
39
            }
40
        }
41
    }
42
}