diff options
author | Aaron Ball <nullspoon@oper.io> | 2023-11-09 10:25:29 -0700 |
---|---|---|
committer | Aaron Ball <nullspoon@oper.io> | 2023-11-09 10:25:29 -0700 |
commit | 9df7aa0922e947c5c0824754d90086ddda54b945 (patch) | |
tree | 0befc59149a2ad65bb42ab86a9a591f4dbed4470 | |
parent | 0d76858b0ec0a6902fe66aa945f3e045bac55508 (diff) | |
download | resume-9df7aa0922e947c5c0824754d90086ddda54b945.tar.gz resume-9df7aa0922e947c5c0824754d90086ddda54b945.tar.xz |
Set background gradient and a few sizing tweaks
-rw-r--r-- | res/style-markdown.css | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/res/style-markdown.css b/res/style-markdown.css index e97c2a0..6f7a776 100644 --- a/res/style-markdown.css +++ b/res/style-markdown.css @@ -3,6 +3,7 @@ body { background:#fff; background-color:#fff; font-family:'DejaVu Sans'; + background-image:linear-gradient(to top right, #211, #222f30); text-align:left; letter-spacing:-.2px; @@ -18,15 +19,17 @@ body { @media screen { body { - margin-top:60px; - width:8.5in; + background-color:#fff; + } + div#resume { + margin:50px auto; + width:9.5in; padding:.5in; - border:1px solid #aaa; - box-shadow: 0px 0px 9px #999; - margin-left:auto; - margin-right:auto; - + background-color:#fefefe; font-size:14px; + /*border:1px solid #eee;*/ + border-radius:2px; + box-shadow: 1px 1px 7px #aaa; } } @@ -43,6 +46,7 @@ h1 { margin-top:1.2em; margin-bottom:0.2em; background-color:#fbfbfb; + background-image:linear-gradient(to left, #f5f7fd, #fff); } h2 { @@ -68,6 +72,10 @@ ul { list-style-type:none; } +div#employment ul { + margin-bottom:20px; +} + div#employment ul li { border-left:2px dotted #888; padding-left:.7em; @@ -121,7 +129,8 @@ div#education { margin:8mm 7mm; } body { - font-size:10pt; + font-size:8pt; + background-image:none; } } |