-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock.css
More file actions
73 lines (63 loc) · 1.26 KB
/
block.css
File metadata and controls
73 lines (63 loc) · 1.26 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
67
68
69
70
71
72
73
.block-1 {
box-sizing: border-box;
width: 64px;
height: 64px;
background:url('images/grass.png');
background-size: contain;
position: absolute;
left:64px;
}
.block-2 {
box-sizing: border-box;
width: 128px;
height: 64px;
background:url('images/grass.png');
background-size: contain;
}
.block-3 {
box-sizing: border-box;
width: 192px;
height: 64px;
background:url('images/grass.png');
background-size: contain;
position: relative;
left:64px;
}
.flower {
box-sizing: border-box;
width: 64px;
height: 64px;
background:url('images/rose.png');
background-size: contain;
position: relative;
left: 128px;
}
.yellow-flower {
box-sizing: border-box;
width: 64px;
height: 64px;
background:url('images/flower.png');
background-size: contain;
position: relative;
left: 128px;
}
.point {
width: 8px;
height: 8px;
background: rgb(255, 176, 0);
}
.bg {
border: solid 8px rgb(210, 157, 65);
background: rgb(36, 130, 255);
width: 320px;
height: 256px;
position: absolute;
left: 50%;
top:50%;
transform: translate(-50%,-50%);
}
body {
margin: 0;
background: url('images/brick.jpg');
background-size: 150px 150px;
}