From 67152a9e9f5d59e2aa73bd1bf2d3d25f0f922438 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Rudowicz?= Date: Thu, 27 Feb 2025 18:47:00 +0100 Subject: [PATCH 1/2] Darken link color, no feature borders --- _sass/components/_feature.scss | 2 -- assets/css/style.scss | 8 ++++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/_sass/components/_feature.scss b/_sass/components/_feature.scss index 81dc2d1..5ad24e5 100644 --- a/_sass/components/_feature.scss +++ b/_sass/components/_feature.scss @@ -1,7 +1,5 @@ .feature { height: 100%; - border: 1px solid $white-offset; - border-radius: 3px; padding: 20px; background-color: #ffffff; display: flex; diff --git a/assets/css/style.scss b/assets/css/style.scss index 40b621e..f273880 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -3,8 +3,8 @@ // Colors $primary: #FDB515; -$primary-dark: #a01b16; -$secondary: #f88379; +$primary-dark: darken($primary, 10%); +$secondary: darken($primary, 20%); $black: #2f2f41; $white: #ffffff; $white-offset: #fff6f8; @@ -119,3 +119,7 @@ body { code { color: #000; } + +a { + color: #dd9902; +} -- 2.40.1 From 6c3c7966eacaa30cce2230023c16f838756260b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Rudowicz?= Date: Fri, 28 Feb 2025 22:24:03 +0100 Subject: [PATCH 2/2] Margin on the bottom of content --- _layouts/default.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_layouts/default.html b/_layouts/default.html index 3a792c4..5c0c010 100755 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -20,7 +20,7 @@ -
+
{% include header.html headerClass='header-extra' %} {{content}}
-- 2.40.1