Mudanças entre as edições de "MediaWiki:Common.css"

De Doctor View Wiki
Ir para: navegação, pesquisa
Linha 26: Linha 26:
 
         color: #002244;
 
         color: #002244;
 
         font-family: 'Poppins', sans-serif;
 
         font-family: 'Poppins', sans-serif;
 +
        font-size: 24px;
 
        
 
        
 
}
 
}

Edição das 13h00min de 10 de setembro de 2025

/** o código CSS colocado aqui será aplicado a todos os temas */


.pais{ 
    display: grid;
    grid-row-gap: 1px;
    grid-column-gap: 1px;
    grid-template-columns: repeat(2);
    grid-template-rows: repeat(5);
    align-items: center;
    background: #f9f9f9;
    
    
}

.cabecalho {
        display: grid;
        text-align: center;
        color: #002244;
         font-family: 'Poppins', sans-serif;
         
       
}

.cabecalho h1 {
         color: #002244;
         font-family: 'Poppins', sans-serif;
         font-size: 24px;
       
}
.cabecalho p {
         color: #002244;
         font-family: 'Poppins', sans-serif;
         font-size: 12px;       
}


.banner {
        grid-template-columns: repeat(2);
        grid-template-rows: repeat(2);
        display: grid;
        
       
}

.descrCard1 {
           
           
           grid-area: 1 / 1 / 2/ 2;
           display: grid;
        
      
}
.descrCard2 {
          
           grid-area: 1 / 2 /2/ 3;
           display: grid;

        
      
}


.card1 {
       padding: 1em 2em 2em 11em;
        grid-area: 2 / 1 / 3/ 2;
        display: grid;

        
      
}
.card2 {
        padding: 1em 2em 2em 0em;
        grid-area: 2 / 2 / 3 /3;
        display: grid;

        
        
       
}

.guess{
        grid-area: 4 / 1 / 5 /3;
        display: grid;
        grid-template-columns: repeat(2);
        grid-template-rows: repeat(3);
        grid-row-gap: 5px;
        grid-column-gap: 5px;

       
}
.guesschild{
        grid-area: 1 / 1 / 2 /4;
        display: grid;

       
}
.guesschild1{
        grid-area: 2 / 1 / 3 /2;
        border: solid 1px rgb(148, 149, 151);
        display: grid;
        border-radius: 10px;
       
}
.guesschild2{
        grid-area: 2 / 2 / 3 /3;
        border: solid 1px rgb(148, 149, 151); 
        display: grid;
        border-radius: 10px;

       
}
.guesschild3{
        grid-area: 2 / 3 / 3 /4;
        border: solid 1px rgb(148, 149, 151);
        display: grid;
        border-radius: 10px;
      
       
}


.imagem-zoom{
  height: auto; 
  transition: transform 0.3s ease-in-out;

}


.imagem-zoom:hover {
  transform: scale(1.1);
}

.divisoria {
  border-top: 1px solid #ddd;
  width: 100%; 
  margin: 20px 0; 
}


.linha-embaixo {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px; 
}

.thumbcaption {
    display: none !important;
}