raiz.css 765 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. html, body{
  2. width:100%;
  3. }
  4. #conteudo{
  5. display:block;
  6. text-align:center;
  7. }
  8. #news{
  9. height:150px;
  10. width:50em;
  11. margin: auto;
  12. display:block;/*tive que colocar esse display como block pcausa da bosta do chrome */
  13. margin-top:10px;
  14. color:#fff;
  15. text-shadow:0px 0px 5px #000;
  16. border-radius:10px;
  17. }
  18. #news>article>p{
  19. text-align:justify;
  20. margin-left:5px;
  21. margin-right:5px
  22. }
  23. .net{/* === se quiser as imagens originais é só tirar os numerais delas, exceto php */
  24. background-image:url("../img/net1.jpg");
  25. background-position:center;
  26. }
  27. .bin{
  28. background-image:url("../img/bin1.png");
  29. background-color:#111;
  30. }.php{
  31. background-image:url("../img/php.jpg");
  32. }
  33. @media (max-width:800px){
  34. #news{
  35. width:90%;
  36. height:auto;
  37. margin:10px;
  38. }
  39. }
  40. #prce
  41. {
  42. color:#666;
  43. }