144 lines
2.5 KiB
PHP
144 lines
2.5 KiB
PHP
<?php
|
|
header("Content-type: text/css; charset: UTF-8");
|
|
?>
|
|
<?php include '../config.php';?>
|
|
|
|
#header {
|
|
color: white;
|
|
}
|
|
|
|
#style{
|
|
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
|
|
background-color: <?php echo $custombackground; ?>;
|
|
color: white; #000000;
|
|
}
|
|
|
|
#statswidget{
|
|
background-color: <?php echo $custombackground; ?>;
|
|
color: white; #000000;
|
|
}
|
|
|
|
#maincontent{
|
|
position: fixed;
|
|
top: 40px; /*Set top value to HeightOfTopFrameDiv*/
|
|
left: 0px; /*Set left value to WidthOfLeftFrameDiv*/
|
|
right: 300px; /*Set right value to WidthOfRightFrameDiv*/
|
|
bottom: 0;
|
|
overflow: auto;
|
|
background:
|
|
}
|
|
|
|
|
|
* html body{ /*IE6 hack*/
|
|
padding: 120px 150px 0 200px; /*Set value to (HeightOfTopFrameDiv WidthOfRightFrameDiv 0 WidthOfLeftFrameDiv)*/
|
|
}
|
|
|
|
* html #maincontent{ /*IE6 hack*/
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
* html #framecontentTop{ /*IE6 hack*/
|
|
width: 100%;
|
|
}
|
|
|
|
.white-popup {
|
|
position: relative;
|
|
background: #FFF;
|
|
padding: 20px;
|
|
width:auto;
|
|
max-width: 500px;
|
|
margin: 20px auto;
|
|
}
|
|
|
|
.disktext{
|
|
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
|
|
color: black;
|
|
}
|
|
|
|
.disk {
|
|
border: 1px solid black;
|
|
width: 150px;
|
|
padding: 0px;
|
|
}
|
|
|
|
.used {
|
|
display block;
|
|
background: blue;
|
|
text-align: right;
|
|
padding: 0 0 0 0;
|
|
color: white;
|
|
}
|
|
|
|
#mask {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 9000;
|
|
background-color: #000;
|
|
display: none;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
|
|
div.version {
|
|
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 {
|
|
font-size: 16pt;
|
|
color: white;
|
|
}
|
|
|
|
iframe {
|
|
background: <?php echo $custombackground; ?>; /* this is just to make the frames easier to see */
|
|
}
|
|
|
|
div.UpdateNotify {
|
|
color: Red;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
</style>
|