Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions calculator.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
<meta charset="UTF-8">
<title>Калькулятор</title>
<style type="text/css">
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin-left: auto;
}
.tblCalc{
border:1px solid gray;
margin:0;
Expand All @@ -12,18 +21,20 @@
text-align:center;
}
.tblCalc input{
border:1px solid gray;
width:30px;
margin:4px;
border:3px solid black;
width:70%;
background-color:white;
margin:0.5rem;
padding:0.3rem;
}
#btnWide{
width:80px;
width:180px;
}
#editWide{
width:250px;
width:450px;
}
td {
background-color:#999;
background-color:lightblue;
}
}
</style>
Expand Down