36 lines
851 B
HTML
36 lines
851 B
HTML
<html>
|
|
<head>
|
|
<title>Hello Gamer</title>
|
|
<link rel="stylesheet" type="text/css" href="../loading.css?3" />
|
|
<script type="text/javascript" src="../jquery-1.7.1.min.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<table id="wrapper" style="box-shadow: inset 0px 0px 20px 2px;">
|
|
<tr>
|
|
<td><img src="../RobloniumTitleMaintenance.png" alt="" />
|
|
<center>
|
|
<br />
|
|
<div id = "loadtext" class ="loading_text">We're currently undergoing maintenance</div>
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(window).resize(function(){
|
|
|
|
$('.className').css({
|
|
position:'absolute',
|
|
left: ($(window).width() - $('.className').outerWidth())/2,
|
|
top: ($(window).height() - $('.className').outerHeight())/2
|
|
});
|
|
|
|
});
|
|
|
|
// To initially run the function:
|
|
$(window).resize();
|
|
</script
|
|
</body>
|
|
</html> |