ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/computer3/live-snaps.fr/css/ |
Upload File : |
<?php
header('content-type: text/css');
include('../includes/webzone.php');
$list = get_select(array('table'=>'css', 'where1'=>'id', 'where2'=>1));
for($i=0; $i<count($list); $i++) {
$background_index_img = $list[$i]['background_index_img'];
$background_global_img = $list[$i]['background_global_img'];
$background_index_color = $list[$i]['background_index_color'];
$background_global_color = $list[$i]['background_global_color'];
$background_header = $list[$i]['background_header'];
$color_global = $list[$i]['color_global'];
$color_title = $list[$i]['color_title'];
$color_index = $list[$i]['color_index'];
$link = $list[$i]['link'];
$link_hover = $list[$i]['link_hover'];
}
echo '
body {
color: #'.$color_global.';
background-color: #'.$background_global_color.';
background-image: url(../images/'.$background_global_img.');
background-attachment: fixed;
background-position: center top;
background-repeat: no-repeat;
height: 100%;
}
.index {
color: #'.$color_index.';
background-color: #'.$background_index_color.';
background-image: url(../images/'.$background_index_img.');
background-attachment: fixed;
background-position: center top;
}
.header {
/*background-image: url(../images/' . $background_header . ');
background-attachment: fixed;
background-position: center
position: fixed; top;*/
margin-left: auto;
margin-right: auto;
width: 100%;
z-index: 9999;
}
a {
color: #'.$link.';
text-decoration: none;
}
a:hover {
color: #'.$link_hover.';
text-decoration: none;
}
.header_content {
padding-top: 10px;
}
.content-title {
color: #'.$color_title.';
}
';
?>