diff options
Diffstat (limited to 'resume.css')
-rw-r--r-- | resume.css | 43 |
1 files changed, 33 insertions, 10 deletions
@@ -37,6 +37,10 @@ body { a:link, a:visited { color:#444; } a:hover { color:#999; } +strong { + color:#444; +} + h2 { text-align:right; color:#000; @@ -106,7 +110,8 @@ div.resume-author-contact { display:inline-block; } -div.resume-author-contact ul { +div.resume-author-contact ul, +div.resume-author-contact div { margin:0px; padding-left:0px; list-style-type:none; @@ -114,7 +119,9 @@ div.resume-author-contact ul { } div.resume-author-contact ul li, -div.resume-author-contact ul li a { +div.resume-author-contact ul li a, +div.resume-author-contact div.line, +div.resume-author-contact div.line a { text-decoration:none; color:#111; font-family: mono; @@ -136,31 +143,44 @@ div.job { margin-left:7px; } -div.job ul { +div.job ul, +ul.job { list-style-type: none; padding-left:5px; margin-top:10px; } -div.job ul li { +div.job ul li, +ul.job li { border-left:2px dotted #888; padding-left:7px; margin-top:7px; margin-bottom:7px; } -div.job table { +div.job table, +table.job { margin-top:30px; margin-bottom:0px; width:100%; + border:none; +} + +div.job table td, +div.job table th, +table.job td, +table.job th { + border:none; } -div.job table td p { +div.job table td p, +table.job td p { margin:0px; } /* Top left cell (company and location) */ -div.job table tr:first-child td:first-child { +div.job table tr:first-child td:first-child, +table.job tr:first-child td:first-child { white-space:nowrap; color:#222; font-size:1.3em; @@ -168,20 +188,23 @@ div.job table tr:first-child td:first-child { } /* Top right cell (duration at job) */ -div.job table tr:first-child td:last-child p { +div.job table tr:first-child td:last-child p, +table.job tr:first-child td:last-child p { text-align:right; color:#777; } /* Bottom left cell (job title) */ -div.job table tr:last-child td:first-child p { +div.job table tr:last-child td:first-child p, +table.job tr:last-child td:first-child p { font-size:1em; font-style:italic; color:#777; } /* Bottom right cell (contract) */ -div.job table tr:last-child td:last-child p { +div.job table tr:last-child td:last-child p, +table.job tr:last-child td:last-child p { color:#555; font-size:1em; font-style:italic; |