blob: 161c41a62757d19501d41654ac43cb8245d09630 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
* {
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
body, html {
height: 100%;
width: 100%;
margin: 0px;
padding: 0px;
overflow: hidden;
}
body {
-webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
background: white;
font-family: pfd, sans-serif;
font-size: 12px;
}
|