From 861ddac39e4c824af4e048a369b86979beb98d9e Mon Sep 17 00:00:00 2001 From: Sumalatha Salapu Date: Mon, 28 Oct 2024 21:52:48 +0530 Subject: [PATCH 1/2] updated Word of The Day --- index.html | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index ec757e3..9ffb73f 100644 --- a/index.html +++ b/index.html @@ -1225,14 +1225,20 @@

How can I stay updated with new blog posts?

-
-

Word of the Day

-

-

+
+ +

+ Word of the Day +

+ 📘 +
+

Placeholder Word

+

Placeholder Definition

+
From ccc52c20de32b4f945c9dcd4bfac7c8d7e310bdd Mon Sep 17 00:00:00 2001 From: Sumalatha Salapu Date: Mon, 28 Oct 2024 23:55:31 +0530 Subject: [PATCH 2/2] updated word-of-the-day --- index.html | 15 +++++----- style.css | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++---- 2 files changed, 84 insertions(+), 14 deletions(-) diff --git a/index.html b/index.html index 9ffb73f..321a53a 100644 --- a/index.html +++ b/index.html @@ -1224,21 +1224,20 @@

How can I stay updated with new blog posts?

+ -
+
-

+

Word of the Day

- 📘 -
-

Placeholder Word

-

Placeholder Definition

+ 📘 +
+

Placeholder Word

+

Placeholder Definition

- -
diff --git a/style.css b/style.css index 28307aa..83ed6dc 100644 --- a/style.css +++ b/style.css @@ -2449,14 +2449,84 @@ h1 { border: none; } -/* Word of the Day Dark Mode Styles */ -[data-theme="dark"] #word-of-the-day, -[data-theme="dark"] #word-of-the-day h2, -[data-theme="dark"] #word-of-the-day #word, +/* Light mode styles */ +#word-of-the-day { + border: 2px solid rgb(248, 181, 181); + padding: 20px; + border-radius: 5px; + color: black; + width: 90%; + text-align: center; + font-family: Arial, sans-serif; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + margin-left: 60px; + margin-bottom: 60px; +} + +/* Header style */ +#word-of-the-day h2 { + font-size: xx-large; + display: flex; + justify-content: center; + align-items: center; + color: #242e4c; +} + +/* Icon style */ +#word-of-the-day span { + font-size: 1.2em; + margin-right: 8px; +} + +/* Divider line */ +#word-of-the-day hr { + border: none; + height: 1px; + background-color: #333; + margin: 10px auto; + width: 80%; +} + +/* Word style */ +#word-of-the-day #word { + font-weight: bold; + font-size: 1.2em; + color: #333; + margin: 10px 0; +} + +/* Definition style */ +#word-of-the-day #definition { + font-size: 1em; + color: #555; + margin: 10px 0; +} + +/* Dark mode styles using [data-theme="dark"] */ +[data-theme="dark"] #word-of-the-day { + border: 2px solid #555; + color: #ddd; + box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); +} + +[data-theme="dark"] #word-of-the-day h2 { + color: #ffffff; /* Brighter white for the header */ +} + +[data-theme="dark"] #word-of-the-day hr { + background-color: #888; +} + +[data-theme="dark"] #word-of-the-day #word { + color: #e0e0e0; /* Light white for the word */ +} + [data-theme="dark"] #word-of-the-day #definition { - color: black; + color: #e0e0e0; /* Slightly dimmer white for the definition */ } +/* + footer .text-lg { @@ -3654,4 +3724,5 @@ nav1{ .wordwise-footer-content { text-align: center; } -} \ No newline at end of file +} +