Skip to content

Commit e13227e

Browse files
committed
Merge remote-tracking branch 'origin/threejs-javascript' into threejs-javascript
2 parents 37763be + b4f45b6 commit e13227e

File tree

1 file changed

+22
-26
lines changed

1 file changed

+22
-26
lines changed

src/client/styles/style.scss

Lines changed: 22 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
src: url(../assets/fonts/MinecraftRegular-Bmg3.otf);
66
}
77

8+
.dg.ac {
9+
z-index: 98;
10+
}
11+
812
body {
913
margin: 0;
1014
background: black;
@@ -195,79 +199,71 @@ body {
195199

196200
:root {
197201
--mn: 1;
198-
--box: calc(9*3)px;
199-
--st: calc(9*3)px;
202+
--box: calc(9 * 3) px;
203+
--st: calc(9 * 3) px;
200204
}
201205

202206
.hp,
203207
.food {
204-
width: calc(9*3px);
205-
height: calc(9*3px);
208+
width: calc(9 * 3px);
209+
height: calc(9 * 3px);
206210
margin-right: -10px;
207-
background-image:
208-
url("../../assets/pack/assets/minecraft/textures/gui/icons.png"),
209-
url("../../assets/pack/assets/minecraft/textures/gui/icons.png");
211+
background-image: url("../../assets/pack/assets/minecraft/textures/gui/icons.png"),
212+
url("../../assets/pack/assets/minecraft/textures/gui/icons.png");
210213
background-repeat: no-repeat, no-repeat;
211-
background-size: 256*3px auto, 256*3px auto;
214+
background-size: 256 * 3px auto, 256 * 3px auto;
212215
display: inline-block;
213216
image-rendering: pixelated;
214217
}
215218

216219
.hp.full {
217-
background-position: -3*52px 0px,
218-
-3*16px 0px;
220+
background-position: -3 * 52px 0px, -3 * 16px 0px;
219221
}
220222

221223
.hp.half {
222-
background-position: -3*61px 0px,
223-
-3*16px 0px;
224+
background-position: -3 * 61px 0px, -3 * 16px 0px;
224225
}
225226

226227
.hp.empty {
227-
background-position: -3*16px 0px,
228-
-3*16px 0px;
228+
background-position: -3 * 16px 0px, -3 * 16px 0px;
229229
}
230230

231231
.food.full {
232-
background-position: -3*52px -3*27px,
233-
-3*16px -3*27px;
232+
background-position: -3 * 52px -3 * 27px, -3 * 16px -3 * 27px;
234233
}
235234

236235
.food.half {
237-
background-position: -3*61px -3*27px,
238-
-3*16px -3*27px;
236+
background-position: -3 * 61px -3 * 27px, -3 * 16px -3 * 27px;
239237
}
240238

241239
.food.empty {
242-
background-position: -3*16px -3*27px,
243-
-3*16px -3*27px;
240+
background-position: -3 * 16px -3 * 27px, -3 * 16px -3 * 27px;
244241
}
245242

246243
.xp_bar_empty,
247244
.xp_bar {
248245
position: fixed;
249246
bottom: 65px;
250247
left: calc(50vw - 275px);
251-
width: 256*3px;
252-
height: 3*5px;
248+
width: 256 * 3px;
249+
height: 3 * 5px;
253250
background-image: url("../../assets/pack/assets/minecraft/textures/gui/icons.png");
254251
background-repeat: no-repeat;
255252
border: 0px;
256-
background-size: 256*3px auto;
253+
background-size: 256 * 3px auto;
257254
border: none;
258255
}
259256

260257
.xp_bar_empty {
261258
image-rendering: pixelated;
262-
background-position: 0px -3*64px;
259+
background-position: 0px -3 * 64px;
263260
}
264261

265262
.xp_bar {
266263
image-rendering: pixelated;
267-
background-position: 0px -3*68px;
264+
background-position: 0px -3 * 68px;
268265
}
269266

270-
271267
.inv_window {
272268
z-index: 10;
273269
background-image: url("../../assets/pack/assets/minecraft/textures/gui/container/inventory.png");

0 commit comments

Comments
 (0)