diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/resume.css | 41 |
1 files changed, 24 insertions, 17 deletions
diff --git a/css/resume.css b/css/resume.css index 30054e8..cc1fe53 100644 --- a/css/resume.css +++ b/css/resume.css @@ -6,22 +6,30 @@ body { color: #333; max-width: 40em; margin: 1em auto; - padding: 0em 1em; + padding: 0 1em; border: 1px solid #000; box-shadow: -1rem 1rem 0 0 rgba(0, 0, 0, 0.1); } +a, a:visited { + color: #1455FB; + text-decoration: none; +} + h1, h2, h3, b { color: #000; } -ul { - margin-top: 0; +h2 { + margin-bottom: 0; } -a, a:visited { - color: #1455FB; - text-decoration: none; +h3 { + margin-bottom: 0.5em; +} + +ul { + margin-top: 0; } #blurb { @@ -32,6 +40,10 @@ a, a:visited { list-style: none; } +#pdf { + font-size: 0.5em; +} + .title { display: flex; flex-direction: row; @@ -42,19 +54,11 @@ a, a:visited { margin-top: 0; } -h2 { - margin-bottom: 0; -} - -h3 { - margin-bottom: 0.5em; -} - -h2::after { +/* h2::after { content: ""; width: 100px; border-top: 2px solid #333; -} +} */ @media screen and (max-width: 700px) { /* todo: fix lumping of contact section on the se/seii size */ @@ -65,7 +69,7 @@ h2::after { } @page { - /* todo: fit the resume all on one page */ + /* todo: fit the resume all on one page in firefox */ size: auto; margin: 2mm; } @@ -83,4 +87,7 @@ h2::after { b > a::after { content: ": " attr(href) } + #pdf { + display: none; + } } |