mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
88173d6e95
The pdf doesn't appear to read the media queries correctly, the pdf.css file provides the missing style rules now.
109 lines
1.7 KiB
CSS
109 lines
1.7 KiB
CSS
body.pdf {
|
|
color: black;
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
.container {
|
|
width: 1000px;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
background: none;
|
|
border: none;
|
|
border-width: 8px 0 2px 0;
|
|
text-align: left;
|
|
}
|
|
|
|
.resume {
|
|
position:relative;
|
|
padding: 40px 80px;
|
|
}
|
|
|
|
a[href$='.pdf'] {
|
|
display: none;
|
|
}
|
|
|
|
h1 {
|
|
letter-spacing: 0;
|
|
}
|
|
h2 {
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
blockquote {
|
|
top: 40px;
|
|
right: 50px;
|
|
position: absolute;
|
|
}
|
|
h1 {
|
|
margin-top: 0;
|
|
font-size: 48px;
|
|
text-transform: uppercase;
|
|
font-weight: normal;
|
|
}
|
|
h2 {
|
|
text-transform: uppercase;
|
|
font-style: italic;
|
|
font-weight: normal;
|
|
}
|
|
|
|
h3 {
|
|
float: left;
|
|
width: 16%;
|
|
}
|
|
|
|
h3+p {
|
|
float: left;
|
|
width: 84%;
|
|
}
|
|
|
|
ul li {
|
|
width: 28%;
|
|
float: left;
|
|
}
|
|
ul dl {
|
|
dt {
|
|
font-size: 122%;
|
|
font-weight: normal;
|
|
margin-bottom: .75em;
|
|
}
|
|
dd {
|
|
padding: 0 4em 0 0;
|
|
}
|
|
}
|
|
|
|
ol {
|
|
float: left;
|
|
width: 84%;
|
|
margin: .6em 0 0;
|
|
}
|
|
|
|
ol li {
|
|
width: 33%;
|
|
margin: 0;
|
|
}
|
|
ol li:nth-child(3n) {
|
|
width: 34%;
|
|
}
|
|
ol li:nth-child(1), ol li:nth-child(2), ol li:nth-child(3) {
|
|
border-top: none;
|
|
}
|
|
|
|
dl {
|
|
margin: .5em 0 0;
|
|
dt {
|
|
}
|
|
dd {
|
|
}
|
|
strong {
|
|
float: right;
|
|
margin-top: -2em;
|
|
}
|
|
em {
|
|
font-size: 130%;
|
|
font-style: normal;
|
|
}
|
|
|
|
}
|
|
|
|
} |