-
Notifications
You must be signed in to change notification settings - Fork 21
/
dashboard_camera_previews.css
112 lines (96 loc) · 2.78 KB
/
dashboard_camera_previews.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
/* camera */
.cameraPlayButtons{height:0}
.cameraPlayButtons{display:none}
button.playpause:hover::after {
width: .5em;
}
button.playpause::after {
content: "";
position: absolute;
background: inherit;
width: 0;
height: 2em;
top: 1.5em;
left: 2.25em;
transition: .218s ease;
}
button.playpause:hover::before {
height: 2em;
border-width: 0 0 0 2em;
}
button.playpause::before {
content: "";
position: absolute;
top: 1.5em;
left: 1.5em;
height: 0;
border-style: solid;
border-width: 1em 0 1em 2em;
border-color: transparent transparent transparent #FFFFFF80;
transition: .218s ease;
}
button.playpause {
position: absolute;
background: transparent;
border: none;
outline: none;
height: 5em;
width: 5em;
font-size: 0.5em;
cursor: pointer;
top: 110px;
}
/*
button.playpause{background-color:transparent;border-radius: 0;box-sizing: content-box}
button.playpause:not(.playing) {
width: 4px;
height: 16px;
border-right: 4px solid #000;
border-left: 4px solid #000;
}
button.playpause.playing {
width: 0;
height: 0;
border-top: 8px solid transparent;
border-left: 12px solid #000;
border-bottom: 8px solid transparent;
}
*/
#dashcontent h2 + div.divider .span4 .camera #cameraImage {
background-size:100% 100%!important;
background-repeat: no-repeat;
background-position: center!important;
border-radius:3px;
}
#dashcontent h2 + div.divider .span4 .camera tr td.status {
position: inherit;
display:block !important;
height:88px !important;
}
@media all and (min-width: 768px){
.cameraPlayButtons{display: block}
#dashcontent h2 + div.divider .span4 .camera.keepclear #bigtext,
#dashcontent h2 + div.divider .span4 .camera.keepclear .bigtext{
top:-28px;
}
.bigtext img,
#dashcontent h2 + div.divider .span4 .camera.keepclear #bigtext img,
#dashcontent h2 + div.divider .span4 .camera.keepclear .bigtext img{
vertical-align: text-bottom;
height:20px; width:20px;
}
#dashcontent h2 + div.divider .span4 .camera:not(.keepclear) #bigtext img,
#dashcontent h2 + div.divider .span4 .camera:not(.keepclear) .bigtext img{
vertical-align: baseline;
height:60px; width:60px;
margin-left:20px
}
body:not(.dashboard) #dashcontent h2 + div.divider .span4 .item.camera #bigtext,
body:not(.dashboard) #dashcontent h2 + div.divider .span4 .item.camera .bigtext{
top:-30px;
}
#dashcontent h2 + div.divider .span4 .camera.keepclear #img,
#dashcontent h2 + div.divider .span4 .camera.keepclear .img{top:-33px;}
#dashcontent h2 + div.divider .span4 .camera.keepclear #img img,
#dashcontent h2 + div.divider .span4 .camera.keepclear .img img {width:30px;height:30px;}
}