-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcamera.css
executable file
·56 lines (56 loc) · 986 Bytes
/
camera.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
article {
text-align: center;
}
#monitor {
/*-webkit-transform: scaleX(-1);*/
height: 100%;
width: 100%;
/*-webkit-box-reflect: below 20px -webkit-linear-gradient(top, transparent, transparent 80%, rgba(255,255,255,0.2));*/
}
#live {
/*position: absolute;
z-index: 1;
/*color: white;
right: 35px;
top: 20px;
height:inherit;
width:inherit;*/
background: rgb(0, 0, 0) transparent;
}
.container {
padding: 10px 25px 5px 25px;
/*background: black;*/
border-radius: 4px;
display: inline-block;
position: relative;
}
.blur {
-webkit-filter: blur(3px);
}
.brightness {
-webkit-filter: brightness(5);
}
.contrast {
-webkit-filter: contrast(8);
}
.hue-rotate {
-webkit-filter: hue-rotate(90deg);
}
.hue-rotate2 {
-webkit-filter: hue-rotate(180deg);
}
.hue-rotate3 {
-webkit-filter: hue-rotate(270deg);
}
.saturate {
-webkit-filter: saturate(10);
}
.grayscale {
-webkit-filter: grayscale(1);
}
.sepia {
-webkit-filter: sepia(1);
}
.invert {
-webkit-filter: invert(1)
}