Guest User

Untitled

a guest
Jan 23rd, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Indicadores</title>
  5. <meta charset="utf-8" />
  6. <style type="text/css">
  7. body {
  8. background:url('background.png');
  9. background-repeat:repeat-x;
  10. font-family:Helvetica, Arial, sans-serif;
  11. }
  12. #menu {
  13. background-color:#1A667E;
  14. border-right-width:1px;
  15. border-right-style:solid;
  16. border-right-color:#064862;
  17. font-family: Helvetica, Arial, sans-serif;
  18. position:absolute;
  19. top:0px;
  20. left:0px;
  21. width:215px;
  22. height:100%;
  23. text-shadow:1px 1px 1px black;
  24. }
  25. #menu a {
  26. color:white;
  27. text-decoration:none;
  28. }
  29. .button_i, .button_m {
  30. width:150px;
  31. background: #0e526a; /* Old browsers */
  32. background: -moz-linear-gradient(top, #0e526a 0%, #01394e 100%); /* FF3.6+ */
  33. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0e526a), color-stop(100%,#01394e)); /* Chrome,Safari4+ */
  34. background: -webkit-linear-gradient(top, #0e526a 0%,#01394e 100%); /* Chrome10+,Safari5.1+ */
  35. background: -o-linear-gradient(top, #0e526a 0%,#01394e 100%); /* Opera11.10+ */
  36. background: linear-gradient(top, #0e526a 0%,#01394e 100%); /* W3C */
  37. border-radius:2px;
  38. border-color:#054866;
  39. border-style:solid;
  40. border-width:2px;
  41. }
  42. .button_i {
  43. padding:10px 52px;
  44. }
  45. .button_m {
  46. padding:10px 10px;
  47. }
  48.  
  49. #grafico {
  50. margin-left:220px;
  51. margin-top:45px;
  52. }
  53. #tipo {
  54. position:absolute;
  55. top:10px;
  56. left:225px;
  57. }
  58. #anuncio {
  59. float:right;
  60. width:150px;
  61. height:100%;
  62. background-color:gray;
  63. }
  64. </style>
  65. </head>
  66. <body>
  67. <div id="menu">
  68. <div style="font-size:32px; color:white; text-align:center; margin-top:5px;">
  69. Indicador
  70. </div>
  71. <div style="text-align:center; margin-top:50px;">
  72. <a href="#" class="button_i">Início</a><br><br><br>
  73. <a href="#" class="button_m">Mais indicadores</a>
  74. </div>
  75. </div>
  76. <div id="tipo">
  77. <form>
  78. Escolha o tipo de dado:
  79. <select>
  80. <option value="lol">Perfil da indústria, do comércio, e</option>
  81. <option value="fepame1337boy">Fepame :3</option>
  82. </select>
  83. </form>
  84. </div>
  85. <div id="grafico">
  86. <img src="grafico.png">
  87. </div>
  88. </body>
  89. </html>
Add Comment
Please, Sign In to add comment