12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- html, body{
- width:100%;
- }
- #conteudo{
- display:block;
- text-align:center;
- }
- #news{
- height:150px;
- width:50em;
- margin: auto;
- display:block;/*tive que colocar esse display como block pcausa da bosta do chrome */
- margin-top:10px;
- color:#fff;
- text-shadow:0px 0px 5px #000;
- border-radius:10px;
- }
- #news>article>p{
- text-align:justify;
- margin-left:5px;
- margin-right:5px
- }
- .net{/* === se quiser as imagens originais é só tirar os numerais delas, exceto php */
- background-image:url("../img/net1.jpg");
- background-position:center;
- }
- .bin{
- background-image:url("../img/bin1.png");
- background-color:#111;
- }.php{
- background-image:url("../img/php.jpg");
- }
- @media (max-width:800px){
- #news{
- width:90%;
- height:auto;
- margin:10px;
- }
- }
- #prce
- {
- color:#666;
- }
|