From 6ffb41b23efd5412bf6f55dfd7e5e511e842e6aa Mon Sep 17 00:00:00 2001 From: Dejvino Date: Thu, 21 May 2026 15:25:25 +0200 Subject: [PATCH] interests style in printing --- style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/style.css b/style.css index d4fe5bb..65fceb1 100644 --- a/style.css +++ b/style.css @@ -848,4 +848,19 @@ a { color: var(--link-color); text-decoration: none; } /* Ensure hidden elements stay hidden in print */ .hidden { display: none !important; } .cv-mode .hidden { display: none !important; } + + /* Render interests as horizontal pills in print */ + .personal-tags { + flex-direction: row !important; + flex-wrap: wrap !important; + gap: 4px !important; + } + .personal-tag { + display: inline-flex !important; + align-items: center !important; + padding: 2px 8px !important; + border: 1px solid #ccc !important; + border-radius: 3px !important; + background: #f7f7f7 !important; + } }