-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (73 loc) · 1.38 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
* {
font-family: 'Press Start P2';
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: 'Press Start P2';
src: url('PressStart2P-Regular.woff') format('woff'),
url('PressStart2P-Regular.woff2') format('woff2');
}
#canvas1 {
border: 5px solid black;
position: absolute;
}
#player, #fence, #bacon {
display: none;
}
#container
{
height: 500px;
width: 500px;
position: relative;
top: 50%;
left: 50%;
transform: translate(-50%);
max-width: 100%;
max-height: 100%;
}
.restart {
border-color: black;
margin-left: 126px;
margin-top: 350px;
height: 80px;
width: 250px;
background-color: white;
font-size: 30px;
display: none;
position: absolute;
cursor: pointer;
}
.start {
border-color: black;
margin-left: 126px;
margin-top: 300px;
height: 80px;
width: 250px;
background-color: white;
font-size: 30px;
display: none;
position: absolute;
cursor: pointer;
}
.github {
border: none;
font-size: 12px;
position: absolute;
margin-top: 6px;
margin-left: 26px;
color: grey;
text-decoration: none;
cursor: pointer;
}
.portfolio {
border: none;
font-size: 12px;
position: absolute;
margin-top: 6px;
margin-left: 378px;
color: grey;
text-decoration: none;
cursor: pointer;
}