-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (93 loc) · 1.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
a {
color: #15c;
font-weight: 300;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
body {
font-family: sans-serif;
font-weight: 300;
margin: 0;
padding: 0;
word-break: break-word;
}
button {
border: none;
padding: 0.6em;
background-color: transparent;
color: #fff;
font-size: 23px;
}
button:active {
color: #2673d6;
}
button:hover {
color: #2673d6;
}
button[disabled] {
color: #ccc;
}
canvas {
background-color: #ccc;
max-width: 100%;
width: 100%;
}
div#container {
display: flex;
height: 100vh;
}
html {
overflow-y: scroll;
}
img {
border: none;
max-width: 100%;
}
section p:last-of-type {
margin: 0;
}
section {
border-bottom: 1px solid #eee;
margin: 0 0 30px 0;
padding: 0 0 20px 0;
}
section:last-of-type {
border-bottom: none;
margin: 0;
padding: 0 0 1em 0;
}
select {
margin: 0 1em 1em 0;
position: relative;
top: -1px;
}
video {
background: #000;
width: 100%;
}
.cam-head{
position: fixed;
top: 0;
width: 100%;
height: 50px;
background-color: #000;
justify-content: flex-end;
display: flex;
}
.cam-foot{
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
background-color: #000;
display: flex;
justify-content: space-between;
align-items: center;
}
#canvas{
width: 100%;
height: 100%;
display: none
}