This commit is contained in:
Karl Hudgell 2016-01-12 14:39:48 +00:00
parent 72fa56b96d
commit c83d66e04c
5 changed files with 89 additions and 2 deletions

View File

@ -76,5 +76,33 @@ color: black;
-moz-border-radius:15px; -moz-border-radius:15px;
-webkit-border-radius:15px; -webkit-border-radius:15px;
} }
#boxes .window {
position: absolute;
left: 0;
top: 0;
width: 440px;
height: 200px;
display: none;
z-index: 9999;
padding: 20px;
border-radius: 15px;
text-align: center;
}
#boxes #dialog {
width: 750px;
height: 300px;
padding: 10px;
background-color: #ffffff;
font-family: 'Segoe UI Light', sans-serif;
font-size: 15pt;
}
#popupfoot {
font-size: 16pt;
position: absolute;
bottom: 0px;
width: 250px;
left: 250px;
}
</style> </style>

View File

@ -70,5 +70,33 @@ color: black;
padding: 0 0 0 0; padding: 0 0 0 0;
color: white; color: white;
} }
#boxes .window {
position: absolute;
left: 0;
top: 0;
width: 440px;
height: 200px;
display: none;
z-index: 9999;
padding: 20px;
border-radius: 15px;
text-align: center;
}
#boxes #dialog {
width: 750px;
height: 300px;
padding: 10px;
background-color: #ffffff;
font-family: 'Segoe UI Light', sans-serif;
font-size: 15pt;
}
#popupfoot {
font-size: 16pt;
position: absolute;
bottom: 0px;
width: 250px;
left: 250px;
}
</style> </style>

View File

@ -70,5 +70,33 @@ color: black;
padding: 0 0 0 0; padding: 0 0 0 0;
color: white; color: white;
} }
#boxes .window {
position: absolute;
left: 0;
top: 0;
width: 440px;
height: 200px;
display: none;
z-index: 9999;
padding: 20px;
border-radius: 15px;
text-align: center;
}
#boxes #dialog {
width: 750px;
height: 300px;
padding: 10px;
background-color: #ffffff;
font-family: 'Segoe UI Light', sans-serif;
font-size: 15pt;
}
#popupfoot {
font-size: 16pt;
position: absolute;
bottom: 0px;
width: 250px;
left: 250px;
}
</style> </style>

View File

@ -82,8 +82,11 @@ $('.window').hide();
<?php include 'config.php';?> <?php include 'config.php';?>
<?php include 'http://home.k-world.me.uk/version.php';?> <?php include 'http://home.k-world.me.uk/version.php';?>
<?php echo "<p style=\" text-align: center;\">$localversion</p>";?>
<?php echo "<p style=\" text-align: center;\">$version</p>";?>
<?php <?php
if ($localversion != $version) { if ($localversion != $remoteversion) {
require "updatenotify.php"; require "updatenotify.php";
} }
?> ?>

View File

@ -1,4 +1,4 @@
<?php <?php
//// KLANDING VERSION //// KLANDING VERSION
$version = "1.1"; // $remoteversion = "1.1"; //
?> ?>