diff options
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/css-cv.org | 55 |
1 files changed, 51 insertions, 4 deletions
diff --git a/resources/css-cv.org b/resources/css-cv.org index c6e279b..4a790b7 100644 --- a/resources/css-cv.org +++ b/resources/css-cv.org @@ -3,6 +3,7 @@ #+TITLE: CV CSS file #+SUBTITLE: CV and resumé styling informations. #+AUTHOR: Marius Peter +#+EMAIL: hire@marius-peter.com #+DATE: <2022-09-24 Sat> #+OPTIONS: toc:nil #+PROPERTY: header-args :tangle cv.css @@ -295,7 +296,7 @@ the main ~#content~ section, except for the title and topnav sections. } img { width: 128px; - border-radius: 64px; + border-radius: 50%; } #+end_src @@ -321,6 +322,7 @@ inhibition). .outline-2 { display: grid; grid-template-columns: 10em auto; + padding-top: 1rem; } h2 { position: sticky; @@ -340,7 +342,7 @@ inhibition). #+BEGIN_SRC css .outline-3 { grid-column: 2; - margin: 1rem; + margin: 0 1rem 1rem; } h3 { padding: 1rem; @@ -403,8 +405,8 @@ targeting A4 sheet dimensions. #+BEGIN_SRC css @page { - size: A4 portrait; - margin: 2cm; + /* size: A4 portrait; */ + margin: 1cm; } @media print { body { @@ -418,5 +420,50 @@ targeting A4 sheet dimensions. .actions { display: none; } + .title, .abstract { + text-align: left; + } + .abstract { + margin: 0; + } + #outline-container-skills ul li { + display: inline; + } + #outline-container-skills ul li:after { + content: " \2022"; + margin: 0 3pt; + } + .no-print { + display: none; + } + .outline-2 { + padding: 0; + } + h2 { + padding: 0.5em 0 0 0; + } + .outline-3 { + margin: 0; + } + h3 { + padding: 0.4em 0 0 0; + } + .outline-text-3 > p, + .outline-text-3 > ul { + margin: 0; + } + p, ul { + margin-bottom: 0; + } + ul { + padding: 0; + } + img { + position: absolute; + top: 0; + right: 0; + width: 140px; + border-radius: 30%; + } } #+END_SRC |