-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (69 loc) · 1.33 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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
overflow: hidden;
width: 100vw;
height: 100vh;
background-color: black;
color: white;
font-family: 'Press Start 2P', cursive;
}
#container {
text-align: center;
min-height: 680px;
}
h1 {
margin-top: 10px;
font-size: 40px;
}
#menu {
display: grid;
width: 800px;
height: 500px;
border: 8px solid white;
position: absolute;
top: 55vh;
left: 50vw;
transform: translate(-50%, -50%);
align-content:space-around;
}
li {
list-style: none;
}
button {
font-family: inherit;
color: inherit;
margin: 40px auto;
padding: 20px;
width: 460px;
font-size: 25px;
border-bottom: 0px black;
border-top: 0px black;
background-color: black;
}
button:hover {
color: blue;
border-left: 15px solid white;
border-right: 15px solid white;
border-bottom: 0px black;
border-top: 0px black;
}
#pitch {
width: 800px;
height: 500px;
border: 8px solid white;
cursor: none;
visibility: hidden;
position: absolute;
top: 55vh;
left: 50vw;
transform: translate(-50%, -50%);
}
#score {
color: white;
margin-top: 10px;
visibility: hidden;
}