No changes
This commit is contained in:
parent
8680a02b13
commit
b6b398f5bf
17374 changed files with 2475441 additions and 0 deletions
358
ControlPanel/modules/ftp/skins/blue/css/main.css.php
Normal file
358
ControlPanel/modules/ftp/skins/blue/css/main.css.php
Normal file
|
|
@ -0,0 +1,358 @@
|
|||
<?php
|
||||
header("Content-type: text/css");
|
||||
if (isset($_GET["ltr"]) == true && $_GET["ltr"] != "rtl") { $left = "left"; $right = "right"; }
|
||||
else { $left = "right"; $right = "left"; }
|
||||
if (isset($_GET["image_url"]) == true) { $image_url = preg_replace("/[\\*\\?\\<\\>\\|]/", "", $_GET["image_url"]); }
|
||||
else { $image_url = ""; }
|
||||
?>
|
||||
|
||||
/* CSS document colors
|
||||
#003250
|
||||
#5893ac
|
||||
#bbd2e0
|
||||
#F2F2F5
|
||||
#A7A7A7
|
||||
#787878
|
||||
*/
|
||||
|
||||
* {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #ffffff;
|
||||
font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
color: #000;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#container {
|
||||
margin-<?php echo $left; ?>: auto;
|
||||
margin-<?php echo $right; ?>: auto;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 20px;
|
||||
width: 980px;
|
||||
font-size: 1.2em;
|
||||
text-align: <?php echo $left; ?>;
|
||||
}
|
||||
|
||||
#head {
|
||||
padding-top: 20px;
|
||||
padding-<?php echo $left; ?>: 20px;
|
||||
padding-<?php echo $right; ?>: 20px;
|
||||
padding-bottom: 20px;
|
||||
height: 62px;
|
||||
background: url(<?php echo $image_url; ?>/img/bg_head.jpg) no-repeat;
|
||||
}
|
||||
|
||||
#headleft {
|
||||
float:<?php echo $left; ?>;
|
||||
}
|
||||
|
||||
#headright {
|
||||
float:<?php echo $right; ?>;
|
||||
width:470px;
|
||||
}
|
||||
|
||||
#head<?php echo $right; ?> h2 {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
#main {
|
||||
background: #F2F2F5;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
#menu {
|
||||
width: 200px;
|
||||
float: <?php echo $left; ?>;
|
||||
}
|
||||
|
||||
.menuhead {
|
||||
background: url(<?php echo $image_url; ?>/img/bg_tabletop.png);
|
||||
height: 18px;
|
||||
width: 200px;
|
||||
color: #FFF;
|
||||
padding-top: 2px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.menucontent {
|
||||
background: #bbd2e0;
|
||||
color: #003250;
|
||||
width: 193px;
|
||||
padding-<?php echo $left; ?>: 5px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: solid 1px #003250;
|
||||
border-<?php echo $left; ?>: solid 1px #003250;
|
||||
border-<?php echo $right; ?>: solid 1px #003250;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin-<?php echo $left; ?>: 10px;
|
||||
width: 750px;
|
||||
float: <?php echo $right; ?>;
|
||||
}
|
||||
|
||||
#mainleft {
|
||||
float:<?php echo $left; ?>;
|
||||
width: 465px;
|
||||
}
|
||||
|
||||
#mainright {
|
||||
float: <?php echo $right; ?>;
|
||||
width: 485px;
|
||||
margin-<?php echo $left; ?>: 10px;
|
||||
}
|
||||
|
||||
#tabelfeaturestop {
|
||||
padding-<?php echo $left; ?>: 10px; background-color: #003250; height: 21px; color:#FFF; padding-top:5px;
|
||||
}
|
||||
|
||||
#tablefeature {
|
||||
background: #bbd2e0;
|
||||
border-<?php echo $left; ?>: #003250 1px solid;
|
||||
border-<?php echo $right; ?>: #003250 1px solid;
|
||||
border-bottom: #003250 1px solid;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#tablefeature span {
|
||||
background-image: url(<?php echo $image_url; ?>/img/arrow.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0.5em;
|
||||
padding-<?php echo $left; ?>: 20px;
|
||||
font-weight: bold;
|
||||
color: #003250;
|
||||
}
|
||||
|
||||
#tablefeature p {
|
||||
padding-<?php echo $left; ?>:20px;
|
||||
padding-top: 2px;
|
||||
padding-bottom:2px;
|
||||
}
|
||||
|
||||
#foot {
|
||||
height: 24px;
|
||||
background: url(<?php echo $image_url; ?>/img/bg_foot.jpg) no-repeat;
|
||||
text-align: center;
|
||||
padding-top: 13px;
|
||||
color: #fff;
|
||||
|
||||
}
|
||||
|
||||
#poweredby {
|
||||
padding-top: 10px;
|
||||
text-align: center;
|
||||
font-size: 0.75em;
|
||||
}
|
||||
|
||||
a, a:link {
|
||||
text-decoration: underline;
|
||||
color: #003250;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
color: #5893ac;
|
||||
}
|
||||
|
||||
#foot a, #foot a:link {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
#foot a:hover {
|
||||
text-decoration: none;
|
||||
color: #5893ac;
|
||||
}
|
||||
|
||||
/* Tags */
|
||||
h1, h2, h3 {
|
||||
font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2.2em;
|
||||
color: #003250;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.6em;
|
||||
color: #003250;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.4em;
|
||||
}
|
||||
|
||||
.underline {
|
||||
text-decoration:underline;
|
||||
}
|
||||
|
||||
.button {
|
||||
color: #003250;
|
||||
background: #fff;
|
||||
border: solid 1px #003250;
|
||||
width: 50px;
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.smallbutton {
|
||||
color: #003250;
|
||||
background: #fff;
|
||||
border: solid 1px #003250;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
br {
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-<?php echo $left; ?>: 15px;
|
||||
}
|
||||
|
||||
/* Navigation */
|
||||
.navlist {
|
||||
margin-<?php echo $left; ?>: 0;
|
||||
padding-<?php echo $left; ?>: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.navlist li {
|
||||
padding-<?php echo $left; ?>: 20px;
|
||||
background-image: url(<?php echo $image_url; ?>/img/arrow.gif);
|
||||
background-repeat: no-repeat;
|
||||
background-position: 0.5em;
|
||||
}
|
||||
|
||||
.navlist li a, .navlist li a:link {
|
||||
text-decoration: none;
|
||||
color: #003250;
|
||||
}
|
||||
|
||||
.navlist li a:hover {
|
||||
text-decoration: none;
|
||||
color: #5893ac;
|
||||
}
|
||||
|
||||
/* Form */
|
||||
|
||||
select, input {
|
||||
padding: 2px;
|
||||
margin-top: 1px;
|
||||
margin-<?php echo $right; ?>: 0;
|
||||
margin-bottom: 1px;
|
||||
margin-<?php echo $left; ?>: 0;
|
||||
font-size: 1em;
|
||||
}
|
||||
|
||||
textarea {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.warning-box {
|
||||
background-color: #FFDD00;
|
||||
color: #000000;
|
||||
border: 2px;
|
||||
border-style: solid;
|
||||
border-color: #FFCC33;
|
||||
margin-<?php echo $left; ?>: 0px;
|
||||
margin-<?php echo $right; ?>: 10px;
|
||||
}
|
||||
|
||||
.warning-text {
|
||||
padding-bottom : 5px;
|
||||
padding-top : 5px;
|
||||
padding-<?php echo $left; ?> : 10px;
|
||||
padding-<?php echo $right; ?> : 10px;
|
||||
}
|
||||
|
||||
.browse_cell {
|
||||
width: 120px;
|
||||
height: 60px;
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
padding: 3px;
|
||||
}
|
||||
|
||||
.browse_rows_actions {
|
||||
background-color: #bbd2e0;
|
||||
color: #000000;
|
||||
font-size: 80%;
|
||||
font-weight: normal;
|
||||
text-align: <?php echo $left; ?>;
|
||||
}
|
||||
|
||||
.browse_rows_heading {
|
||||
background-color: #bbd2e0;
|
||||
color: #000000;
|
||||
font-size: 110%;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.browse_rows_odd, .browse_rows_even {
|
||||
color: #000000;
|
||||
font-size: 80%;
|
||||
font-weight: normal;
|
||||
text-align: <?php echo $left; ?>;
|
||||
}
|
||||
|
||||
.browse_rows_separator {
|
||||
border: 2px;
|
||||
color: #000000;
|
||||
font-size: 100%;
|
||||
text-align: <?php echo $left; ?>;
|
||||
}
|
||||
|
||||
/*------------------------------------------------------------------------
|
||||
Process bar
|
||||
From the PHP Pear package HTML_Progress
|
||||
http://pear.laurent-laville.org/HTML_Progress/examples/horizontal/string.php
|
||||
------------------------------------------------------------------------*/
|
||||
|
||||
.p_ba7428 .progressBar, .p_ba7428 .progressBarBorder {
|
||||
width: 172px;
|
||||
height: 24px;
|
||||
position: relative;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.p_ba7428 .progressBarBorder {
|
||||
border-width: 0;
|
||||
border-style: solid;
|
||||
border-color: #003250;
|
||||
}
|
||||
|
||||
.p_ba7428 .installationProgress {
|
||||
width: 350px;
|
||||
text-align: left;
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 12px;
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
.p_ba7428 .cellI, .p_ba7428 .cellA {
|
||||
width: 15px;
|
||||
height: 20px;
|
||||
font-family: Courier, Verdana;
|
||||
font-size: 0.8em;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.p_ba7428 .cellI {
|
||||
background-color: #003250;
|
||||
}
|
||||
|
||||
.p_ba7428 .cellA {
|
||||
background-color: #003250;
|
||||
visibility: hidden;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue