Updated calculator

This commit is contained in:
BuildTools 2021-03-03 11:11:15 +01:00
parent 084dbbd664
commit bfa6901c99
2 changed files with 71 additions and 5 deletions

View file

@ -12,6 +12,12 @@
border-right: rgba(0, 0, 0, 0);
border-bottom: rgba(0, 0, 0, 1);
text-align: right;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none;
}
.numberbutton {
width: 100px;
@ -63,3 +69,17 @@
.zerobutton:active {
background-color: rgba(110, 110, 110, 0.5);
}
#eingabe:hover {
background-color: rgba(10, 10, 10, 0.5);
}
#calc {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none;
}
button {
outline: none;
}