forked from JohnAllsopp/webRTC-Security-Camera
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (48 loc) · 1.15 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
.alert{
animation-name: alertMe;
animation-duration: 1s;
animation-delay: 0s;
animation-iteration-count: infinite;
animation-timing-function: ease-in-out;
animation-fill-mode: forward;
animation-direction: alternate;
-webkit-animation-name: alertMe;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 0s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: ease-in-out;
-webkit-animation-fill-mode: forward;
-webkit-animation-direction: alternate;
-moz-animation-name: alertMe;
-moz-animation-duration: 1s;
-moz-animation-delay: 0s;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: ease-in-out;
-moz-animation-fill-mode: forward;
-moz-animation-direction: alternate;
position: relative;
}
@keyframes alertMe {
0% {
background-color: rgba(255, 0, 0, 1)
}
100% {
background-color: rgba(255, 0, 0, 0)
}
}
@-webkit-keyframes alertMe {
0% {
background-color: rgba(255, 0, 0, 1)
}
100% {
background-color: rgba(255, 0, 0, 0)
}
}
@-moz-keyframes alertMe {
0% {
background-color: rgba(255, 0, 0, 1)
}
100% {
background-color: rgba(255, 0, 0, 0)
}
}