-
Notifications
You must be signed in to change notification settings - Fork 0
/
mole.css
41 lines (35 loc) · 877 Bytes
/
mole.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
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background: url("./mario-bg.jpg");
background-size: cover;
}
#board {
width: 540px;
height: 540px;
/* background-color: green; */
margin: 0 auto;
display: flex;
flex-wrap: wrap;
background: url("./soil.png");
background-size: cover;
border: 3px solid white;
border-radius: 25px;
}
#board div {
/* board = 540 x 540, divide into 3x3 tiles --> 180 x 180 per div */
width: 180px;
height: 180px;
background-image: url("./pipe.png");
background-size: cover;
}
#board div img {
/* all img tags inside tiles */
width: 100px;
height: 100px;
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
}