Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5481 | Rev 5484 | 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
 
98
    &-header {
99
        display: flex;
100
        align-items: center;
5475 stevensc 101
        justify-content: space-between;
5476 stevensc 102
 
5481 stevensc 103
        h2 {
5476 stevensc 104
            color: $title-color;
105
            font-size: 18px;
106
            font-weight: 600;
107
        }
5474 stevensc 108
    }
5476 stevensc 109
}
110
 
5478 stevensc 111
.experience-item,
112
.education-item {
5476 stevensc 113
    display: flex;
114
    flex-direction: column;
115
    gap: .5rem;
116
 
5482 stevensc 117
    h4 {
118
        font-size: 1rem;
119
        color: $font-color;
120
        font-weight: 600;
121
    }
122
 
5476 stevensc 123
    &-header {
124
        display: flex;
125
        align-items: center;
126
        justify-content: space-between;
127
 
5481 stevensc 128
        h3 {
5476 stevensc 129
            font-size: 1.1rem;
130
            color: $subtitle-color;
131
            font-weight: 600;
132
        }
5481 stevensc 133
 
5476 stevensc 134
    }
5471 stevensc 135
}