make the UI boxes constructed from a sprite sheet instead of being a static sized sprite

This commit is contained in:
Xiexe
2020-10-03 19:34:43 -04:00
parent c039b5179f
commit f0e299702f
4 changed files with 19 additions and 6 deletions
+15 -4
View File
@@ -34,10 +34,7 @@ html, body {
z-index: 2; z-index: 2;
} }
#queueBox {
position: fixed;
width: 650px;
}
#queue { #queue {
@@ -107,6 +104,20 @@ html, body {
text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 3px #000, 10px 10px 2px #0000; text-shadow: 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 2px #000, 0 0 3px #000, 10px 10px 2px #0000;
} }
.UIBox {
position: fixed;
border: 40px solid;
border-image: url('../img/ui/UI_BorderAtlas.png') 40% round;
z-index: 1;
}
.UIBoxBackground
{
position: fixed;
background-color: rgba(0, 0, 0, 0.75);
z-index: 0;
}
.button { .button {
font-family: 'FRIZQT'; font-family: 'FRIZQT';
font-size: 23px; font-size: 23px;
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

+4 -2
View File
@@ -19,7 +19,8 @@
<!--QUEUE BOX--> <!--QUEUE BOX-->
<div class="centered" id="queue"> <div class="centered" id="queue">
<img src="assets/img/ui/queuebox.png" id="queueBox"> <div class="UIBox" style="width: 450px; height: 100px;"></div>
<div class="UIBoxBackground" style="width: 500px; height: 150px;"></div>
<div id="queueTextContainer"> <div id="queueTextContainer">
<p class="queueText">Realm is Full</p> <p class="queueText">Realm is Full</p>
@@ -32,7 +33,8 @@
<!--DISCONNECT MESSAGE--> <!--DISCONNECT MESSAGE-->
<div class="centered" id="disconnectBox" style="display: none;"> <div class="centered" id="disconnectBox" style="display: none;">
<img src="assets/img/ui/queuebox.png" id="queueBox"> <div class="UIBox" style="width: 550px; height: 100px;"></div>
<div class="UIBoxBackground" style="width: 600px; height: 150px;"></div>
<div id="dcTextContainer"> <div id="dcTextContainer">
<p class="queueText">You have been disconnected from the server.</p> <p class="queueText">You have been disconnected from the server.</p>