From 30a78e3789deab144e27c23b21382cb6b88e8c10 Mon Sep 17 00:00:00 2001 From: Denae716 Date: Tue, 10 Nov 2020 20:48:33 -0500 Subject: [PATCH] js calc prt 1 --- scientific.html | 45 +++++++++++++++++++++++++++++++++++++++++++++ standard.html | 31 +++++++++++++++++++++++++++++++ styles.css | 31 +++++++++++++++++++++++++++++++ 3 files changed, 107 insertions(+) create mode 100644 scientific.html create mode 100644 standard.html create mode 100644 styles.css diff --git a/scientific.html b/scientific.html new file mode 100644 index 0000000..0830a02 --- /dev/null +++ b/scientific.html @@ -0,0 +1,45 @@ + + + +

Standard | Scientific

+
+
0
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + \ No newline at end of file diff --git a/standard.html b/standard.html new file mode 100644 index 0000000..d3490b4 --- /dev/null +++ b/standard.html @@ -0,0 +1,31 @@ + + + +

Standard | Scientific

+
+
0
+
+ + + + + + + + + + + + + + + + + + + + +
+
+ + \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..eb53023 --- /dev/null +++ b/styles.css @@ -0,0 +1,31 @@ +.calculator_keys_standard { + display: grid; + grid-template-columns: auto auto auto auto; + grid-template-rows: auto auto auto auto auto; + +} + +.calculator_keys_scientific { + display: grid; + grid-template-columns: auto auto auto auto auto auto auto; + grid-template-rows: auto auto auto auto auto; + grid: float; +} + +.calculator { + border-style: solid; + +} + +.calculator_display { + position: right; +} + +html { + max-width: 500px; + max-height: 500px; +} + +h1 { + font-size: 20px; +} \ No newline at end of file