-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
93 lines (84 loc) · 1.7 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
84
85
86
87
88
89
90
91
92
93
/* Write your CSS Here. */
#maze {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 1050px;
background-color: #939191;
background-image: url(./images/ground.jpg);
background-repeat: repeat;
background-size: 50px;
}
#sokoban {
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 400px;
background-color: #939191;
background-image: url(./images/ground.jpg);
background-repeat: repeat;
background-size: 50px;
}
.mazeWall {
height:50px;
width: 50px;
background-color: black;
background: url(./images/wall.jpg);
background-size: 100% 100%;
}
.mazePath {
height: 50px;
width: 50px;
background: url(./images/ground.jpg);
background-size: 100% 100%;
}
.start {
height: 50px;
width: 50px;
background: url(./images/ground.jpg);
background-size: 100% 100%;
}
.finish {
height: 50px;
width: 50px;
background-color: azure;
}
.player {
height: 50px;
width: 50px;
background: url(./images/parrot.png);
background-size: 95% 100%;
z-index: 1;
}
.storage {
height: 50px;
width: 50px;
background-color: rgba(209, 8, 8, 0.592);
border-radius: 100%;
z-index: 1;
}
.crate {
height: 50px;
width: 50px;
background: url(./images/crate.png);
background-size: 100% 100%;
}
.sStart {
height: 50px;
width: 50px;
background-color: rgba(209, 8, 8, 0.592);
border-radius: 100%;
z-index: 1;
}
.storageCrate {
height: 50px;
width: 50px;
background-image: url(./images/crate.png);
background-size: 100% 100%;
}
.xDot {
height: 50px;
width: 50px;
background-color: rgba(209, 8, 8, 0.592);
border-radius: 50%;
}