forked from philnash/mediadevices-camera-selection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
63 lines (55 loc) · 743 Bytes
/
app.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
html,
body {
margin: 0;
padding: 0;
}
html {
height: 100%;
}
body {
font-family: Helvetica, Arial, sans-serif;
min-height: 100%;
display: flex;
flex-direction: column;
}
header {
background: #f0293e;
color: #fff;
text-align: center;
}
main {
background: #ffffff;
min-height: 80vh;
flex-grow: 1;
}
.controls {
text-align: center;
padding: 0.5em 0;
background: #333e5a;
}
.controls {
color: #fff;
}
.controls p {
margin: 0;
}
.controls > div {
margin-bottom: 0.5em;
}
.controls > div:last-child {
margin-bottom: 0;
}
video {
width: 100%;
max-width: 600px;
display: block;
margin: 0 auto;
}
footer {
background: #333e5a;
color: #fff;
text-align: center;
}
footer a {
color: #fff;
}