make-resume-theme-base
Version:
Base is a built-in and the default theme for Make Resume.
93 lines (83 loc) • 1.37 kB
CSS
body {
font-family: var(--font-family);
}
/* utils */
.bg-primary {
background-color: var(--clr-primary);
}
.m-auto {
margin: auto;
}
.mb-sm-4 {
margin-bottom: 1rem ;
}
.c-container {
width: 842px;
margin: 0 auto;
}
.c-container__padded {
padding: 0 2rem 0 3.5rem;
}
.section-title {
color: var(--clr-primary) ;
position: relative;
display: inline-block;
}
.section-title::before {
font-family: "Font Awesome 5 Free";
position: absolute;
left: -2rem;
}
.work-title::before {
content: "\f0b1";
}
.volunteer-title::before {
content: "\f4c4";
left: -2.3rem;
}
.education-title::before {
content: "\f19c";
}
.awards-title::before {
content: "\f559";
left: -1.8rem;
}
.interests-title::before {
content: "\f192";
}
.languages-title::before {
content: "\f0ac";
}
.references-title::before {
content: "\f069";
}
.skills-title::before {
content: "\f192";
}
.publications-title::before {
content: "\f249";
}
.items {
list-style: none ;
display: flex;
padding: 0 ;
margin: 0 ;
margin-left: 1rem ;
}
.items li {
padding: 0.2rem 0.4rem;
margin: 0 ;
margin-right: 0.4rem ;
font-weight: 600;
background: lightgray;
}
@media screen and (min-width: 769px), print {
.mb-sm-4 {
margin-bottom: 0 ;
}
}
@media print {
.c-container {
width: 100%;
}
}