Initial commit

This commit is contained in:
2021-05-03 09:15:49 +02:00
commit 0e5638da3e
82 changed files with 1704 additions and 0 deletions
@@ -0,0 +1,8 @@
.pageNotFound {
padding-top: 8rem;
@include hz-center;
&__text {
padding-top: 3rem;
}
}
@@ -0,0 +1,30 @@
.avatar {
width: 100%;
height: $width-right-col - 6rem;
position: relative;
overflow: hidden;
&__container {
@include hz-center;
width: 100%;
clip-path: circle(50% at 50% 56%);
height: $width-right-col - 8rem;
text-align: center;
transition: all 0.3s cubic-bezier($cubic);
&:hover {
width: 110%;
}
}
&__img {
object-fit: cover;
width: 110%;
transition: all 0.3s cubic-bezier($cubic);
@include all-center;
&:hover {
width: 105%;
}
}
}
@@ -0,0 +1,24 @@
.contact {
line-height: 2rem;
&__item {
position: relative;
font-size: 1rem;
& > i {
background-color: $color-primary;
color: $color-primary-text;
font-size: 1rem;
text-align: center;
border-radius: 50%;
padding-top: 0.5rem;
width: 2rem;
height: 2rem;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
}
& > span {
@include vt-center;
}
}
}
@@ -0,0 +1,5 @@
.education {
&__item {
@include avoid-break;
}
}
@@ -0,0 +1,88 @@
.experience {
&__item {
display: block;
@include avoid-break;
&:not(:first-child) {
padding-top: 1.5rem;
}
}
&__header,
&__subheader {
display: block;
width: 100%;
height: 2.4rem;
}
&__job {
position: relative;
transition: transform 0.2s cubic-bezier($cubic);
&:hover {
transform: translateX(0.5rem);
}
}
&__company,
&__position {
text-align: left;
width: 70%;
float: left;
}
&__company {
color: $color-grey-dark;
}
&__position {
text-transform: uppercase;
font-size: 1.3rem;
color: $color-grey-dark;
}
&__date,
&__place {
float: right;
text-align: right;
width: 30%;
color: $color-secondary;
}
&__date {
font-weight: 400;
}
&__place {
&::before {
font-family: 'Material Icons';
color: $color-primary;
font-size: 1.4rem;
content: 'place';
display: inline-block;
padding-right: 3px;
vertical-align: middle;
font-weight: 900;
}
}
&__bullet {
list-style-position: inside;
}
&__badges {
display: block;
text-align: right;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
}
&__badge {
font-size: 0.9rem;
font-weight: 400;
display: inline-block;
background-color: $color-primary;
color: $color-primary-text;
border-radius: 1rem;
padding: 0.1rem 0.6rem;
}
}
@@ -0,0 +1,12 @@
.interests {
display: block;
-moz-column-count: 2;
column-count: 2;
width: 100%;
text-align: right;
@include avoid-break;
&__item:nth-child(n+4) {
text-align: left;
}
}
@@ -0,0 +1,15 @@
.language {
&__item {
display: table;
width: 100%;
}
&__name,
&__level {
display: table-cell;
width: 50%;
}
&__level {
text-align: right;
}
}
@@ -0,0 +1,30 @@
.section {
display: block;
margin-bottom: 2rem;
&__heading {
width: 100%;
overflow: hidden;
}
&__title {
position: relative;
&::after {
content: '';
position: absolute;
border-top: 1px solid;
border-bottom: 1px solid;
border-color: $color-secondary;
width: 50rem;
height: 4px;
margin-left: 1.5rem;
margin-top: 1.5rem;
transition: all 0.5s ease-in-out;
}
&:hover::after {
border-color: $color-primary;
}
}
}
@@ -0,0 +1,39 @@
.sideSection {
display: block;
margin-bottom: 3rem;
@include avoid-break;
&__heading {
width: 100%;
overflow: hidden;
text-align: center;
margin-bottom: 1rem;
}
&__title {
position: relative;
&::after,
&::before {
content: '';
position: absolute;
border-top: 1px solid $color-secondary;
border-bottom: 1px solid $color-secondary;
width: 10rem;
height: 4px;
margin-top: 1.1rem;
}
&::after {
margin-left: 1rem;
}
&::before {
margin-left: -11rem;
}
}
& li {
list-style: none;
}
}
@@ -0,0 +1,35 @@
.skills {
&__group {
& span {
font-weight: 700;
display: inline-block;
&::after{
content: ":"
}
&:hover ~ li {
background-color: $color-primary;
color: $color-white;
}
}
& li{
display: inline-block;
font-weight: 400;
transition: all 0.2s ease-in-out;
padding: 0 1px;
border-radius: 2px;
&:not(:last-child)::after{
content: ", "
}
&:hover {
background-color: $color-primary;
color: $color-white;
}
}
}
}