Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6788 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6788 Rev 6792
Línea 42... Línea 42...
42
            color: $title-color;
42
            color: $title-color;
43
            font-size: 18px;
43
            font-size: 18px;
44
            font-weight: 600;
44
            font-weight: 600;
45
        }
45
        }
46
    }
46
    }
-
 
47
}
-
 
48
 
-
 
49
.profile-info {
-
 
50
    @include mixins.widget;
-
 
51
    align-items: center;
-
 
52
    display: flex;
-
 
53
    flex-direction: column;
-
 
54
    gap: .5rem;
-
 
55
    padding: 1rem;
-
 
56
    text-align: center;
-
 
57
 
-
 
58
    img {
-
 
59
        border-radius: 50%;
-
 
60
        border: 2px solid $font-color;
-
 
61
        height: 150px;
-
 
62
        width: 150px;
-
 
63
    }
-
 
64
 
-
 
65
    h3 {
-
 
66
        color: $title-color;
-
 
67
        font-size: 1.1rem;
-
 
68
        font-weight: 600;
-
 
69
    }
-
 
70
 
-
 
71
    span {
-
 
72
        color: $subtitle-color
-
 
73
    }
-
 
74
 
-
 
75
    svg,
-
 
76
    b {
-
 
77
        color: $font-color;
-
 
78
    }
-
 
79
 
-
 
80
    .row {
-
 
81
        gap: .5rem;
-
 
82
    }
-
 
83
 
-
 
84
    .social-network-header {
-
 
85
        display: flex;
-
 
86
        align-items: center;
-
 
87
        justify-content: center;
-
 
88
        position: relative;
-
 
89
        width: 100%;
-
 
90
 
-
 
91
        button {
-
 
92
            position: absolute;
-
 
93
            right: 15%;
-
 
94
 
-
 
95
            svg {
-
 
96
                font-size: 1.2rem;
-
 
97
            }
-
 
98
        }
-
 
99
    }
-
 
100
 
-
 
101
    .social-links {
-
 
102
        display: flex;
-
 
103
        flex-direction: column;
-
 
104
        gap: .5rem;
-
 
105
        width: 100%;
-
 
106
 
-
 
107
        li {
-
 
108
            border-bottom: 1px solid $border-primary;
-
 
109
 
-
 
110
            a {
-
 
111
                display: flex;
-
 
112
                align-items: center;
-
 
113
                gap: .5rem;
-
 
114
 
-
 
115
                svg {
-
 
116
                    color: $font-color
-
 
117
                }
-
 
118
 
-
 
119
                span {
-
 
120
                    white-space: nowrap;
-
 
121
                    max-width: -webkit-fill-available;
-
 
122
                    text-overflow: ellipsis;
-
 
123
                    overflow: hidden;
-
 
124
                }
-
 
125
            }
-
 
126
        }
-
 
127
    }
47
}
128
}
48
129