├── README.md ├── calc.css ├── calc.html └── calc.js /README.md: -------------------------------------------------------------------------------- 1 | # javascriptcalculator -------------------------------------------------------------------------------- /calc.css: -------------------------------------------------------------------------------- 1 | .title{ 2 | margin:auto; 3 | text-align:center; 4 | width: 300px; 5 | padding:10px; 6 | color:black; 7 | font-size: 30px; 8 | font-family: monospace; 9 | border: solid black 4px; 10 | } 11 | 12 | input[type="button"] 13 | { 14 | background-color:white; 15 | color: black; 16 | font-size: 30px; 17 | 18 | width:80px; 19 | height:60px; 20 | } 21 | 22 | input[type="text"] 23 | { 24 | background-color:white; 25 | border: solid black 2px; 26 | width:100%; 27 | height:60px; 28 | font-size: 20px; 29 | } 30 | -------------------------------------------------------------------------------- /calc.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |13 | 14 | | 15 | | ||
20 | | 21 | | 22 | | 23 | |
26 | | 27 | | 28 | | 29 | |
32 | | 33 | | 34 | | 35 | |
38 | | 39 | 40 | | 41 | | 42 | |