Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_resume-section.scss « components « scss « assets - github.com/StaticMania/portio-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df00791744977a1c859962467371430cb06ddbe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
.resume{
    position: relative;
    margin-bottom: 100px;
    padding: 150px 0;
    @include desktop{
        margin-bottom: 40px;
        padding: 100px 0;
    }
    &__background{
        background: #1B2031;
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        transform: skewY(-2deg);
    }
    &__heading{
        margin-right: 100px;
        position: sticky;
        position: -webkit-sticky;
        top: 150px;
        @include desktop{
            margin-right: 0;
            margin-bottom: 30px;
        }
        span{
            font-size: 20px;
            font-family: $secondary-font;
            color: $white;
            position: relative;
            display: block;
            margin: 0 0 20px 30px;
            &::before{
                position: absolute;
                content: '';
                height: 2px;
                width: 20px;
                top: 50%;
                left: -20px;
                transform: translateX(-50%);
                background: $white;
            }
        }
        h1{
            margin: 0 0 30px 0;
            font-size: 55px;
            font-family: $primary-font;
            color: $white;
            line-height: 50px;
        }
        p{
            margin: 0 0 0 0;
            font-family: $secondary-font;
            color: $white;
            font-size: 18px;
            line-height: 34px;
        }
        ul{
            margin: 40px 0 0 0;
            padding: 0;
            &.nav-tabs{
                border-bottom: none;
            }
            li{
                list-style: none;
                display: inline-block;
                // a {
                //     padding: 15px 40px;
                //     text-decoration: none;
                //     display: block;
                //     background: $white;
                //     color: $secondary-color;
                //     font-family: $secondary-font;
                //     font-size: 16px;
                //     transition: all .3s ease;
                //     @include mobile-s{
                //         padding: 15px 28px;
                //     }
                //     &:hover{
                //         background: #425FEE;
                //         color: $white;
                //         box-shadow: 0 8px 20px 0 rgba(56, 87, 241, 0.30);
                //     }
                //     &.active{
                //         background: $primary-color;
                //         color: $white;
                //         box-shadow: 0 8px 20px 0 rgba(56, 87, 241, 0.30);
                //         &:hover{
                //             background: #425FEE;
                //         }
                //     }
                // }
                &:nth-child(1){
                    a{
                        border-radius: 7px 0 0 7px;
                    }
                }
                &:nth-child(2){
                    margin-left: -5px;
                    a{
                        border-radius: 0 7px 7px 0;
                    }
                }
            }
        }
    }
    &__education{
        &_item{
            background: $white;
            padding: 30px;
            border-radius: 20px;
            margin-bottom: 30px;
            box-shadow: 0px 20px 40px 0px rgba(50, 65, 141, 0.12);
            span{
                color: $primary-color;
                display: block;
                font-size: 16px;
                font-family: $secondary-font;
                margin: 0 0 20px 30px;
                position: relative;
                line-height: 1;
                &::before{
                    position: absolute;
                    content: '';
                    height: 2px;
                    width: 20px;
                    top: 50%;
                    left: -20px;
                    transform: translateX(-50%);
                    background: $secondary-color;
                }
            }
            h4{
                font-size: 25px;
                font-family: $primary-font;
                color: $secondary-color;
                margin: 0 0 30px 0;
                line-height: 1;
            }
            p{
                line-height: 34px;
                font-family: $secondary-font;
                color: #7E7E8A;
                font-size: 16px;
                margin: 0;
            }
        }
    }
}