disable user-select everywhere

This commit is contained in:
Unrud 2018-09-30 11:10:20 +02:00
parent f6db7c0c08
commit e0df49caad
2 changed files with 9 additions and 6 deletions

View file

@ -3,6 +3,13 @@
src: url("icon.woff") format("woff");
}
* {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
html,
body,
body > div {
@ -38,10 +45,6 @@ p {
font-size: 2rem;
color: white;
word-wrap: break-word;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
#padlabel {