-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (65 loc) · 1.42 KB
/
style.css
File metadata and controls
71 lines (65 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
* {
-webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}
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:#E4E4E4;
background:#111;
height:100%;
margin: 0px 0px 1px 0px; /* the extra 1px allows the iOS inner/outer check to work */
padding:0px;
font: 11px verdana;
}
canvas {
width: 100%;
height: 100%;
}
#ui, #refresh, #pause {
margin: 0 auto;
position: absolute;
top: 0;
left: 0;
}
#refresh {
display: block;
width: 50px;
height: 50px;
opacity: 0;
margin: 0;
}
#pause {
opacity: .3;
border: 0;
display: block;
width: 80px;
height: 30px;
background: none;
font: 11px 'Avenir-Medium', helvetica, sans-serif;
outline: none;
top: 0;
left: 0;
padding: 20px;
}
#pause:after {
display: block;
content: '';
width: 4px;
height: 16px;
border-right: 4px solid #fff;
border-left: 4px solid #fff;
}
#pause.paused:after {
display: block;
content: '';
width: 0;
height: 0;
border-top: 8px solid transparent;
border-left: 12px solid #fff;
border-bottom: 8px solid transparent;
border-right: 0;
}
.hide {
display: none !important;
}