From d954abfa0198d7ed9c782981e1cbb3ff3156edac Mon Sep 17 00:00:00 2001 From: Pravalika Date: Thu, 6 Nov 2025 09:37:48 +0530 Subject: [PATCH 1/2] Fix HTML and JavaScript syntax errors for issue #1851 --- date_question.html | 157 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 date_question.html diff --git a/date_question.html b/date_question.html new file mode 100644 index 0000000000..d262854f13 --- /dev/null +++ b/date_question.html @@ -0,0 +1,157 @@ + + + + + + Sana Bir Sorum Var! + + + + + +
Benimle date'e çıkar mısın 👉👈?
+ +
+ + +
+ +
+
+
+ + + + From e6f903583fc78117c83f241f13962c299ac55c34 Mon Sep 17 00:00:00 2001 From: Pravalika Date: Thu, 6 Nov 2025 09:53:19 +0530 Subject: [PATCH 2/2] Fix Prettier warnings --- Maths/MobiusFunction.js | 4 +- date_question.html | 335 ++++++++++++++++++++++------------------ 2 files changed, 183 insertions(+), 156 deletions(-) diff --git a/Maths/MobiusFunction.js b/Maths/MobiusFunction.js index bd268b8bbd..4239d6ab31 100644 --- a/Maths/MobiusFunction.js +++ b/Maths/MobiusFunction.js @@ -28,6 +28,6 @@ export const mobiusFunction = (number) => { return primeFactorsArray.length !== new Set(primeFactorsArray).size ? 0 : primeFactorsArray.length % 2 === 0 - ? 1 - : -1 + ? 1 + : -1 } diff --git a/date_question.html b/date_question.html index d262854f13..42d5234bf2 100644 --- a/date_question.html +++ b/date_question.html @@ -1,157 +1,184 @@ - + - - - - Sana Bir Sorum Var! - - - - - -
Benimle date'e çıkar mısın 👉👈?
- -
- - -
- -
-
-
- - - + + #soru { + font-size: 2.5em; + margin-bottom: 40px; + color: #444; + text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5); + z-index: 1; + } + + .cevap-butonu { + padding: 15px 30px; + margin: 10px; + font-size: 1.3em; + cursor: pointer; + border: 2px solid #fff; + border-radius: 50px; + transition: all 0.3s ease; + font-weight: bold; + box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); + z-index: 100; + } + + #evetBtn { + background-color: #00b894; + color: white; + } + + #evetBtn:hover { + transform: scale(1.05); + background-color: #00a082; + } + + #hayirBtn { + background-color: #ff6b6b; + color: white; + position: absolute; + transition: transform 0.1s ease-out; + } + + #mesaj-alani { + position: fixed; + top: 0; + left: 0; + width: 95%; + height: 100%; + display: none; + flex-direction: column; + justify-content: center; + align-items: center; + background-color: rgba(255, 255, 255, 0.95); + z-index: 999; + } + + #sonMesaj { + font-size: 3em; + color: #e84393; + text-align: center; + padding: 20px; + border-radius: 15px; + background-color: #fff; + box-shadow: 0 0 30px rgba(255, 105, 180, 0.6); + animation: bounceIn 1s forwards; + } + + .kalp { + position: absolute; + font-size: 4em; + color: #ff6b6b; + animation: float 4s ease-in forwards; + opacity: 0; + } + + @keyframes bounceIn { + 0% { + transform: scale(0.5); + opacity: 0; + } + 95% { + transform: scale(1); + opacity: 1; + } + } + + @keyframes float { + 0% { + transform: translateY(0) rotate(0deg); + opacity: 1; + } + 100% { + transform: translateY(-500px) rotate(30deg); + opacity: 0; + } + } + + + + +
Benimle date'e çıkar mısın 👉👈?
+ +
+ + +
+ +
+
+
+ + +