-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (56 loc) · 1.49 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
html,
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
user-select: none;
}
#camera,
#camera--view,
#camera--sensor,
#camera--output {
position: fixed;
height: 100%;
width: 100%;
object-fit: cover;
user-select: none;
pointer-events: stroke;
}
#camera--view,
#camera--sensor,
#camera--output {
transform: scaleX(-1);
filter: FlipH;
}
#camera--trigger {
width: 65px;
background-color: rgb(39, 37, 37);
color: white;
font-size: 20px;
border-radius: 36px;
border: 4px solid white;
padding: 15px;
text-align: center;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
position: fixed;
bottom: 50px;
left: calc(50% - 50px);
cursor: pointer;
transition: all 0.5s linear ease-in-out;
}
#camera--trigger:hover {
background-color: rgb(83, 81, 81);
color: white;
}
.taken {
height: 100px !important;
width: 100px !important;
transition: all 0.5s ease-in;
border: solid 3px white;
box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
top: 20px;
right: 20px;
z-index: 2;
user-select: none;
}