-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (73 loc) · 1.11 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
body {
background: #6b6b69;
color: white;
}
.info {
position: relative;
font-family: Arial;
margin: 10px;
text-align: center;
border-radius: 5px;
font-size: 15px;
}
#title {
font-size:20px;
}
#build div {
width: 217px;
height: 217px;
border: 1px dashed gray;
display: inline-block;
margin: 0;
}
#build {
position: relative;
width: 665px;
height: 665px;
background: black;
border: 5px solid black;
margin: auto;
}
.head {
position: absolute;
top: 40px; left: 40px;
}
.chest {
position: absolute;
top: 340px; left: 40px;
}
#items {
width: 100%
}
img {
height: 217px;
width: 217px;
}
#item1,
#item2,
#item3,
#item4,
#item5,
#item6 {
height: 217px;
width: 217px;
/*display: inline-block;*/
}
#item1 {
background: linear-gradient(to bottom right, orange, orange, yellow);
}
#item2 {
background: linear-gradient(to right, red, orange);
}
#item3 {
background: linear-gradient(red, orange);
}
#item4 {
background: linear-gradient(to bottom right, red, red, orange);
}
#item5 {
background: yellow;
}
#item6 {
background: linear-gradient(orange, yellow);
}