aboutsummaryrefslogtreecommitdiffstats
path: root/css
diff options
context:
space:
mode:
authorManuel Hiebel <leuhmanu@mageia.org>2014-06-08 15:17:54 +0000
committerManuel Hiebel <leuhmanu@mageia.org>2014-06-08 15:17:54 +0000
commitb3bde618c1c24f3591f4a638b32aed3f7fd2829d (patch)
tree98bec989075c0f37752bf266b7038a2bb79ead4a /css
parentb8e5c38d5e2bc54c7122dc65b032bc7ae3008449 (diff)
downloadnav-b3bde618c1c24f3591f4a638b32aed3f7fd2829d.tar
nav-b3bde618c1c24f3591f4a638b32aed3f7fd2829d.tar.gz
nav-b3bde618c1c24f3591f4a638b32aed3f7fd2829d.tar.bz2
nav-b3bde618c1c24f3591f4a638b32aed3f7fd2829d.tar.xz
nav-b3bde618c1c24f3591f4a638b32aed3f7fd2829d.zip
sync nav
Diffstat (limited to 'css')
-rw-r--r--css/center.css62
-rw-r--r--css/index.php14
2 files changed, 75 insertions, 1 deletions
diff --git a/css/center.css b/css/center.css
new file mode 100644
index 0000000..987d493
--- /dev/null
+++ b/css/center.css
@@ -0,0 +1,62 @@
+
+/*! mageia.org nav CSS CENTER PART */
+
+#lang_form { position:relative;left:0;top:0 }
+
+
+#mgnav {
+ background: #ffffff;
+ padding-bottom: 0px;
+}
+
+#nav {
+ margin: auto;
+}
+
+#nav a.mageia {
+ width: 112px;
+ background: #fff url(//nav.mageia.org/css/mageia-logo-nav-3.png) no-repeat 5px 12px;
+ color: transparent;
+ text-shadow: none;
+}
+
+.about #mgnav .about,
+.downloads #mgnav .downloads,
+.community #mgnav .community,
+.blog #mgnav .community,
+.section-index #mgnav .community, /*forum*/
+.mediawiki #mgnav .wiki,
+.support #mgnav .support,
+.contribute #mgnav .contribute,
+.donate #mgnav .donate,
+.bugs-mageia-org #mgnav .contribute,
+.contrib #mgnav .contrib,
+.you #mgnav .you,
+.contact #mgnav .contact,
+.doc #mgnav .doc
+{
+ background: #2383C2;
+ background: -webkit-linear-gradient(top, #3494D3 0%, #2383C2 50%);
+ background: -moz-linear-gradient(top, #3494D3 0%, #2383C2 50%);
+ background: -o-linear-gradient(top, #3494D3 0%, #2383C2 50%);
+ background: linear-gradient(top, #3494D3 0%, #2383C2 50%);
+}
+
+
+#mgnavtitle, /* deprecated */
+#mgnavt /* preferred */
+{
+ text-align: center;
+}
+
+
+/* allows to have a title + contextual sub menu */
+header#mgnavt { text-align: center; }
+#mgnavt ul { font-size: 12px; margin: 0 0 0 2em; padding: 0; display: inline; }
+#mgnavt ul li { display: inline; margin: 0 0.3em; padding: 0; }
+
+/*from all.css*/
+#mgnavsub ul {
+ margin: auto;
+ padding: 0px 0px 0px 0px;
+}
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'));
+ }
+
+