Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pt-br">
- <head>
- <meta charset="UTF-8">
- <title>MODELO LPWEB</title>
- <style>
- body { font-size:12px;font-family:Arial,Tahoma;background-color:#696969;color:white;margin:0px;padding:0px; }
- a { color:rgba(255,255,255,0.9); }
- a:visited { color:white; }
- a:hover { }
- p { }
- ul { margin:0px;padding:0px;list-style-type:none; }
- .fl { float:left; }
- .fr { float:right; }
- .li-up { height:20px;width:50px;border:1px solid rgba(0,0,0,0.0); font-size:11px;padding:8px 5px 2px 5px; margin:0px 0px 0px 0px;letter-spacing: 2px;background-color:rgba(0,0,0,0.0);text-align:center; }
- .li-up:hover { border-bottom: 1px solid rgba(255,255,255,0.2);margin-top:0px;background-color:rgba(0,0,0,0.4);height:19px; }
- .active { border-bottom: 1px solid rgba(255,255,255,0.1);margin-top:0px;background-color:rgba(0,0,0,0.2);height:19px; }
- .menu-up { min-height:0px;font-family:Tahoma,Arial;font-size:11px;color:rgba(255,255,255,0.7);padding:0px; }
- .copyright { text-align:center;padding:15px;font-family:Tahoma,Arial;font-size:11px;color:rgba(255,255,255,0.6); }
- #BASE { padding:0px;width:900px; min-height:200px;background-color:rgba(0,0,0,0.3);margin:0 auto;border-bottom:1px solid rgba(255,255,255,0.2);border-left:1px solid rgba(255,255,255,0.2);border-right:1px solid rgba(255,255,255,0.2); }
- #SUPERIOR { margin:0px;height:30px;width:100%;padding:0px;background-color:rgba(0,0,0,0.4);border-bottom:1px solid rgba(255,255,255,0.2); }
- #TOPO { margin:0 auto;width:900px;height:30px;background-color:rgba(0,0,0,0.2); }
- #CONTEUDO { padding:15px;min-height:150px;background-color:rgba(0,0,0,0.0); }
- #RODAPE { min-height:50px;background-color:rgba(0,0,0,0.1);border-top:1px solid rgba(255,255,255,0.1); }
- </style>
- </head>
- <body>
- <div id="SUPERIOR">
- <div id="TOPO">
- <div class="menu-up">
- <ul>
- <a href="index.php?url=menu"><li class="li-up fr <?php if ($_GET["url"]=="menu") { echo "active"; } ?>">MENU</li></a>
- <a href="index.php"><li class="li-up fr <?php if (!$_GET["url"]) { echo "active"; } ?>">HOME</li></a>
- </ul>
- </div>
- </div>
- </div>
- <div id="BASE">
- <div id="CONTEUDO"></div>
- <div id="RODAPE"><div class="copyright">Todos os direitos reservados - 2014</div></div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement