23 lines
372 B
CSS
23 lines
372 B
CSS
html, body {
|
|
touch-action: manipulation;
|
|
}
|
|
|
|
body{
|
|
background-color: rgb(44, 45, 46);
|
|
margin: 0;
|
|
padding: .5vw;
|
|
}
|
|
|
|
button{
|
|
background-color: #eee;
|
|
color: inherit;
|
|
text-decoration: none;
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
user-select: none;
|
|
-webkit-user-select: none;
|
|
}
|
|
|
|
button:disabled{
|
|
background-color: grey;
|
|
} |