html{
margin: 0;
width: 100vw;
height: 100vh;
}
body{
margin: 0;
width: 100%;
height: 100%;
}
.wrapper{
width: fit-content;
height: fit-content;
margin-left: 50px;
}
tr{
display: flex;
}
th, td{
width: 50px;
height: 50px;
border: 1px solid grey;
display: flex;
align-items: center;
justify-content: center;
}
#wrapperCalc{
margin: 20px;
display: flex;
flex-direction: column;
width: 400px;
align-items: center;
}
input{
margin-top: 10px;
text-align: center;
padding: 5px;
font-size: 20px;
color: lightslategray;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
button{
margin: 10px;
width: 100px;
font-size: 15px;
padding: 0;
}
span{
border-bottom: 1px solid grey;
width: 260px;
height: 30px;
font-size: 20px;
display: flex;
align-items: center;
justify-content: center;
}
#wrapperCalcLive{
display: flex;
margin: 50px;
padding-bottom: 100px;
max-width: 600px;
font-size: 20px;
}
.task{
margin: 50px;
}
.equal{
padding: 60px 20px;
}