-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.css
More file actions
66 lines (60 loc) · 1.18 KB
/
menu.css
File metadata and controls
66 lines (60 loc) · 1.18 KB
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
#contentBox{
position: relative;
border: 4px solid black;
margin: 45px auto 45px auto;
width: 400px;
height: 400px;
display: flex;
flex-direction: column;
}
#contentBoxImg{
position: relative;
border: 4px solid black;
margin: 45px auto 45px auto;
width: 400px;
height: 400px;
display: flex;
flex-direction: column;
background-image: url(img/How_To_Play_SnakeGame.png);
background-position: center;
background-size:contain;
background-repeat: no-repeat;
}
#contentBox div{
position: relative;
margin: auto;
}
#textBox{
width: 300px;
font-size: xx-large;
font-weight: bold;
background-color: lightblue;
border-radius: 10px;
}
#textBox:hover{
color: white;
}
#howToPlayBoxFood{
width: 10px;
height: 10px;
background-color: blue;
}
#howToPlayBoxSnake{
width: 10px;
height: 10px;
background-color: red;
}
#backBtn{
position: absolute;
right: 0px;
height: 40px;
width: 40px;
border: 4px solid black;
text-align: center;
margin: 10px;
}
#backBtn i{
font-weight: bolder;
font-size: xx-large;
font-family: 'Courier New', Courier, monospace;
}