From 71d4b21a43cd7fe289dc18c750ca4e3654d3a584 Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Tue, 12 Mar 2024 22:59:43 +0100 Subject: Update changelog --- src/changelog/index.gsp | 77 +++++++++++++++++++++++++++++++++++++++++++++++++ src/style.css | 47 ++++++++++++++++++------------ 2 files changed, 106 insertions(+), 18 deletions(-) diff --git a/src/changelog/index.gsp b/src/changelog/index.gsp index 059f9c6..8b01953 100644 --- a/src/changelog/index.gsp +++ b/src/changelog/index.gsp @@ -22,6 +22,83 @@ html lang="en" { } } + __entry([12-03-2024], [ + p {- + It’s been a while since my last update, but I have quite a lot of new + finds. Recently a meetup took place in Luxembourg and I met quite a + few people and did quite a few trades. I also got myself many rolls + including 20 or so 1c rolls from Germany and Belgium. The new finds + include 32 standard coins, 2 commemorative coins, and 15 banknotes. + } + + p {- + The standard coins are: + @ul { + li {-Andorra 2c 2022} + li {-Andorra 10c 2022} + li {-Andorra 20c 2017} + li {-Andorra 20c 2022} + li {-Belgium 1c 2003} + li {-Belgium 1c 2009} + li {-Belgium 1c 2011} + li {-Belgium 1c 2015} + li {-Finland 20c 2008} + li {-Finland 20c 2010} + li {-France 1c 2005} + li {-France 1c 2017} + li {-France 1c 2019} + li {-Germany 1c 2009-J} + li {-Germany 2c 2009-F} + li {-Germany 20c 2023-J} + li {-Germany 50c 2023-G} + li {-Italy 1c 2003} + li {-Italy 2c 2004} + li {-Lithuania €2 2021} + li {-Luxembourg 1c 2023 (KNM)} + li {-Luxembourg 2c 2023 (KNM)} + li {-Luxembourg 10c 2023 (KNM)} + li {-Luxembourg 10c 2023 (MdP)} + li {-Luxembourg 20c 2023 (MdP)} + li {-Luxembourg 50c 2023 (KNM)} + li {-Monaco €1 2021} + li {-Monaco €1 2022} + li {-Monaco €2 2012} + li {-Netherlands 1c 2013} + li {-Slovenia 20c 2023} + li {-Spain 2c 2019} + } + } + + p {- + The commemorative coins are: + @ul { + li {-France 2023 ‘Rugby World Cup’} + li {-Italy 2009 ‘Louis Braille’} + } + } + + p {- + The banknotes are: + @ul { + li {-€5 Austria (WD; 2002)} + li {-€5 France (WD; 2002)} + li {-€5 Italy (WD; 2002)} + li {-€10 Germany (WD; 2002)} + li {-€20 Netherlands (WD; 2002)} + li {-€50 Germany-W (CL; Europa)} + li {-€50 Greece (CL; Europa)} + li {-€50 Slovenia (MD; 2002)} + li {-€100 France (WD; 2002)} + li {-€100 Ireland (WD; 2002)} + li {-€100 Spain (MD; 2002)} + li {-€200 Germany (JCT; 2002)} + li {-€200 Germany (MD; 2002)} + li {-€200 Austria (MD; Europa Test Note)} + li {-€500 Austria (MD; 2002)} + } + } + ]) + __entry([12-02-2024], [ p {- I just got back from a week-long trip to Portugal. I’m a bit tired so diff --git a/src/style.css b/src/style.css index 2e96bfc..e2e5f20 100644 --- a/src/style.css +++ b/src/style.css @@ -34,6 +34,7 @@ --secondary-hover-color: #282828; --tertiary-hover-color: #313131; + --font-size: 1rem; --font-color: #FFF; --font-opacity: 87%; --font-secondary-opacity: 60%; @@ -41,6 +42,8 @@ --background-image-opacity: 30%; --slant-delta: 40px; + + --width: 95%; } @media only screen and (min-width: 800px) { @@ -251,40 +254,48 @@ header h6 { } } -p { - text-align: justify; - font-size: 1rem; - line-height: 2rem; - width: 95%; -} - @media only screen and (min-width: 800px) { - p { - font-size: 1.3rem; + :root { + --font-size: 1.3rem; } } @media only screen and (min-width: 1000px) { - p { - font-size: 1.4rem; - width: 75%; + :root { + --font-size: 1.4rem; + --width: 75%; } } @media only screen and (min-width: 1400px) { - p { - font-size: 1.5rem; - width: 65%; + :root { + --font-size: 1.5rem; + --width: 65%; } } @media only screen and (min-width: 1800px) { - p { - font-size: 1.5rem; - width: 50%; + :root { + --font-size: 1.5rem; + --width: 50%; } } +p { + text-align: justify; + font-size: var(--font-size); + line-height: 2rem; + width: var(--width); +} + +.cl-section ul { + width: var(--width); +} + +.cl-section li { + font-size: var(--font-size); +} + main { width: 100%; } -- cgit v1.2.3