From 0d460781f42de5f2dd0c99bf9efdccca6ee7a03c Mon Sep 17 00:00:00 2001 From: Srivishnu T <143670812+srivishnu2805@users.noreply.github.com> Date: Tue, 15 Oct 2024 23:02:21 +0530 Subject: [PATCH 1/6] Update maze.html --- maze.html | 83 +++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 66 insertions(+), 17 deletions(-) diff --git a/maze.html b/maze.html index 747c91c..15e0eab 100644 --- a/maze.html +++ b/maze.html @@ -1,5 +1,6 @@ + @@ -7,52 +8,99 @@ +
-

Scroll down to discover something fun...

+

Scroll down to discover something fun...

- +







@@ -63,7 +111,7 @@

Reverse Maze Game

-
+

HINT: Use arrow keys to navigate the maze (controls are reversed).

@@ -161,4 +209,5 @@

Reverse Maze Game

} + From 697cdd611b08aa3b7415c657753ec9001f19031a Mon Sep 17 00:00:00 2001 From: Srivishnu T <143670812+srivishnu2805@users.noreply.github.com> Date: Tue, 15 Oct 2024 23:32:08 +0530 Subject: [PATCH 2/6] Update hypnotic.html --- hypnotic.html | 158 +++++++++++++++++++++++++++++++++++--------------- 1 file changed, 110 insertions(+), 48 deletions(-) diff --git a/hypnotic.html b/hypnotic.html index a1adaeb..380ddb7 100644 --- a/hypnotic.html +++ b/hypnotic.html @@ -1,53 +1,114 @@ + Hypnotic Chaos @@ -107,92 +168,93 @@ + From 057e64cf08fd69cbca715f1ccc0a661671a5ca5e Mon Sep 17 00:00:00 2001 From: Srivishnu T <143670812+srivishnu2805@users.noreply.github.com> Date: Tue, 15 Oct 2024 23:33:19 +0530 Subject: [PATCH 3/6] Update night_time.html --- night_time.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/night_time.html b/night_time.html index 0f807a8..ddc8d94 100644 --- a/night_time.html +++ b/night_time.html @@ -6,7 +6,6 @@ ChaosWeb - The Disorderly UI Experiment - @@ -64,4 +63,4 @@ - \ No newline at end of file + From 2c5acbc68da90d5b4407987c311c5055f7a19d46 Mon Sep 17 00:00:00 2001 From: Srivishnu T <143670812+srivishnu2805@users.noreply.github.com> Date: Tue, 15 Oct 2024 23:33:38 +0530 Subject: [PATCH 4/6] Update style1.css --- style1.css | 131 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 108 insertions(+), 23 deletions(-) diff --git a/style1.css b/style1.css index 5c4269b..fa1815f 100644 --- a/style1.css +++ b/style1.css @@ -1,40 +1,125 @@ body { - padding: 0; - margin: 0; - background-color: darkslateblue; - font-family: Arial, Helvetica, sans-serif; + padding: 0; + margin: 0; + background-color: darkslateblue; + font-family: Arial, Helvetica, sans-serif; } .moon1 { - display: flex; - justify-content: center; - cursor: pointer; + display: flex; + justify-content: center; + cursor: pointer; } .moon1 img { - width: 650px; - transition: 0.3s ease; + width: 650px; + transition: 0.3s ease; } .moon1 img:hover { - content: url(assets/moon2.png); /* This changes the image source on hover */ + content: url(assets/moon2.png); /* This changes the image source on hover */ } .text { - display: flex; - justify-content: center; - color: white; - font-size: 50px; - text-align: center; - animation: float 3s ease-in-out infinite; /* Apply floating animation */ + display: flex; + justify-content: center; + color: white; + font-size: 50px; + text-align: center; + animation: float 3s ease-in-out infinite; /* Apply floating animation */ } /* Floating animation */ @keyframes float { - 0%, 100% { - transform: translateY(0); /* Start and end position */ - } - 50% { - transform: translateY(-10px); /* Move up */ - } -} \ No newline at end of file + 0%, + 100% { + transform: translateY(0); /* Start and end position */ + } + 50% { + transform: translateY(-10px); /* Move up */ + } +} +/* Add these styles to style1.css */ + +body { + font-family: Arial, sans-serif; /* Ensure a good font for mobile */ + margin: 0; /* Remove default margin */ + background-color: #f0f0f0; /* Set a light background color */ +} + +.container { + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + height: 100vh; /* Full viewport height */ +} + +.preloader { + display: flex; + justify-content: center; + align-items: center; + flex-wrap: wrap; /* Allow preloader items to wrap */ +} + +.preloader__wheel-wrapper { + margin: 10px; /* Add margin for spacing */ +} + +.moon1 { + text-align: center; /* Center the moon image */ +} + +.text { + font-size: 1.5rem; /* Base font size */ + text-align: center; /* Center the text */ + margin: 10px; /* Add margin around text */ +} + +/* Responsive Styles */ +@media (max-width: 768px) { + .preloader__content { + font-size: 1.2rem; /* Smaller font for mobile */ + } + + .text { + font-size: 1.2rem; /* Smaller font for mobile */ + } + + .moon1 img { + width: 100%; /* Make moon image responsive */ + max-width: 300px; /* Limit maximum width */ + } +} + +@media (max-width: 480px) { + .text { + font-size: 1rem; /* Even smaller font for very small devices */ + } + + .preloader__wheel { + width: 40px; /* Adjust wheel size for small devices */ + height: 40px; /* Adjust wheel size for small devices */ + } +} + +/* Additional Styles to Fix Black Background Issue */ +body, +html { + height: 100%; /* Ensure full height for body and html */ +} + +.moon1, +.text { + position: relative; /* Allow stacking without overflow */ + z-index: 1; /* Ensure text is above any background */ +} + +.container { + background-color: rgba( + 240, + 240, + 240, + 0.9 + ); /* Light background for container */ +} From 0f42a605a30e0505967a6ddc5400b2315bf1c777 Mon Sep 17 00:00:00 2001 From: Srivishnu T <143670812+srivishnu2805@users.noreply.github.com> Date: Tue, 15 Oct 2024 23:36:13 +0530 Subject: [PATCH 5/6] Update ContactUs.html --- ContactUs.html | 139 ++++++++++++++++++++++++++++++++++--------------- 1 file changed, 97 insertions(+), 42 deletions(-) diff --git a/ContactUs.html b/ContactUs.html index a01f6c6..440943f 100644 --- a/ContactUs.html +++ b/ContactUs.html @@ -1,5 +1,6 @@ + @@ -8,76 +9,129 @@ +
@@ -151,4 +205,5 @@

Contact Us

+ From ebff3009e653b6f10c83dbd540e2ded0738a442c Mon Sep 17 00:00:00 2001 From: Srivishnu T <143670812+srivishnu2805@users.noreply.github.com> Date: Tue, 15 Oct 2024 23:38:36 +0530 Subject: [PATCH 6/6] Update testing.html --- testing.html | 66 +++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 55 insertions(+), 11 deletions(-) diff --git a/testing.html b/testing.html index 8ade070..d4bdb7c 100644 --- a/testing.html +++ b/testing.html @@ -6,29 +6,38 @@ ChaosWeb - The Disorderly UI Experiment - @@ -174,4 +218,4 @@

ChaosWeb - The Disorderly UI Experiment

- \ No newline at end of file +