You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
unboundedpress/public/stylesheets/resume_style.css

190 lines
2.6 KiB
CSS

5 years ago
/* Resume styles */
body {
font-size: 12px;
width: 175mm;
margin-top: 30px;
margin-left:auto;
margin-right:auto;
5 years ago
}
hr {
3 years ago
margin-top: 5px;
5 years ago
margin-bottom: 10px;
3 years ago
border: 1px solid #000;
5 years ago
}
a {
color: black;
text-decoration: none; /* no underline */
}
3 years ago
h1 {
font-weight: bold;
}
h4 {
font-weight: bold;
}
5 years ago
.name {
margin-top: 0px;
margin-bottom: 0px;
font-size: 24px;
}
.title {
float: left;
margin-top: 0px;
margin-bottom: 0px;
font-weight: 200;
font-size: 18px;
}
.contact-info ul {
list-style-type: none;
}
.section-title {
font-size: 14px;
margin-left: -45px;
5 years ago
margin-top: 0px;
}
.section-subtitle {
font-size: 14px;
margin-left: -30px;
}
5 years ago
.skill {
font-weight: bold;
}
.skills-ul {
list-style-type: disc;
list-style-position: inside;
padding-left: 0;
margin-left: 0;
}
.skills-ul li {
float: left;
margin-right: 8px;
}
.company, .school {
font-size: 14px;
}
.section {
margin-left: 15px;
3 years ago
margin-bottom: 0px;
}
.entry {
margin-left: 10px;
}
.subsection {
margin-left: 1px;
5 years ago
}
.company-position {
padding-left: 30px
5 years ago
}
.company-summary {
3 years ago
font-size: 13px;
margin-bottom: -5px;
margin-bottom: 0px;
5 years ago
}
.company-description {
3 years ago
font-size: 13px;
margin-bottom: -3px;
padding-left: 30px;
text-indent: -15px;
}
.bib {
padding-left: 15px;
3 years ago
margin-bottom: 10px;
5 years ago
}
.company-description ul {
padding-left: 0px;
list-style-type: none;
}
.education-section {
margin-bottom: 5px;
}
.work-info {
margin-left: -30px;
}
.venue-info {
margin-left: 15px;
}
5 years ago
.education-gpa {
padding-left: 2px;
}
.education-gpa-text {
padding-left: 4px;
}
.pagebreak { page-break-before: always; }
.separator {
display: flex;
align-items: center;
text-align: center;
3 years ago
margin-top: -5px;
color: solid #000 !important;
-webkit-print-color-adjust: exact;//:For Chrome
color-adjust: exact;//:For Firefox
}
.separator::before {
content: '';
flex: 1;
3 years ago
border-bottom: 1px solid #000;
}
.separator:not(:empty)::before {
margin-right: .25em;
}
.separator:not(:empty)::after {
margin-left: .25em;
}
5 years ago
@media print {
@page {
margin: 15mm;
5 years ago
}
body {
margin-top: 0px;
margin-left:auto;
margin-right:auto;
}
5 years ago
.entry { page-break-inside: avoid;}
.h4 { page-break-after: avoid;}
5 years ago
.section { page-break-before: avoid;}
.section-subtitle { page-break-after: avoid;}
5 years ago
}
@page {
counter-increment: page;
counter-reset: page 1;
@bottom-middle {
content: counter(page);
}
}