Mudanças entre as edições de "Widget:Gurren"

De Wiki Gla
Ir para navegação Ir para pesquisar
m
Linha 31: Linha 31:
       background-size: cover;
       background-size: cover;
       background-position: center;
       background-position: center;
       filter: blur(2px) brightness(0.8); /* blur reduzido */
       filter: blur(1px) brightness(0.8); /* blur reduzido para 1px */
       transform: scale(1.05);
       transform: scale(1.05);
       z-index: 0;
       z-index: 0;

Edição das 01h39min de 25 de abril de 2025

 <style>
   .wiki-social-wrapper .social-cards {
     display: grid;
     grid-template-columns: 1fr;
     gap: 0.25em;
   }
   @media screen and (max-width: 1024px) {
     .wiki-social-wrapper .social-cards {
       grid-template-columns: repeat(2, 1fr);
       gap: 0.5em;
     }
   }
   .wiki-social-wrapper .social-card {
     position: relative;
     height: 4em;
     border-radius: 0.75em;
     overflow: hidden;
     cursor: pointer;
     margin: 0;
   }
   /* Fundo ligeiramente borrado */
   .wiki-social-wrapper .social-card::before {
     content: "";
     position: absolute;
     inset: 0;
     background-image: var(--bg-url);
     background-size: cover;
     background-position: center;
     filter: blur(1px) brightness(0.8); /* blur reduzido para 1px */
     transform: scale(1.05);
     z-index: 0;
   }
   /* Overlay colorido */
   .wiki-social-wrapper .social-card::after {
     content: "";
     position: absolute;
     inset: 0;
     background-color: var(--overlay-color);
     opacity: 0.6;
     z-index: 1;
     transition: opacity 0.3s ease;
   }
   .wiki-social-wrapper .social-card:hover::after {
     opacity: 0.85;
   }
   /* Conteúdo acima */
   .wiki-social-wrapper .social-card-content {
     position: relative;
     z-index: 2;
     display: flex;
     align-items: center;
     padding: 0 1em;
     height: 100%;
     color: #fff;
     transition: filter 0.3s ease;
   }
   .wiki-social-wrapper .social-card:hover .social-card-content {
     filter: brightness(1.1);
   }
   .wiki-social-wrapper .social-icon {
     width: 2em;
     height: 2em;
     margin-right: 0.75em;
     flex-shrink: 0;
   }
   .wiki-social-wrapper .social-name {
     font-size: 1.25em;
     line-height: 1;
     font-weight: bold;
   }
   /* URLs e cores */
   .wiki-social-wrapper .social-card.discord {
     --bg-url: url('https://i.imgur.com/3ON2kVj.gif');
     --overlay-color: rgba(114,137,218,1);
   }
   .wiki-social-wrapper .social-card.tiktok {
     --bg-url: url('https://i.imgur.com/oY0Z4PMC.jpg');
     --overlay-color: rgba(0,0,0,1);
   }
   .wiki-social-wrapper .social-card.instagram {
     --bg-url: url('https://i.imgur.com/ZXQ7wq3.jpg');
     --overlay-color: rgba(193,53,132,1);
   }
   .wiki-social-wrapper .social-card.facebook {
     --bg-url: url('https://i.imgur.com/9bGkq7Y.jpg');
     --overlay-color: rgba(24,119,242,1);
   }
 </style>