Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5482 | Rev 5485 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5471 stevensc 1
@use "../../settings/mixins.scss";
2
 
3
.profile_info {
4
    width: 100%;
5
    padding: 25px 20px;
6
    border: 1px solid $border-primary;
7
    background-color: $bg-color;
8
    text-align: center;
9
    border-radius: 10px;
10
 
11
    h3 {
12
        justify-content: flex-start;
13
        font-weight: 700;
14
        font-size: 1.3rem;
15
        text-align: left;
16
    }
17
 
18
    h4 {
19
        position: absolute;
20
        bottom: 0;
21
    }
22
 
23
    ul {
24
        display: flex;
25
        gap: 5px;
26
        justify-content: space-around;
27
    }
28
 
29
    hr {
30
        width: 80%;
31
        margin: 1rem auto;
32
    }
33
 
34
    &_header {
35
        display: flex;
36
        position: relative;
37
 
38
        &_imgContainer {
39
            overflow: hidden;
40
            border-radius: 100px;
41
            margin: 0 auto;
42
 
43
            img {
44
                background: #fff;
45
            }
46
        }
47
    }
48
}
49
 
50
.profile-info {
51
    @include mixins.widget;
52
    align-items: center;
53
    display: flex;
54
    flex-direction: column;
55
    gap: .5rem;
56
    padding: 1rem;
57
    text-align: center;
58
 
59
    img {
60
        border-radius: 50%;
61
        border: 2px solid $font-color;
62
        height: 150px;
63
        width: 150px;
64
    }
65
 
66
    h3 {
67
        color: $title-color;
68
        font-size: 1.1rem;
69
        font-weight: 600;
70
    }
71
 
72
    span {
73
        color: $subtitle-color
74
    }
75
 
76
    svg,
77
    b {
78
        color: $font-color;
79
    }
80
 
81
    .row {
82
        gap: .5rem;
83
    }
5474 stevensc 84
}
85
 
86
.profile-attr {
87
    @include mixins.widget;
88
    padding: 1rem;
5475 stevensc 89
    display: flex;
90
    flex-direction: column;
91
    gap: .5rem;
5474 stevensc 92
 
93
    span,
5476 stevensc 94
    p {
5474 stevensc 95
        color: $font-color;
96
    }
97
 
5484 stevensc 98
    ul {
99
        display: flex;
100
        flex-direction: column;
101
        gap: 1rem;
102
 
103
        a {
104
            background-color: $font-color;
105
            border-radius: 30px;
106
            color: $bg-color;
107
            font-size: 14px;
108
            font-weight: 600;
109
            padding: .5rem 1rem;
110
            width: fit-content;
111
        }
112
    }
113
 
5474 stevensc 114
    &-header {
115
        display: flex;
116
        align-items: center;
5475 stevensc 117
        justify-content: space-between;
5476 stevensc 118
 
5481 stevensc 119
        h2 {
5476 stevensc 120
            color: $title-color;
121
            font-size: 18px;
122
            font-weight: 600;
123
        }
5474 stevensc 124
    }
5476 stevensc 125
}
126
 
5478 stevensc 127
.experience-item,
128
.education-item {
5476 stevensc 129
    display: flex;
130
    flex-direction: column;
131
    gap: .5rem;
132
 
5482 stevensc 133
    h4 {
134
        font-size: 1rem;
135
        color: $font-color;
136
        font-weight: 600;
137
    }
138
 
5476 stevensc 139
    &-header {
140
        display: flex;
141
        align-items: center;
142
        justify-content: space-between;
143
 
5481 stevensc 144
        h3 {
5476 stevensc 145
            font-size: 1.1rem;
146
            color: $subtitle-color;
147
            font-weight: 600;
148
        }
5481 stevensc 149
 
5476 stevensc 150
    }
5471 stevensc 151
}