config
This commit is contained in:
parent
a5b7456f3f
commit
65ccd69737
@ -33,7 +33,7 @@ indicateSelected(formref.switchcontrol)
|
|||||||
<?php
|
<?php
|
||||||
$username = "$user";
|
$username = "$user";
|
||||||
$password = "$pass";
|
$password = "$pass";
|
||||||
$nonsense = "superkey2";
|
$nonsense = "superkey";
|
||||||
|
|
||||||
if (isset($_COOKIE['PrivatePageLogin'])) {
|
if (isset($_COOKIE['PrivatePageLogin'])) {
|
||||||
if ($_COOKIE['PrivatePageLogin'] == md5($password.$nonsense)) {
|
if ($_COOKIE['PrivatePageLogin'] == md5($password.$nonsense)) {
|
||||||
|
@ -15,6 +15,14 @@ background-color: black;
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#config {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: right;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
#maincontent{
|
#maincontent{
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
|
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
|
||||||
@ -114,4 +122,9 @@ div.head {
|
|||||||
font-size: 16pt;
|
font-size: 16pt;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#config a:link { color: black; }
|
||||||
|
div#config a:visited { color: black; }
|
||||||
|
div#config a:hover { color: black; }
|
||||||
|
div#config a:active { color: black; }
|
||||||
</style>
|
</style>
|
13
css/blue.css
13
css/blue.css
@ -16,6 +16,19 @@ background-color: #021AB0;
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#config a:link { color: #021AB0; }
|
||||||
|
div#config a:visited { color: #021AB0; }
|
||||||
|
div#config a:hover { color: #021AB0; }
|
||||||
|
div#config a:active { color: #021AB0; }
|
||||||
|
|
||||||
|
#config {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: right;
|
||||||
|
color: #021AB0;
|
||||||
|
}
|
||||||
|
|
||||||
#maincontent{
|
#maincontent{
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
|
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
|
||||||
|
@ -117,6 +117,20 @@ div.version {
|
|||||||
color: <?php echo $custombackground; ?>;
|
color: <?php echo $custombackground; ?>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#config {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: right;
|
||||||
|
color: <?php echo $custombackground; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
div#config a:link { color: <?php echo $custombackground; ?>; }
|
||||||
|
div#config a:visited { color: <?php echo $custombackground; ?>; }
|
||||||
|
div#config a:hover { color: <?php echo $custombackground; ?>; }
|
||||||
|
div#config a:active { color: <?php echo $custombackground; ?>; }
|
||||||
|
|
||||||
div.head {
|
div.head {
|
||||||
font-size: 16pt;
|
font-size: 16pt;
|
||||||
color: white;
|
color: white;
|
||||||
|
14
css/red.css
14
css/red.css
@ -108,4 +108,18 @@ div.head {
|
|||||||
font-size: 16pt;
|
font-size: 16pt;
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#config {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: right;
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
div#config a:link { color: red; }
|
||||||
|
div#config a:visited { color: red; }
|
||||||
|
div#config a:hover { color: red; }
|
||||||
|
div#config a:active { color: red; }
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
@ -15,6 +15,14 @@ background-color: white;
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#config {
|
||||||
|
position: fixed;
|
||||||
|
bottom: 0;
|
||||||
|
width: 100%;
|
||||||
|
text-align: right;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
#maincontent{
|
#maincontent{
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
|
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
|
||||||
@ -108,4 +116,9 @@ div.head {
|
|||||||
font-size: 16pt;
|
font-size: 16pt;
|
||||||
color: black;
|
color: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div#config a:link { color: white; }
|
||||||
|
div#config a:visited { color: white; }
|
||||||
|
div#config a:hover { color: white; }
|
||||||
|
div#config a:active { color: white; }
|
||||||
</style>
|
</style>
|
@ -126,6 +126,11 @@ if ($customfeed3visible > "0") {
|
|||||||
$colour = $_POST['CustColor'];
|
$colour = $_POST['CustColor'];
|
||||||
echo $colour;
|
echo $colour;
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<div id="config">
|
||||||
|
<?php echo "<a href=\"\config\" target=\"_blank\">Config</a>"; ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user