35 lines
478 B
CSS
35 lines
478 B
CSS
|
window * {
|
||
|
background: none;
|
||
|
color: greenyellow;
|
||
|
box-shadow: none;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
background-color: black;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
border: 0;
|
||
|
background: none;
|
||
|
outline-style: dashed;
|
||
|
margin: 0;
|
||
|
border-width: 2px;
|
||
|
padding: 16px 36px;
|
||
|
}
|
||
|
.keypad button {
|
||
|
padding: 16px 16px;
|
||
|
}
|
||
|
label {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
button:active {
|
||
|
background-color: greenyellow;
|
||
|
color: black;
|
||
|
}
|
||
|
|
||
|
button:active label {
|
||
|
color: black;
|
||
|
}
|