From 9ced61c2894a58578d1fab45840d19f195786be6 Mon Sep 17 00:00:00 2001 From: Andrei Alexeyev Date: Tue, 29 Oct 2024 02:49:36 +0100 Subject: [PATCH] css: tweak bg color, font, list indents --- resume.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/resume.css b/resume.css index 53f5f67..d560ec2 100644 --- a/resume.css +++ b/resume.css @@ -2,6 +2,11 @@ main, div.document { padding-bottom: 2em; } +body { + font-family: Calibri, sans-serif; + background-color: #7d7785; +} + .mid { text-align: center; } @@ -31,3 +36,18 @@ hr.docutils { .project-desc { margin-left: 1em; } + +blockquote { + margin-right: 0; + margin-left: 0; + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +dd { + margin-left: 0; +} + +dd > ul:only-child { + padding-left: revert; +}