Skip to content

Commit

Permalink
Tweak default theme styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ashenm committed Jan 6, 2024
1 parent 2b917ab commit c68370c
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions themes/default.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
margin: 0 0 0.5mm 0;
}

#resume > .section > .records > .record:not(:first-of-type) {
#resume > .section > .records > .record + .record {
padding: 5mm 0 0 0;
}

Expand All @@ -167,10 +167,14 @@
margin: 0;
}

#resume > .section > .records > .list > .item:not(:last-of-type) > .record::after {
#resume > .section > .records > .list > .item > .record::after {
content: ", ";
}

#resume > .section > .records > .list > .item:last-of-type > .record::after {
content: "";
}

#resume > .section > .records > .list > .item:first-of-type > .record {
text-transform: capitalize;
}
Expand All @@ -183,12 +187,15 @@

@media print {

/* remove all background graphics */
html, body { background-color: initial; }

/* fill resume edge-to-edge */
main { margin: 0; }

/* reset transformations */
/* reduce margins to event height */
#resume { height: calc(100% - 20mm)!important; transform: initial!important; }
#resume { height: 100%!important; transform: initial!important; }

/* remove hyperlink styles */
#resume a { color: inherit; }
Expand Down

0 comments on commit c68370c

Please sign in to comment.