-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory.css
executable file
·64 lines (56 loc) · 1.18 KB
/
inventory.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
.mcui-inventory .mcui-inventory-row {
display: block;
}
.mcui-inventory-hotbar {
padding-top: 8px;
}
.mcui-inventory-slot {
position: relative;
display: inline-block;
background: #8b8b8b no-repeat center center / 32px 32px;
border: 2px solid;
border-color: #373737 #fff #fff #373737;
width: 32px;
height: 32px;
font-size: 16px;
line-height: 1;
text-align: left;
vertical-align: bottom;
}
.mcui-inventory-slot::before, .mcui-inventory-slot::after {
content: "";
position: absolute;
background-color: #8b8b8b;
height: 2px;
width: 2px;
pointer-events: none;
}
.mcui-inventory-slot::before {
bottom: -2px;
left: -2px;
}
.mcui-inventory-slot::after {
top: -2px;
right: -2px;
}
.mcui-inventory-slot-large {
padding: 8px;
}
.mcui-inventory-item {
position: relative;
display: block;
margin: -2px;
padding: 2px;
width: 32px;
height: 32px;
}
.mcui-inventory-stacksize {
position: absolute;
right: 0;
bottom: 0;
font-family: Minecraftia, sans-serif !important;
font-weight: normal !important;
color: #fff !important;
text-shadow: 2px 2px 0 #3f3f3f;
z-index: 2;
}