-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
39 lines (34 loc) · 800 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
body {
padding: 0;
margin: 0;
}
#board {
width: 90%;
height: auto;
display: flex;
flex-wrap: wrap;
border: 1px solid black;
}
.solution {
background-image: url('src/Labyrinth/images/sport.png');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
.player {
background-image: url('src/Labyrinth/images/start.png');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}
.danger {
background-image: url('src/Labyrinth/images/wall.png');
background-size: cover;
background-position: center;
}
.end {
background-image: url('src/Labyrinth/images/medal.png');
background-size: contain;
background-position: center;
background-repeat: no-repeat;
}