-
Notifications
You must be signed in to change notification settings - Fork 1
/
RE3.css
115 lines (96 loc) · 1.53 KB
/
RE3.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@500&display=swap');
body {
background-color: transparent;
color: #ffffff;
font-size: 24px;
font-family: "Teko", monospace;
font-weight: 700;
}
.container {
width: 100%;
height: 100%;
}
#srtQueryData {
position: relative;
width: 100%;
height: 100%;
}
font {
padding-right: 10px;
}
.inventory {
position: absolute;
width: calc(112px * 1.2 * 2);
top: 0px;
left: 136px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
img{
width: calc(112px * 1.2);
height: calc(72px * 1.2);
}
.inventory-item{
position: relative;
width: calc(112px * 1.2);
height: calc(72px * 1.2);
}
.equipped-item{
position: absolute;
top: 0px;
left: 0px;
}
.e-item{
width: calc(112px * 1.2);
height: calc(72px * 1.2);
}
.inventory-item-quantity {
position: absolute;
width: 35px;
height: 60px;
bottom: -30px;
left: 3px;
text-align: left;
}
.equipped {
position: absolute;
width: 100%;
top: 0px;
text-align: center;
font-size: 16px;
}
.inventory-item-quantity2 {
position: absolute;
width: 35px;
height: 60px;
bottom: -20px;
left: 3px;
text-align: left;
}
.green {
color: #00FF00;
}
.purple {
color: #693069;
}
.yellow {
color: yellow;
}
.orange {
color: orange;
}
.red {
color: red;
}
.grey {
color: gray;
}
.white{
color:#ffffff;
}
.infinity {
position: relative;
top: -10px;
font-size: 40px;
}