-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
executable file
·91 lines (79 loc) · 1.24 KB
/
styles.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
body {
background-color: #f8f8f8;
font-family: "helvetica neue", helvetica, sans-serif;
font-size: 16px;
overflow: hidden;
}
label {
display: block;
padding: 20px;
border-bottom: solid 1px #ddd;
border-right: solid 1px #ddd;
width: 300px;
}
label {
color: #999;
}
#port-picker,
#status {
color: #000;
}
#port-picker {
max-width: 250px;
margin-right: 10px;
}
#position-input {
display: block;
-webkit-appearance:none !important;
width: 90%;
margin: 20px auto;
height: 6px;
background: rgb(13, 168, 97);
}
#position-input::-webkit-slider-thumb {
-webkit-appearance:none !important;
width: 30px;
height: 30px;
border-radius: 15px;
background: rgb(67, 135, 253);
}
#image {
position: absolute;
right: 10px;
top: -10px;
width: 256px;
height: 256px;
-webkit-transition: all .2s linear;
}
#container {
position: absolute;
top: 0;
left: 0;
width: 640px;
}
#calib {
min-height:100px;
max-height:400px;
width:100%;
}
#measure {
min-height:100px;
max-height:400px;
width:100%;
}
#tv {
position: absolute;
bottom: 0;
right: 0;
width: 640px;
height: 480px;
border-left: solid 1px #ddd;
}
#tv video,
#tv img {
display: none;
}
#tv.working video,
#tv.broken img {
display: block;
}