diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..6c42280 Binary files /dev/null and b/.DS_Store differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..9e6af30 --- /dev/null +++ b/index.html @@ -0,0 +1,38 @@ + + + + + + + + +
+Standard | +Scientific
+
+ + + +
+ + + +
+ + + +
+ + + +
+ + + + + + + +
+ + \ No newline at end of file diff --git a/scientific.html b/scientific.html new file mode 100644 index 0000000..cd3bbec --- /dev/null +++ b/scientific.html @@ -0,0 +1,52 @@ + + + + + + + + +
+ Standard | + Scientific
+
+ + + + + + +
+ + + + + + +
+ + + + + + +
+ + + + + + +
+ + + + + + + + + + +
+ \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..3fa8d1a --- /dev/null +++ b/styles.css @@ -0,0 +1,44 @@ + +.calculator { + border: solid; + border-radius: 5%; + border-color: lightgrey; + width: 540px; + padding: 1%; +} + +button:hover { + color: lightgrey; +} + +button:active { + color: forestgreen; +} + + +.operation { + background-color: rgb(223, 225, 229); + border-radius: 5%; + border-color: rgb(223, 225, 229); + margin: .1%; + width: 4rem; + text-align: center; +} + +.number { + background-color: rgb(243, 244, 245); + border-radius: 5%; + border-color: rgb(243, 244, 245); + margin: .1%; + width: 4rem; + text-align: center; +} + +.equal { + background-color: rgb(66,133,244); + color: white; + border-radius: 5%; + border-color: rgb(66,133,244); + margin: .1%; + width: 4rem; +} \ No newline at end of file