-
Notifications
You must be signed in to change notification settings - Fork 40
/
eventTest.css
128 lines (128 loc) · 1.53 KB
/
eventTest.css
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body
{
height:100%;
}
#header
{
position: relative;
height: 40px;
overflow: hidden;
}
.touchActionNone
{
-ms-touch-action: none;
touch-action: none;
}
#touchTarget
{
position:absolute;
left:0;
top:50px;
right:0;
bottom:0;
-webkit-user-drag:element;
font-size: small;
}
#log
{
position:absolute;
overflow:scroll;
white-space: nowrap;
top:0;
bottom:0;
right: 100px;
left:0;
-webkit-user-drag:element;
-ms-touch-action: inherit;
touch-action: inherit;
}
#log * {
pointer-events:none;
}
#boxes {
position: absolute;
right: 0;
width: 100px;
top: 0;
bottom: 0;
}
.box {
margin: 4px;
height: 90px;
width: 90px;
border: 1px solid black;
}
#purple
{
background-color: purple;
top: 10px;
}
#purple:hover
{
background-color: #D000D0;
}
#purple:active
{
border: 1px solid red;
}
#purple:hover::after
{
content: ":hover";
}
#purple:active::after
{
content: ":active";
}
#purple:hover:active::after
{
content: ":hover:active";
}
#red
{
background-color: red;
}
.noevents
{
opacity: 0.4;
pointer-events: none;
}
#scroll
{
overflow: scroll;
}
.overflowScrollTouch
{
-webkit-overflow-scrolling: touch;
}
#overlay
{
position: absolute;
top: 40px;
bottom: 20px;
left: 20px;
z-index: 100;
}
#config
{
background-color: lightgrey;
border: 2px solid darkgrey;
padding: 10px;
overflow: auto;
max-height: 95%;
}
.hide
{
visibility: hidden;
}
#header button
{
width: 64px;
}
#config-summary
{
top: 0;
left: 64px;
padding: 2px;
position: absolute;
font-size: x-small;
}