diff --git a/index.html b/index.html
index 14ba0ef..b89279a 100644
--- a/index.html
+++ b/index.html
@@ -68,14 +68,14 @@
Calculate Anything
-
-
+
+
+
-
-
+
-
+
diff --git a/main.css b/main.css
index ca6c0d4..e69f110 100644
--- a/main.css
+++ b/main.css
@@ -12,19 +12,6 @@ html, body {
overflow-x: hidden;
}
-/* used white colour for foreground so that disabled button is not visible to the screen */
-button:disabled{
- color: #f1f1f1;
-}
-/* made the hover background color to white so the annoying hover in empty space is removed */
-
-button:disabled:hover{
- color:white;
- background-color:white;
-}
-.noHover{
- pointer-events: none;
-}
body {
font-family: monospace;
@@ -41,10 +28,10 @@ h1 {
justify-content: center;
align-items: center;
margin: auto;
- height: 410px;
- width: 340px;
- box-shadow: 6px 8px 2px grey;
- background: white;
+ height: 550px;
+ width: 420px;
+ box-shadow: 8px 10px 4px grey;
+ background: black;
border-radius: 10px;
}
@@ -62,8 +49,8 @@ input {
#display {
outline: none;
- width: 280px;
- height: 40px;
+ width: 380px;
+ height: 60px;
background: #f1f1f1;
border-radius: 10px;
border-color: none;
@@ -71,7 +58,7 @@ input {
}
.keyboard {
- width: 330px;
+ width: 400px;
position: relative;
top: 40px;
margin: 10px;
@@ -81,16 +68,24 @@ input {
button {
font-family: sans-serif;
font-weight: bolder;
- font-size: 22px;
+ font-size: 25px;
color:"black";
background: white;
border: none;
- margin: 6px;
- padding: 12px;
+ margin:12px;
+
+ padding-top: 2px;
+ padding-bottom:2px;
outline: none;
- border-radius: 50%;
- width: 49px;
- height: 45px;
+ border-radius: 20%;
+ width: 60px;
+ height: 50px;
+ box-shadow: 2px 4px 2px grey;
+}
+
+
+button:hover {
+ box-shadow: 2px 4px 2px white;
}
button:nth-child(1) {
@@ -113,14 +108,6 @@ button:nth-child(4) {
button:nth-child(8) {
background: aqua;
}
-
-button:nth-child(12) {
- padding: 0px;
- font-size: 30px;
- font-family: monospace;
- background: orange;
-}
-
button:nth-child(16) {
background: pink;
font-size: 25px;
@@ -129,14 +116,3 @@ button:nth-child(16) {
button:nth-child(20) {
background: yellow;
}
-
-button:hover {
- background: rgba(230, 108, 230, 0.616);
-}
-
-button:nth-child(17):hover {
- display: none;
-}
-button:nth-child(19):hover {
- display: none;
-}
\ No newline at end of file