From 9b0d084b85b32ab152ba1de3bbfb08e105a6acc9 Mon Sep 17 00:00:00 2001 From: GCode4000 <166932403+GCode4000@users.noreply.github.com> Date: Sat, 13 Apr 2024 18:03:24 -0400 Subject: [PATCH] W --- index.html | 1 + script.js | 4 ++++ style.css | 12 ++++++++++++ 3 files changed, 17 insertions(+) diff --git a/index.html b/index.html index d76c26c..8a29bd7 100644 --- a/index.html +++ b/index.html @@ -46,6 +46,7 @@

MD Web

+

MD Web is not meant to replace your doctor. Please do not rely on MD Web. MD Web works best with more information. Please provide as many details as possible in order for MD Web to preform the best it possibly can.

diff --git a/script.js b/script.js index 1ac6e0e..a97c9e5 100644 --- a/script.js +++ b/script.js @@ -45,3 +45,7 @@ document AISend(); } }); + function myFunction() { + var element = document.body; + element.classList.toggle("dark-mode"); + } \ No newline at end of file diff --git a/style.css b/style.css index 572fa1d..2b66fab 100644 --- a/style.css +++ b/style.css @@ -88,3 +88,15 @@ a { padding: 8px; background-color: #dddddd; } +body { + padding: 25px; + background-color: white; + color: black; + font-size: 15px; +} + +.dark-mode { + + background-color: black; + color: white; +} \ No newline at end of file