-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmain.css
More file actions
79 lines (67 loc) · 1.21 KB
/
Copy pathmain.css
File metadata and controls
79 lines (67 loc) · 1.21 KB
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
body, button, select{
font-family: 'Courier New', Courier, monospace;
}
.container{
display: flex;
margin: auto;
justify-content: space-between;
align-items: center;
position: relative;
}
video, .container > .imgContainer{
display: flex;
align-items: center;
width: 45%;
height: 400px;
border: solid 1px #6495ED;
max-width: 600px;
position: relative;
}
#prompt1, #prompt2{
position: absolute;
top: 50%;
left: 10px;
z-index: 100;
}
#prompt2{
display: none;
}
.container > div > img {
width: 100%;
display: none;
}
h3{
text-align: center;
}
button, select, label{
cursor: pointer;
display: block;
margin: 10px auto;
width: 125px;
padding: 10px 0 10px 0;
}
button:disabled{
cursor: not-allowed;
}
#buttonContainer{
display: flex;
justify-content: space-evenly;
align-items: center;
width: 300px;
margin: 10px auto;
}
select, label{
visibility: hidden;
-webkit-appearance: none;
-webkit-border-radius: 0px;
border-radius: 0px;
text-align: center;
text-align-last: center;
-moz-text-align-last: center;
}
#c2Label{
visibility: visible;
}
#canvasTwo{
max-width: 600px;
}