From 8fab65d503de32675a8ef46f54d5af142d7bd1a1 Mon Sep 17 00:00:00 2001 From: Agastya Kumar Yadav Date: Mon, 10 Jun 2024 22:55:10 +0530 Subject: [PATCH] Made CGPA Percentage Calculator responsive (#1188) --- .../{Readme.md => README.md} | 0 .../CGPA-Percentage-Calculator/index.html | 66 +++++++++---------- .../CGPA-Percentage-Calculator/style.css | 10 ++- 3 files changed, 37 insertions(+), 39 deletions(-) rename Calculators/Anagram-Calculator/{Readme.md => README.md} (100%) diff --git a/Calculators/Anagram-Calculator/Readme.md b/Calculators/Anagram-Calculator/README.md similarity index 100% rename from Calculators/Anagram-Calculator/Readme.md rename to Calculators/Anagram-Calculator/README.md diff --git a/Calculators/CGPA-Percentage-Calculator/index.html b/Calculators/CGPA-Percentage-Calculator/index.html index 3786d6c7e..1d8c1e153 100644 --- a/Calculators/CGPA-Percentage-Calculator/index.html +++ b/Calculators/CGPA-Percentage-Calculator/index.html @@ -2,43 +2,37 @@ - - - - CGPA Percentage Calculator + + + CGPA Percentage Calculator -
-
-
-

- CGPA ⟷ Percentage -

-

- Start Typing In Any Field -

-
-
- -
-
- -
-
-
-
- - - +
+
+
+

CGPA ⟷ Percentage

+

Start Typing In Any Field

+
+
+ + +
+
+ + +
+
+
+
+ - - \ No newline at end of file + diff --git a/Calculators/CGPA-Percentage-Calculator/style.css b/Calculators/CGPA-Percentage-Calculator/style.css index 2f9f0e23c..fc4d4d09d 100644 --- a/Calculators/CGPA-Percentage-Calculator/style.css +++ b/Calculators/CGPA-Percentage-Calculator/style.css @@ -1,5 +1,9 @@ input[type='number']::-webkit-inner-spin-button, input[type='number']::-webkit-outer-spin-button { - -webkit-appearance: none; - margin: 0; -} \ No newline at end of file + -webkit-appearance: none; + margin: 0; +} + +input[type='number'] { + -moz-appearance: textfield; +}