-
Notifications
You must be signed in to change notification settings - Fork 4
/
stylesheet.css
64 lines (56 loc) · 961 Bytes
/
stylesheet.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
/*CSS*/
canvas {
display: block; /*fix necessary to remove space at bottom of canvas */
}
/*for the iframe starwars*/
.frame {
position: fixed;
display: block;
width: 100vw;
height: 100vh;
max-width: 100%;
margin: 0;
padding: 0;
border: 0 none;
box-sizing: border-box;
}
.container {
position: relative;
text-align: center;
color: black;
}
.bottom-left {
position: absolute;
bottom: 8px;
left: 16px;
}
.top-left {
position: absolute;
top: 8px;
left: 16px;
}
.top-right {
position: absolute;
top: 8px;
right: 16px;
}
.bottom-right {
position: absolute;
bottom: 8px;
right: 16px;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.text-block {
position: absolute;
bottom: 20px;
right: 20px;
background-color:rgba(192,192,192,0.5);
color: white;
padding-left: 20px;
padding-right: 20px;
}