Advertisement
MizunoBrasil

CSS usado nos projetos

May 30th, 2022
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.92 KB | None | 0 0
  1. *{
  2.     margin: 0;
  3.     padding: 0;
  4.     box-sizing: border-box;
  5. }
  6.  
  7. a{
  8.     color: rgb(19, 2, 2);
  9.     text-decoration: none;    
  10. }
  11.  
  12. a:hover {
  13.        text-decoration: underline;
  14. }
  15.  
  16. p{
  17.    text-align: justify;
  18. }
  19.  
  20. .topo{
  21.     background-color: rgb(21, 88, 151);
  22.     padding-left: 30px;
  23.     padding-top: 60px;
  24.     padding-bottom: 60px;
  25.     color: rgb(255, 255, 255);
  26.     font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  27.     font-size: 50px;  
  28.    
  29. }
  30.  
  31. .barra{
  32.     background: -webkit-linear-gradient(top, rgb(255,255,255) 0%,rgb(229,229,229) 100%);
  33.     padding-left: 30px;
  34.     padding-top: 15px;
  35.     padding-bottom: 15px;
  36.     color: rgb(255, 255, 255);
  37.     font-family: 'Heebo', sans-serif;
  38.     font-weight: bold;
  39.     font-size: 17px;    
  40. }
  41.  
  42. .conteudo{
  43.     background-color: rgb(255, 255, 255);
  44.     padding-left: 30px;
  45.     padding-top: 15px;
  46.     padding-bottom: 15px;
  47.     color: rgb(21, 88, 151);
  48.     font-family: 'Heebo', sans-serif;
  49.     font-size: 20px;  
  50. }
  51.  
  52. .container2 {
  53.     width: 900px;
  54.     margin-left: auto;
  55.     margin-right: auto;
  56.     text-align: justify;
  57.     font-family: 'Heebo', sans-serif;
  58.     font-size: 20px;
  59.     color: black;
  60. }
  61.  
  62. .titulo_postagem{
  63.     width: 900px;
  64.     margin-left: auto;
  65.     margin-right: auto;
  66.     text-align: justify;
  67.     font-family: 'Heebo', sans-serif;
  68.     font-size: 40px;
  69.     color: black;
  70. }
  71.  
  72. .paginacao{
  73.     padding-top: 40px;
  74.     font-family: Arial, Helvetica, sans-serif;    
  75.     color:#c0870b;    
  76.     margin-left: 200px;
  77.     text-align: left;
  78.     font-size: 20px;
  79.     font-weight: 300;
  80. }
  81.  
  82. .rodape{    
  83.     background: rgb(0,0,0);    
  84.     padding-left: 30px;
  85.     padding-top: 60px;
  86.     padding-bottom: 60px;
  87.     color: rgb(255, 255, 255);
  88.     font-family: 'Heebo', sans-serif;
  89.     font-weight: bold;
  90.     font-size: 17px;    
  91. }
  92.  
  93.  
  94. .pesquisa {
  95.         width: 70%;
  96.         float: right;
  97.         text-align: center;
  98.         }
  99.  
  100.  
  101.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement