From eb1406129a54164521f831501f71f5943351a843 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Mon, 22 Jul 2024 13:40:29 +0530 Subject: [PATCH 1/5] Update contributors.html --- pages/contributors.html | 250 ---------------------------------------- 1 file changed, 250 deletions(-) diff --git a/pages/contributors.html b/pages/contributors.html index 5d4fb62..e69de29 100644 --- a/pages/contributors.html +++ b/pages/contributors.html @@ -1,250 +0,0 @@ - - - - - - - - - - - Contributors - - -
- - - -
- -
- -
- -
-

- Our Contributors

-

- We are grateful to the following contributors for their hard work - and dedication in making this project a success: -

-
- - - - - - -
-
-
-
- -

- Created with ❤️ by Chrome Gaming -

- -
-
- - -
- - - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - - -
-
-

Our Contributors

-
-
-
- - -
- -

- Created with ❤️ by - Chrome Gaming -

- -
-
- - - - \ No newline at end of file From eae2567ad3013ebd9f10fa638e0864a8f75b65cd Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Mon, 22 Jul 2024 13:41:13 +0530 Subject: [PATCH 2/5] Update contributors.html --- pages/contributors.html | 188 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 188 insertions(+) diff --git a/pages/contributors.html b/pages/contributors.html index e69de29..6f2d294 100644 --- a/pages/contributors.html +++ b/pages/contributors.html @@ -0,0 +1,188 @@ + + + + + + + + + + + Contributors + + + + + + + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ + + +
+
+

Our Contributors

+
+
+
+ + +
+ +

+ Created with ❤️ by + Chrome Gaming +

+ +
+ + + + + From a71f5729577310e8cae3d8da78fcaef59fe123ff Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Mon, 22 Jul 2024 13:46:26 +0530 Subject: [PATCH 3/5] Update about.html --- pages/about.html | 524 ++++++++++++++++++++++++++++++++++++----------- 1 file changed, 401 insertions(+), 123 deletions(-) diff --git a/pages/about.html b/pages/about.html index a34dcdb..d594a1c 100644 --- a/pages/about.html +++ b/pages/about.html @@ -5,7 +5,6 @@ About Us - @@ -17,128 +16,407 @@ + + From acb3e185eb7ef330e4621ca49e5c2a7e64a640c6 Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Mon, 22 Jul 2024 13:46:41 +0530 Subject: [PATCH 4/5] Update about.css --- styles/about.css | 268 ----------------------------------------------- 1 file changed, 268 deletions(-) diff --git a/styles/about.css b/styles/about.css index d928997..e69de29 100644 --- a/styles/about.css +++ b/styles/about.css @@ -1,268 +0,0 @@ -@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap'); - -html, body { - margin: 0; - padding: 0; - height: 100%; - background-color: #e7b537; - scroll-behavior: smooth; -} - -body { - display: flex; - flex-direction: column; -} - -.about-header { - font-family: "Anton", sans-serif; - background-color: transparent; - color: #0e0e0e; - padding: 15px; - text-shadow: 2px 2px 10px white; - text-align: center; - font-size: 2.5rem; - transition: background-color 0.3s ease; -} - -.about-header:hover { - background-color: #e59253; -} - -h1 { - margin: 0; -} - -main { - padding: 20px; - flex: 1; - display: flex; - flex-direction: column; - align-items: center; -} - -p { - color: #333; - line-height: 1.6; - text-align: justify; - max-width: 750px; - margin: 0 auto; - font-size: 16px; -} - -.functionalities, -.how-to-play { - flex: 1 1 320px; - max-width: 320px; - height: 350px; - margin: 10px; - color: #ffffff; - font-family: 'Poppins', sans-serif; - background: linear-gradient(135deg, #5f4c9b, #3540e3); - border-radius: 10px; - padding: 0px 204px; - box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.5); - transition: all 0.3s ease; - overflow: hidden; - position: relative; - cursor: pointer; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - width: 352px; -} - -.functionalities h2, -.how-to-play h2 { - font-size: 24px; - margin-bottom: 10px; - font-family: 'Poppins', sans-serif; - font-weight: 700; - text-align: center; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 100%; - transition: all 0.3s ease; -} - -.functionalities .content, -.how-to-play .content { - opacity: 0; - transition: opacity 0.3s ease; - font-weight: 500; - position: absolute; - top: 60px; - left: 0; - right: 0; - bottom: 0; - padding: 20px; -} - -.functionalities::after, -.how-to-play::after { - content: "(Hover here to know more)"; - position: absolute; - bottom: 20px; - left: 0; - right: 0; - text-align: center; - opacity: 0.7; - transition: opacity 0.3s ease; -} - -.functionalities:hover::after, -.how-to-play:hover::after { - opacity: 0; -} - -.functionalities:hover h2, -.how-to-play:hover h2 { - top: 10px; - transform: translateX(-50%); -} - -.functionalities:hover .content, -.how-to-play:hover .content { - opacity: 1; -} - -ul { - list-style: none; - padding-left: 0; - margin: 0; -} - -li { - margin-bottom: 8px; - line-height: 1.6; -} - -.functionalities ul, -.how-to-play p { - color: #ffffff; - font-size: 14px; -} - -.navbar { - width: 100%; - background-color: #333; - display: flex; - justify-content: space-between; - align-items: center; - padding: 10px; - transition: background-color 0.3s ease-in-out; -} - -.logo a { - text-decoration: none; - font-size: 24px; - font-family: "Arial", sans-serif; - font-weight: bold; - letter-spacing: 2px; - color: #fff; - margin-left: 15px; -} - -.navlinks { - display: flex; - gap: 20px; -} - -.navlinks a { - text-decoration: none; - color: #fff; - font-size: 18px; - font-family: "Arial", sans-serif; - font-weight: bold; - letter-spacing: 2px; -} - -.navlinks a:hover { - color: #e7b537; -} - -.logo a:hover { - color: yellow; -} - -.author { - width: 100%; - display: flex; - justify-content: space-between; - align-items: center; - background: linear-gradient(to right, #00093c, #2d0b00); - color: #fff; - padding: 15px; - position: sticky; - bottom: 0; - z-index: 1000; -} - -.author .fotbar { - display: flex; - gap: 20px; -} - -.author .fotbar a { - color: white; - text-decoration: none; - padding: 10px; - border-radius: 5px; - font-size: 18px; - background-color: transparent; -} - -::-webkit-scrollbar{ - display: none; -} - -.author p { - color: white; - padding: 10px; - margin-right: 10px; - font-size: 20px; - font-weight: 600; -} - -.author .social-icons { - display: flex; - gap: 10px; - margin-right: 20px; -} - -.author a { - color: white !important; -} - -.author .social-icons a { - color: white; - text-decoration: none; - font-size: 20px; -} -/* Responsive Styles */ -@media screen and (max-width: 769px) { - .navbar { - flex-direction: column; - padding: 20px; - } - .logo a { - font-size: 20px; - } - .navlinks { - flex-direction: column; - align-items: center; - margin-top: 10px; - } - .navlinks a { - font-size: 16px; - margin: 5px 0; - } -} - -@media screen and (max-width: 450px) { - .logo a { - font-size: 18px; - } -} From d7d3fb26445dadd8dc5e00de9db857375be143bc Mon Sep 17 00:00:00 2001 From: Mastan Sayyad Date: Mon, 22 Jul 2024 13:58:03 +0530 Subject: [PATCH 5/5] Delete about.css --- styles/about.css | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 styles/about.css diff --git a/styles/about.css b/styles/about.css deleted file mode 100644 index e69de29..0000000