-
Notifications
You must be signed in to change notification settings - Fork 0
/
canvas.css
54 lines (46 loc) · 890 Bytes
/
canvas.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
body {
display: flex;
flex-direction: column;
justify-content: center;
background-image: url("CinemaBackground.jpg");
background-size: cover;
background-repeat: no-repeat;
background-color: black;
}
#container {
position: relative;
top:25px;
width: 550px;
align-self: center;
}
#container .over {
position: absolute;
top: 0px;
left: 0px;
}
#container .over#info {
background-color: black;
color: white;
width: 300px;
height: 300px;
position: relative;
margin: 50px auto;
padding: 10px;
border-width: 4px;
border-style: solid;
border-color: firebrick;
border-radius: 10px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif
}
.hide {
visibility: hidden;
}
#controls {
align-self: center;
}
#canvas {
z-index: 5;
}
video {
width: 100%;
}