fix
This commit is contained in:
parent
ab1256c040
commit
9d06cf0758
|
|
@ -82,7 +82,7 @@
|
||||||
animation-iteration-count: 1;
|
animation-iteration-count: 1;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
top: 72px;
|
top: 62px;
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
padding-bottom: 2px;
|
padding-bottom: 2px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
100% {
|
100% {
|
||||||
background-position-x: 61px;
|
background-position-x: 72px;
|
||||||
animation-timing-function: linear;
|
animation-timing-function: linear;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -24,6 +24,24 @@ html {
|
||||||
animation-iteration-count: infinite;
|
animation-iteration-count: infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#alert,
|
||||||
|
#success {
|
||||||
|
height: fit-content;
|
||||||
|
margin: 0px;
|
||||||
|
animation: alertanim;
|
||||||
|
animation-duration: 250ms;
|
||||||
|
animation-iteration-count: 1;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 10;
|
||||||
|
top: 72px;
|
||||||
|
padding-top: 2px;
|
||||||
|
padding-bottom: 2px;
|
||||||
|
padding-right: 5px;
|
||||||
|
padding-left: 5px;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
.content, #footer {
|
.content, #footer {
|
||||||
max-width: 1000px;
|
max-width: 1000px;
|
||||||
width: 1000px;
|
width: 1000px;
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,10 @@
|
||||||
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
|
@section('alert')
|
||||||
|
<div id="alert">Note that this page does not support joining yet. If you would like to join your own game that you are currently hosting, <a onclick="openClientPopup('localhost','53640',null,'join')">click here</a>.</div>
|
||||||
|
@endsection
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
<div class="content_special" id="gametopcontainer">
|
<div class="content_special" id="gametopcontainer">
|
||||||
<div class="leftgamecontainer">
|
<div class="leftgamecontainer">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue