diff options
-rw-r--r-- | root/static/style/ttsite.css | 38 | ||||
-rw-r--r-- | root/template/html | 6 |
2 files changed, 16 insertions, 28 deletions
diff --git a/root/static/style/ttsite.css b/root/static/style/ttsite.css index 871052c..ddb2fac 100644 --- a/root/static/style/ttsite.css +++ b/root/static/style/ttsite.css @@ -1,7 +1,7 @@ /* begin changes obgr_seneca */ html, body { - background: #ddd; - margin: 0; padding: 0; + background: #ddd; + margin: 0; padding: 0; } #mgnavdoc { margin: 10px; position: absolute; top: 128px; } @@ -10,54 +10,40 @@ footer { margin: 1em 0 0 0; padding: 1em; font-size: 90%; + text-align: left; } footer, footer a { color: #888; } #doc { - -webkit-box-shadow: 0 0 10px #444; - -moz-box-shadow: 0 0 10px #444; - box-shadow: 0 0 10px #444; - -webkit-border-radius: 10px; - -moz-border-radius: 10px; - border-radius: 10px; - margin-top: 20px; + } #hd, #ft, #nav, #content, .inside { padding: 0 1em 0.5em 0; } -#nav { - text-align: left; -} +#nav { text-align: left; } #hd { background: #aaa; - padding: 10px 20px 4px 20px; - text-align: center; + padding: 10px 20px 4px 20px; + text-align: left; -webkit-border-radius: 10px 10px 0 0; -moz-border-radius: 10px 10px 0 0; - border-radius: 10px 10px 0 0; + border-radius: 10px 10px 0 0; } #bd { background: #fff; - padding: 2px 20px 2px 20px; - text-align: center; -} - -#bd h1 { - margin: 0.2em 0; + padding: 2px 20px 2px 20px; + text-align: left; } -#ft { - background: #aaa; - padding: 2px 20px 10px 20px; -} +#bd h1 { margin: 0.2em 0; } #input_form { display: block; width: 250px; text-align:left; - padding: 10px; + padding: 10px; -webkit-border-radius: 0.6em; -moz-border-radius: 0.6em; } diff --git a/root/template/html b/root/template/html index d6efde9..a363870 100644 --- a/root/template/html +++ b/root/template/html @@ -13,8 +13,10 @@ </head> <body class="you"> [% PROCESS template/header %] - <div id="mgnavdoc">[% content %]</div> - [% PROCESS template/footer %] + <div id="mgnavdoc"> + [% content %] + [% PROCESS template/footer %] + </div> <script src="//nav.mageia.org/js/"></script> </body> </html> |