Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4324 | Rev 4326 | 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;
4325 stevensc 9
    height: fit-content;
4323 stevensc 10
    & > a {
4324 stevensc 11
        font-size: 1rem;
4323 stevensc 12
        color: gray;
4324 stevensc 13
        svg {
14
            font-size: 1.3rem;
15
        }
4323 stevensc 16
    }
4325 stevensc 17
    img {
18
        width: 60px;
19
        height: 60px;
20
    }
4323 stevensc 21
    .linked__widget-header {
22
        display: flex;
23
        align-items: center;
24
        justify-content: space-between;
25
    }
26
    .linked__widget-content {
27
        display: flex;
28
        align-items: center;
29
        gap: 0.5rem;
30
        .linked__widget-info {
31
            display: flex;
32
            flex-direction: column;
33
            gap: 5px;
34
            align-items: flex-start;
35
            h4 {
36
                font-weight: 600;
37
            }
38
            p {
39
                color: gray;
40
            }
41
            .btn {
4325 stevensc 42
                border-radius: 30px;
43
                font-weight: 600;
44
                background: transparent !important;
45
                border: 2px solid lightgray !important;
46
                border-radius: 30px;
47
                color: gray !important;
48
                &:hover {
49
                    background: lightgray !important;
50
                    color: #fff !important;
51
                }
4323 stevensc 52
            }
53
        }
54
    }
55
}