-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyles.css
81 lines (69 loc) · 992 Bytes
/
styles.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
body {
font-family: "Roboto", sans-serif;
font-weight: 300;
margin: 0;
height: 100%;
}
.home {
margin: 1rem auto;
}
.hidden {
display: none;
}
@media screen and (min-width: 1000px) {
/* hack! to detect non-touch devices */
div#links a {
line-height: 0.8em;
}
canvas,
video {
min-height: 215px;
margin-bottom: 3rem;
}
}
canvas {
display: block;
max-width: 100%;
height: 100%;
object-fit: cover;
}
video {
display: block;
max-width: 100%;
height: 100%;
object-fit: cover;
}
h1 {
text-align: center;
margin: 1rem;
}
button:disabled {
background: lightgray;
color: black;
}
select option:disabled {
color: lightgray;
font-weight: bold;
}
form {
margin: 1em;
}
.control {
text-align: center;
margin: 0 0.5rem;
border-radius: 1rem !important;
font-size: 1rem;
width: 110px;
}
.hidden-link {
visibility: hidden;
}
footer {
font-size: 1rem;
}
.camera .row {
height: 215px;
}
#flip button {
width: 50%;
}