-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
67 lines (53 loc) · 947 Bytes
/
main.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
html,body{
margin:0;
padding:0;
overflow: hidden;
min-width: 650px;
background-color: #000;
}
#camera{
position: relative;
}
#videoStream{
width: 650px;
display: inline-block;
}
#buttonHolder{
width: 100%;
position: absolute;
bottom: 30px;
}
p{
background: #fff;
color: yellow;
font-size: 1.5em;
padding: 20px;
}
.cameraButton{
width: 100px;
padding: 10px;
display: block;
text-align: center;
text-decoration: none;
float: left;
margin-left: 15%;
background-color: rgba(0, 0, 150, 0.5);
border: 1px solid rgba(255, 255, 255, 0.7);
box-shadow: 0px 0px 1px 2px rgba(0, 0, 0, 0.2);
font-size: 14px;
font-family: "Lucida Grande", "Arial", sans-serif;
color: rgba(255, 255, 255, 1.0);
}
a:hover{
background-color: rgba(0, 150, 0, 0.5);
}
#cameraSwitch{
background-color: rgba(150, 0, 0, 0.5);
}
#takePhoto{
}
#cameraVideo{
width: 100%;
min-width: 650px;
background-color: #000000;
}