Ir para o conteúdo

MediaWiki:Common.css: mudanças entre as edições

De Big2be
Criou página com '=== TEMA DARK MINIMALISTA BIG2BE ===: body { background-color: #000; color: #f2f2f2; font-family: 'Inter', sans-serif; } Links: a, a:visited { color: #ff6a00; text-decoration: none; } a:hover { color: #ffa94d; text-decoration: underline; } Cabeçalho: #mw-head, #p-personal, #mw-panel { background-color: #111; border: none; } Barra lateral: #mw-panel { background-color: #111; color: #f2f2f2; border-right: 1px solid #222; } #...'
(Sem diferença)

Edição das 09h14min de 22 de julho de 2025

/* === TEMA DARK MINIMALISTA BIG2BE === */

body {
  background-color: #000;
  color: #f2f2f2;
  font-family: 'Inter', sans-serif;
}

/* Links */
a, a:visited {
  color: #ff6a00;
  text-decoration: none;
}
a:hover {
  color: #ffa94d;
  text-decoration: underline;
}

/* Cabeçalho */
#mw-head, #p-personal, #mw-panel {
  background-color: #111;
  border: none;
}

/* Barra lateral */
#mw-panel {
  background-color: #111;
  color: #f2f2f2;
  border-right: 1px solid #222;
}
#mw-panel a {
  color: #f2f2f2;
}
#mw-panel a:hover {
  color: #ff6a00;
}

/* Conteúdo principal */
#content, #mw-content-text {
  background: none;
  padding: 20px;
}

/* Remover bordas e sombras */
#content {
  box-shadow: none;
  border: none;
}

/* Rodapé */
#footer {
  background-color: #111;
  color: #666;
}

/* Botões */
input[type="submit"],
input[type="button"],
button {
  background-color: #ff6a00;
  color: #000;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
}
input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  background-color: #ffa94d;
  cursor: pointer;
}

/* Títulos */
h1, h2, h3, h4 {
  color: #ff6a00;
  font-weight: 600;
}

/* Logo customizada */
#p-logo a {
  background-image: url(https://wiki.big2be.com/images/LOGO.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 60px;
}