Skip to content

Instantly share code, notes, and snippets.

@felipelavinz
Created November 13, 2020 02:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save felipelavinz/a970717df1b352172cc1ff23ac303cea to your computer and use it in GitHub Desktop.
Save felipelavinz/a970717df1b352172cc1ff23ac303cea to your computer and use it in GitHub Desktop.
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
font-family: "Montserrat", sans-serif;
}
body {
background: #585c68;
font-size: 14px;
line-height: 22px;
color: #555555;
}
.bold {
font-weight: 700;
font-size: 20px;
text-transform: uppercase;
}
.semi-bold {
font-weight: 500;
font-size: 16px;
}
.resume {
width: 800px;
height: auto;
display: flex;
margin: 50px auto;
}
.resume .resume_left {
width: 280px;
background: #3342FF;
}
.resume .resume_left .resume_info .semi-bold {
color: #fff;
margin-bottom: 3px;
}
.resume .resume_left .resume_content {
padding: 0 25px;
}
.resume .title {
margin-bottom: 20px;
color: #3342FF
}
.resume .resume_left .bold {
color: #fff;
}
.resume .resume_left .regular {
color: #dcdfff;
}
.resume .resume_item {
padding: 25px 0;
border-bottom: 2px solid #ffffff;
}
.resume .resume_left .resume_item:last-child,
.resume .resume_right .resume_item:last-child {
border-bottom: 0px;
}
.resume .resume_left ul li {
display: flex;
margin-bottom: 10px;
align-items: center;
}
.resume .resume_left ul li:last-child {
margin-bottom: 10;
}
.resume .resume_left ul li .data {
color: #A7AEFF;
}
.resume .resume_left .resume_skills ul li {
display: flex;
margin-bottom: 10px;
color: #A7AEFF;
justify-content: space-between;
align-items: center;
}
.resume .resume_left .resume_skills ul li .skill_name {
width: 25%;
}
.resume .resume_left .resume_skills ul li .skill_per {
width: 15%;
}
.resume .resume_left .resume_skills ul li .skill_progress span {
position: absolute;
top: 0;
left: 0;
height: 100%;
background: #fff;
}
.resume .resume_left .resume_social .semi-bold {
color: #fff;
margin-bottom: 3px;
}
.resume .resume_right {
width: 520px;
background: #fff;
padding: 25px;
}
.resume .resume_right .bold {
color: #3342FF;
}
.resume .resume_right .resume_work ul,
.resume .resume_right .resume_education ul {
padding-left: 40px;
overflow: hidden;
}
.resume .resume_right ul li {
position: relative;
}
.resume .resume_right ul li .date {
font-size: 16px;
font-weight: 500;
margin-bottom: 15px;
}
.resume .resume_right ul li .info {
margin-bottom: 20px;
}
.resume .resume_right ul li:last-child .info {
margin-bottom: 0;
}
.resume .resume_right .resume_work ul li:before,
.resume .resume_right .resume_education ul li:before {
content: "";
position: absolute;
top: 5px;
left: -25px;
width: 6px;
height: 6px;
border-radius: 50%;
border: 2px solid #3342FF;
}
.resume .resume_right .resume_work ul li:after,
.resume .resume_right .resume_education ul li:after {
content: "";
position: absolute;
top: 14px;
left: -21px;
width: 2px;
height: 115px;
background: #3342FF;
}
.resume .resume_right .resume_hobby ul {
display: flex;
justify-content: space-between;
}
.resume .resume_right .resume_hobby ul li {
width: 80px;
height: 80px;
border: 2px solid #3342FF;
border-radius: 50%;
position: relative;
color: #3342FF;
}
.resume .resume_right .resume_hobby ul li i {
font-size: 30px;
}
.resume .resume_right .resume_hobby ul li:before {
content: "";
position: absolute;
top: 40px;
right: -52px;
width: 50px;
height: 2px;
background: #3342FF;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment