-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
95 lines (82 loc) · 1.5 KB
/
style.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
*{margin:0}
div{position: relative;}
canvas{
width: calc(100% - 60px);
height: calc(100% - 60px);
margin: auto;
padding: 30px;
max-height: 90vh;
max-width: 90vh;
margin: 0 auto;
display: table;
margin: 0 auto;
border-radius: 5em;
}
table{
table-layout:fixed;width:100%
}
canvas{
transform: rotateY(180deg);
-webkit-transform:rotateY(180deg);
-moz-transform:rotateY(180deg);
}
td{overflow:scroll}
td span{font-size:2em}
hr{ margin:1em; width:100%;text-align:left;margin-left:0}
#log{font-size:1.1em}
img{height:100px;width:100px;max-width:100%}
#righthand{
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
#lefthand{
}
.probRight img{
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
opacity: 0
}
.probLeft img{
opacity: 0
}
#results{
text-align:center
}
footer {
bottom:0;
display:block;
text-align:center;
padding:2em
}
input {border: 0;color:black }
#train{text-align:center}
.radio-toolbar {
margin: auto;
width: 50%;
padding: 10px;
text-align: center;
}
.radio-toolbar input[type="radio"] {
opacity: 0;
position: fixed;
width: 0;
}
.radio-toolbar label {
display: inline-block;
background-color: #ddd;
padding: 10px 20px;
font-family: sans-serif, Arial;
font-size: 16px;
border: 2px solid #444;
border-radius: 4px;
}
.radio-toolbar label:hover {
background-color: #dfd;
}
.radio-toolbar input[type="radio"]:focus + label {
border: 2px dashed #444;
}
.radio-toolbar input[type="radio"]:checked + label {
background-color: #bfb;
border-color: #4c4;
}