Kelvineger

style

Dec 9th, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.00 KB | None | 0 0
  1. /*
  2.     Created on : 08/12/2014, 20:48:08
  3.     Author     : Kelvin
  4. */
  5. *{
  6.     margin: auto;
  7.     padding: 0;
  8. }
  9. body{
  10.     background-color: #ccc;
  11. }
  12. a{
  13.     text-decoration: none;
  14. }
  15. #AnuncioTopo{
  16.     width: 100%;
  17.     height: 20px;
  18.     text-align: center;
  19.     padding: 4px;
  20. }
  21. #BarraTopo{
  22.     background-color: #111;
  23.     width: 100%;
  24.     height: 30px;
  25. }
  26. #topo{
  27.     background: -webkit-linear-gradient(red, #F1F1F1); /* For Safari 5.1 to 6.0 */
  28.     background: -o-linear-gradient(red, #F1F1F1); /* For Opera 11.1 to 12.0 */
  29.     background: -moz-linear-gradient(red, #F1F1F1); /* For Firefox 3.6 to 15 */
  30.     background: linear-gradient(red, #F1F1F1); /* Standard syntax */
  31.     width: 100%;
  32.     height: 160px;
  33. }
  34.  
  35. #centroTopo{
  36.     width: 1000px;
  37. }
  38.  
  39. #logo{
  40.     width: 250px;
  41.     float: left;
  42. }
  43.  
  44. #logo img{
  45.     border: 2px solid;
  46.     border-radius: 10px;
  47. }
  48.  
  49. #pesquisa{
  50.     width: 305px;
  51.     float: right;
  52.     background-color: white;
  53.     border: 1px solid #CCC;
  54.     margin-top: 50px;
  55.     border-radius: 4px;
  56. }
  57. #txtPesquisa{
  58.     width: 250px;
  59.     height: 30px;
  60.     padding: 5px;
  61.     border: none;
  62.     background-color: white;
  63.     margin-left: 3px;
  64.     outline: none;
  65.     vertical-align: top;
  66.     cursor: pointer;
  67. }
  68. #btnSubmit{
  69.     width: 32px;
  70.     height: 32px;
  71.     background-image: url("../Imagens/do_site/pesquisa.png");
  72.     background-position: center;
  73.     background-repeat: no-repeat;
  74.     background-size: 100% 100%;
  75.     border: none;
  76.     background-color: white;
  77.     margin-top: 4px;
  78.     cursor: pointer;
  79. }
  80. #menu{
  81.     width: 100%;
  82.     text-align: center;
  83. }
  84.  
  85. #centro{
  86.     width: 1000px;
  87.     border-left: 2px solid #ccc;
  88.     border-right: 2px solid #ccc;
  89.     background-color: blue;
  90. }
  91. #esquerda{
  92.     width: 700px;
  93.     height: auto;
  94.     float: left;
  95.     background-color: blueviolet;
  96.     min-height: 600px;
  97. }
  98. #direita{
  99.     width: 280px;
  100.     height: auto;
  101.     float: right;
  102.     background-color: aqua;
  103.     min-height: 600px;
  104. }
  105. .clear{
  106.     clear: both;
  107. }
Add Comment
Please, Sign In to add comment