From 3da9cd1a305727c7c47fce2bf0166f7c3ba99d5b Mon Sep 17 00:00:00 2001 From: Djeex Date: Wed, 6 Aug 2025 17:32:16 +0000 Subject: [PATCH 1/3] Smaller tags --- config/themes/modern/theme.css | 4 ++++ config/themes/typewriter/theme.css | 13 +++++++++++++ src/public/style/style.css | 7 ++++++- 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 config/themes/typewriter/theme.css diff --git a/config/themes/modern/theme.css b/config/themes/modern/theme.css index b011db8..399769a 100644 --- a/config/themes/modern/theme.css +++ b/config/themes/modern/theme.css @@ -49,6 +49,10 @@ img, tag { margin: 0; } + .tag { + font-size: 12px; + } + .hero-background { max-width: 90%; margin: auto; diff --git a/config/themes/typewriter/theme.css b/config/themes/typewriter/theme.css new file mode 100644 index 0000000..8fa3637 --- /dev/null +++ b/config/themes/typewriter/theme.css @@ -0,0 +1,13 @@ +/*-----------------------------------*/ +/* Typewriter theme for Lumeex */ +/* https://git.djeex.fr/Djeex/lumeex */ +/*-----------------------------------*/ + + +.tag { + line-height: 0.5em; +} + +.tags { + gap:0px; +} \ No newline at end of file diff --git a/src/public/style/style.css b/src/public/style/style.css index f63c592..aa1eac1 100644 --- a/src/public/style/style.css +++ b/src/public/style/style.css @@ -238,7 +238,7 @@ h2 { .tags { display: flex; flex-wrap: wrap; - gap: 6px; + gap: 5px; margin-bottom: 10px; } @@ -247,6 +247,7 @@ h2 { cursor: pointer; font-size: 18px; transition: background 0.2s ease; + line-height: 1em; } .tag:hover, @@ -479,6 +480,10 @@ h2 { font-size:18px; } + .tag { + font-size: 14px; + } + #legals.content-wrapper { max-width: 90%; margin: auto; From 68128f5072160c5af1d4b401f598a068e5480440 Mon Sep 17 00:00:00 2001 From: Djeex Date: Wed, 6 Aug 2025 17:51:58 +0000 Subject: [PATCH 2/3] Credits --- config/themes/modern/theme.yaml | 2 +- config/themes/typewriter/theme.yaml | 2 +- src/public/style/style.css | 10 ++++++++-- src/templates/footer.html | 4 ++-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/config/themes/modern/theme.yaml b/config/themes/modern/theme.yaml index 0dc980d..3f331f5 100644 --- a/config/themes/modern/theme.yaml +++ b/config/themes/modern/theme.yaml @@ -7,7 +7,7 @@ colors: primary_dark: '#005384' secondary: '#00b0f0' accent: '#ffc700' - text_dark: '#333' + text_dark: '#616161' background: '#fff' browser_color: '#fff' favicon: diff --git a/config/themes/typewriter/theme.yaml b/config/themes/typewriter/theme.yaml index bb4846e..7a30379 100644 --- a/config/themes/typewriter/theme.yaml +++ b/config/themes/typewriter/theme.yaml @@ -7,7 +7,7 @@ colors: primary_dark: '#005384' secondary: '#00b0f0' accent: '#ffc700' - text_dark: '#333' + text_dark: '#616161' background: '#fff' browser_color: '#fff' favicon: diff --git a/src/public/style/style.css b/src/public/style/style.css index aa1eac1..e92ecfc 100644 --- a/src/public/style/style.css +++ b/src/public/style/style.css @@ -8,7 +8,7 @@ --color-primary-dark: #005384; --color-secondary: #00b0f0; --color-accent: #ffc700; - --color-text-dark: #333333; + --color-text-dark: #616161; --color-background: #ffffff; } @@ -173,6 +173,9 @@ h2 { visibility: hidden; } +.nav-separator { + color: var(--color-accent); +} /* animation */ .appear { @@ -393,7 +396,6 @@ h2 { } .navigation-bottom-link { - color:var(--color-accent); font-size: 12px; } @@ -447,6 +449,10 @@ h2 { margin: 0 100px; } +.legals-content p { + color: var(--color-text-dark); +} + /* responsive */ @media (max-width: 1000px) { diff --git a/src/templates/footer.html b/src/templates/footer.html index 0c0a8fd..0c27b01 100644 --- a/src/templates/footer.html +++ b/src/templates/footer.html @@ -11,8 +11,8 @@ From da6ee55c0cb3c54430bca2184f6f793fc99e4ca3 Mon Sep 17 00:00:00 2001 From: Djeex Date: Wed, 6 Aug 2025 20:22:14 +0000 Subject: [PATCH 3/3] Better footer --- config/themes/modern/theme.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/config/themes/modern/theme.css b/config/themes/modern/theme.css index 399769a..84c8a73 100644 --- a/config/themes/modern/theme.css +++ b/config/themes/modern/theme.css @@ -35,8 +35,6 @@ img, tag { #footer { box-shadow: 0px 20px 100px -44px rgba(0, 0, 0, 0.5); - border-radius: 15px 15px 0 0; - max-width: 1140px; margin: auto; }