diff options
Diffstat (limited to 'css/index.php')
-rw-r--r-- | css/index.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/css/index.php b/css/index.php index 66604b2..a7aafd6 100644 --- a/css/index.php +++ b/css/index.php @@ -19,4 +19,16 @@ header('Content-Type: text/css;charset=utf-8'); header(sprintf('Expires: %s', gmdate('r', strtotime('+1 day')))); -echo str_replace('nav.mageia.org', $_SERVER['HTTP_HOST'], file_get_contents('all.css')); + +$style = isset($_GET['s']) ? trim($_GET['s']) : null; + + if ( $style == 'Center' ){ + echo str_replace('nav.mageia.org', $_SERVER['HTTP_HOST'], file_get_contents('source.css')); + echo str_replace('nav.mageia.org', $_SERVER['HTTP_HOST'], file_get_contents('center.css')); + echo "/*if lang_from missing, add some space*/ #nav li:last-child { padding-right:143px }"; + } + else { + echo str_replace('nav.mageia.org', $_SERVER['HTTP_HOST'], file_get_contents('source.css')); + } + + |