From 74da8bd0febf1ec042309f95ba7289b51209f456 Mon Sep 17 00:00:00 2001 From: sevithescss <149007003+sevithescss@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:21:43 -0700 Subject: [PATCH 1/6] title changes --- css/index.css | 5 +++++ index.html | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/css/index.css b/css/index.css index fb267b1..0290e6d 100644 --- a/css/index.css +++ b/css/index.css @@ -138,4 +138,9 @@ button:hover { margin-left: 5px; width: 20px; height: 20px; +} +.title { + font-family: "Poppins", sans-serif; + font-weight: 500; + font-style: normal; } \ No newline at end of file diff --git a/index.html b/index.html index 6a06a87..e5d59c5 100644 --- a/index.html +++ b/index.html @@ -13,7 +13,7 @@
-Site views counter:
From 07ee390d5a30bd2e12371a29f922614828adeab5 Mon Sep 17 00:00:00 2001 From: sevithescss <149007003+sevithescss@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:28:25 -0700 Subject: [PATCH 2/6] background changes- add a lil color --- css/index.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/css/index.css b/css/index.css index 0290e6d..139cd30 100644 --- a/css/index.css +++ b/css/index.css @@ -1,6 +1,7 @@ body { font-family: 'Arial', sans-serif; - background-color: #f4f4f4; + background: rgb(0,197,255); + background: linear-gradient(39deg, rgba(0,197,255,1) 0%, rgba(29,74,253,1) 50%, rgba(0,197,255,1) 100%); margin: 0; padding: 0; text-align: center; From e728dcce5d8bc469203e2a6ee900294232a9beec Mon Sep 17 00:00:00 2001 From: sevithescss <149007003+sevithescss@users.noreply.github.com> Date: Fri, 20 Sep 2024 14:58:50 -0700 Subject: [PATCH 3/6] visibility changes --- css/index.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css/index.css b/css/index.css index 139cd30..698e20d 100644 --- a/css/index.css +++ b/css/index.css @@ -12,12 +12,12 @@ body { } h1 { - color: #333; + color: #000000; } h2, p { - color: #555; + color: #000000; } button { From e5a1765edba66f29949b1510b821b4edf5d26bcc Mon Sep 17 00:00:00 2001 From: Preston