Advertisement
Guest User

Modelo 0.1 - lpweb

a guest
Aug 6th, 2014
979
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>MODELO LPWEB</title>
  6. <style>
  7. body { font-size:12px;font-family:Arial,Tahoma;background-color:#696969;color:white;margin:0px;padding:0px; }
  8. a { color:rgba(255,255,255,0.9); }
  9. a:visited { color:white; }
  10. a:hover { }
  11. p { }
  12. ul { margin:0px;padding:0px;list-style-type:none; }
  13. .fl { float:left; }
  14. .fr { float:right; }
  15. .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; }
  16. .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; }
  17. .active { border-bottom: 1px solid rgba(255,255,255,0.1);margin-top:0px;background-color:rgba(0,0,0,0.2);height:19px; }
  18. .menu-up { min-height:0px;font-family:Tahoma,Arial;font-size:11px;color:rgba(255,255,255,0.7);padding:0px; }
  19. .copyright { text-align:center;padding:15px;font-family:Tahoma,Arial;font-size:11px;color:rgba(255,255,255,0.6); }
  20. #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); }
  21. #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); }
  22. #TOPO { margin:0 auto;width:900px;height:30px;background-color:rgba(0,0,0,0.2); }
  23. #CONTEUDO { padding:15px;min-height:150px;background-color:rgba(0,0,0,0.0); }
  24. #RODAPE { min-height:50px;background-color:rgba(0,0,0,0.1);border-top:1px solid rgba(255,255,255,0.1); }
  25. </style>
  26. </head>
  27. <body>
  28. <div id="SUPERIOR">
  29. <div id="TOPO">
  30. <div class="menu-up">
  31. <ul>
  32. <a href="index.php?url=menu"><li class="li-up fr <?php if ($_GET["url"]=="menu") { echo "active"; } ?>">MENU</li></a>
  33. <a href="index.php"><li class="li-up fr <?php if (!$_GET["url"]) { echo "active"; } ?>">HOME</li></a>
  34. </ul>
  35. </div>
  36. </div>
  37. </div>
  38. <div id="BASE">
  39.  
  40. <div id="CONTEUDO"></div>
  41. <div id="RODAPE"><div class="copyright">Todos os direitos reservados - 2014</div></div>
  42. </div>
  43.  
  44. </body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement