mirror of
https://github.com/there4/markdown-resume.git
synced 2024-12-03 08:59:35 -05:00
* Adding a new blockish theme with a blue header and an adaptive design. * Printable PDF version still needs some work, but overall, this is a nice layout.
21 lines
319 B
CSS
21 lines
319 B
CSS
body.pdf {
|
|
color: black;
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
.container {
|
|
width: 1000px;
|
|
margin: 0 auto;
|
|
padding: 0;
|
|
background: none;
|
|
border: none;
|
|
text-align: left;
|
|
}
|
|
|
|
a[href$='.pdf'] {
|
|
display: none;
|
|
}
|
|
}
|