63 lines
1.7 KiB
CSS
63 lines
1.7 KiB
CSS
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||
|
|
||
|
/*
|
||
|
* compact.css -- Stylesheet suitable for printing an xmlresume to dead
|
||
|
* trees without using too many of them (Arial font, white background)
|
||
|
*
|
||
|
* Contributed 2002 by Mark Miller (joup at bigfoot dot com)
|
||
|
* http://xmlresume.sourceforge.net
|
||
|
*/
|
||
|
|
||
|
// This dummy style must be here because the xml tags above cause some
|
||
|
// browsers (Konqueror, Mozilla) to ignore the first style
|
||
|
.dummy { background-color: white }
|
||
|
|
||
|
body, table {
|
||
|
margin-top: 1cm;
|
||
|
margin-bottom: 1cm;
|
||
|
font-size: 8pt;
|
||
|
background-color: white;
|
||
|
font-family: Arial, Verdana, sans-serif;
|
||
|
}
|
||
|
|
||
|
.resume {
|
||
|
padding-left: 1.5cm;
|
||
|
padding-right: 1.5cm;
|
||
|
}
|
||
|
h2 {
|
||
|
margin-left: -.8cm;
|
||
|
font-family: sans-serif;
|
||
|
color: black;
|
||
|
border-bottom: solid 1pt black;
|
||
|
font-size: 115%;
|
||
|
}
|
||
|
p {
|
||
|
margin-bottom: 0.05cm;
|
||
|
margin-top: 0.15cm;
|
||
|
}
|
||
|
em { font-weight: bold; }
|
||
|
ul { margin-top: 0.1cm; }
|
||
|
|
||
|
.projects p { font-style: italic }
|
||
|
ul.degrees { padding-left: 0.2cm; }
|
||
|
.subjectsHeading { font-style: italic }
|
||
|
.awardTitle { font-weight: bold }
|
||
|
.bookTitle { font-style: italic }
|
||
|
.citation { font-style: italic }
|
||
|
.copyright { font-size: 75% }
|
||
|
li.degree { margin-bottom: 0.2cm; }
|
||
|
.degreeTitle { font-weight: bold }
|
||
|
.employer { font-style: italic }
|
||
|
.headerBlock { text-align: left }
|
||
|
.jobTitle { font-weight: bold }
|
||
|
.lastModified { font-size: 75% }
|
||
|
.nameHeading { font-family: sans-serif; font-size: 125%; }
|
||
|
div.referee { margin-bottom: 0.5cm; }
|
||
|
table.referees { width: 60%; margin-top: 0cm; margin-bottom: 0cm;}
|
||
|
.refereeName { font-weight: bold }
|
||
|
.skillsetTitle { font-weight: bold }
|
||
|
.urlA { font-family:sans-serif; color:red; }
|
||
|
|
||
|
</xsl:stylesheet>
|