MusTechies / PythonCalculator

Simple calculation
MIT License
0 stars 2 forks source link

Scientific calculator #10

Open Themrocket opened 11 months ago

Themrocket commented 11 months ago

Html <!DOCTYPE html>

Scientific calculator
Themrocket commented 11 months ago

Css body { padding:0; margin:0; display:flex; justify-content:center; align-items:center ; min-height:100vh; background:#ffd5f4;

}

.container{ width:70%; height:40vh; padding:100px; border-radius:8px;
box-shadow:12px 12px 20px #000000; background-color:#e3ff80;
}

.display #screen { width:97%; height:70px; outline:none; border:none; text-align:right; padding-right:3em; background:#80d6ff ; border-radius:6em; box-shadow : inset 8px 8px 8px #363636; inset -8px -8px -8px #363636;

}

.btns { width:100%; margin-top:1.7em; display:flex; justify-content:center; align-items:center ;
flex-direction:column;

} .btns .row button { width:90px; height:40px; font-size:16px; border:none; outline:none; align-items :center ; margin:7px; border-radius:4px; box-shadow:5px 5px 8px #242424; -5px -5px -8px #ffffff;}