-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (42 loc) · 781 Bytes
/
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
body {
display: flex;
justify-content: center;
align-items: center;
}
#menu {
width: 500px;
height: 500px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.menu-snake-img {
width: 120px;
height: 120px;
}
.menu-text {
font-family: 'Roboto', sans-serif;
font-size: 2em;
color: #48ca48;
}
.menu-play-button {
font-size: 1em;
width: 80px;
height: 40px;
background-color: white;
color: black;
border: 2px solid #636363;
transition-duration: 0.4s;
cursor: pointer;
}
.menu-play-button:hover {
color: white;
background-color: #48ca48;
}
#game {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
}