-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathstyle.css
52 lines (51 loc) · 770 Bytes
/
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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
height: 100vh;
background: #2f2f2f;
width: calc(100% - 33px);
}
canvas {
position: absolute;
}
.container {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
}
.result-container {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
flex-direction: column;
}
.result-container > div {
font-size: 1.3rem;
padding: 0.5rem;
margin: 5px 0;
color: white;
text-transform: capitalize;
}
#age {
background: #1e94be;
}
#emotion {
background: #8a1025;
}
#gender {
background: #62d8a5;
}
video {
width: 100%;
}
header {
background: #42a5f5;
color: white;
width: 100%;
font-size: 2rem;
padding: 1rem;
font-size: 2rem;
}