diff --git a/calculator.css b/calculator.css new file mode 100644 index 0000000..c52610a --- /dev/null +++ b/calculator.css @@ -0,0 +1,50 @@ + +.card { + background-color: white; + font-weight: 500; + width: fit-content; +} + +.row { + width: 100%; +} + +input { + border-color: lightgrey; + border-width: 1px; + height: 40px; + font-weight: bold; + font-size: xx-large; +} + +#input-sci { + width: 90%; +} + +#input-sta { + width: 83%; +} + +button { + height: 40px; + border-color: lightgrey; + font-weight: 475; +} + +.button-sci { + width: 11%; +} + +.button-sta { + width: 20%; +} + +#rad-deg { + width: 25%; + height: 40px; +} + +.equal-button { + color: white; + font-weight: 900; +} diff --git a/calculator_scientific.html b/calculator_scientific.html new file mode 100644 index 0000000..0dd8f5c --- /dev/null +++ b/calculator_scientific.html @@ -0,0 +1,74 @@ + + + + + + + + + +
+ Standard | Scientific + +
+
+ +
+
+
+
+ + + + + + +
+
+
+
+ + + + + + + +
+
+
+
+ + + + + + + +
+
+
+
+ + + + + + + +
+
+
+
+ + + + + + + +
+
+
+ + \ No newline at end of file diff --git a/calculator_standard.html b/calculator_standard.html new file mode 100644 index 0000000..577b684 --- /dev/null +++ b/calculator_standard.html @@ -0,0 +1,60 @@ + + + + + + + + + +
+ Standard | Scientific + +
+
+ +
+
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+
+ + + + +
+
+
+ + \ No newline at end of file