-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.css
59 lines (55 loc) · 959 Bytes
/
demo.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
html,body{
padding:0px;
margin:3px;
}
.container{
width:99%;
}
#gesture-pad{
width:60%;
height:370px;
min-width:300px;
line-height:370px;
color:gray;
text-align:center;
border:1px solid silver;
background-color:ghostwhite;
float:left;
margin-right:15px;
margin-bottom:15px;
}
.panel{
width:60%;
min-width:250px;
max-width:350px;
float:left;
}
#detected{
border:1px solid silver;
border-radius:10px;
height:1em;
line-height:1em;
text-align:center;
background-color:seagreen;
color:white;
padding: 4px 6px;
display: inline-block;
margin-bottom: 10px;
}
.detector{
border:1px solid silver;
border-radius:10px;
height:1em;
margin-bottom:10px;
line-height:1em;
text-align:center;
width: 20%;
display: inline-block;
}
.selected{
background-color:palegreen;
}
.gesturelist{
float:left;
margin-right:10px;
}