Ir para o conteúdo

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

De Big2be
Sem resumo de edição
Sem resumo de edição
Linha 1: Linha 1:
/* ========================
/* ===== Fonts Futuristas ===== */
  Fonte personalizada
======================== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Inter:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Inter:wght@400;500&display=swap');


/* ========================
/* ===== Reset e base ===== */
  Reset & Base
======================== */
* {
* {
   margin: 0;
   margin: 0;
Linha 15: Linha 11:
body {
body {
   font-family: 'Inter', sans-serif;
   font-family: 'Inter', sans-serif;
   background-color: #0f0f0f;
   background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 100%);
   color: #f0f0f0;
   color: #f2f2f2;
  line-height: 1.6;
   padding: 0;
   padding: 0;
  overflow-x: hidden;
}
}


Linha 24: Linha 20:
   color: #ff992f;
   color: #ff992f;
   text-decoration: none;
   text-decoration: none;
   transition: 0.3s;
   transition: 0.2s;
  font-weight: 500;
}
}
a:hover {
a:hover {
   color: #ffa94d;
   color: #ffaa4d;
   text-shadow: 0 0 5px #ff992f;
   text-shadow: 0 0 8px #ff992f;
}
 
/* ===== Remove barras laterais ===== */
#mw-panel,
#p-personal,
#mw-head-base,
#mw-head,
#catlinks,
.mw-editsection {
  display: none !important;
}
 
/* ===== Container de conteúdo ===== */
#content,
#mw-content-text {
  margin: 60px auto;
  max-width: 1200px;
  padding: 40px;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 153, 47, 0.15);
  border: 1px solid #2a2a2a;
  backdrop-filter: blur(4px);
}
 
/* ===== Cabeçalho principal ===== */
.firstHeading {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 30px;
  color: #ff992f;
  text-shadow: 0 0 10px #ff992f;
}
}


/* ========================
/* ===== Logo no topo ===== */
  Cabeçalho e logo
======================== */
#p-logo {
#p-logo {
   display: flex;
   display: flex;
Linha 41: Linha 69:
}
}
#p-logo a {
#p-logo a {
   background-image: url("/images/logo.png"); /* ou /wiki/skins/common/images/logo.png */
   background-image: url("/images/logo.png");
   background-size: contain;
   background-size: contain;
   background-repeat: no-repeat;
   background-repeat: no-repeat;
   width: 220px;
   width: 240px;
   height: 100px;
   height: 100px;
   display: block;
   display: block;
Linha 50: Linha 78:
}
}


/* ========================
/* ===== Títulos (glow) ===== */
  Layout full screen
======================== */
#mw-panel,
#p-personal,
#mw-head-base,
#mw-head {
  display: none !important;
}
 
#content,
#mw-content-text {
  margin: 0 auto;
  max-width: 1200px;
  padding: 40px 20px;
  background: #151515;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 153, 47, 0.1);
}
 
/* ========================
  Headings
======================== */
h1, h2, h3, h4, h5 {
h1, h2, h3, h4, h5 {
   font-family: 'Orbitron', sans-serif;
   font-family: 'Orbitron', sans-serif;
   color: #ff992f;
   color: #ff992f;
   margin-top: 30px;
   margin: 40px 0 15px;
  margin-bottom: 10px;
   text-transform: uppercase;
   text-transform: uppercase;
  text-shadow: 0 0 8px #ff992f99;
}
}


/* ========================
/* ===== Formulários e inputs ===== */
  Botões e formulários
input, select, textarea {
======================== */
   background-color: #1a1a1a;
input, select, textarea, button {
   background-color: #1e1e1e;
   color: #fff;
   color: #fff;
   border: 1px solid #444;
   border: 1px solid #444;
   padding: 8px 12px;
   padding: 10px;
   border-radius: 6px;
   border-radius: 8px;
   font-family: 'Inter', sans-serif;
   font-family: 'Inter', sans-serif;
}
}
input:focus, textarea:focus {
input:focus, textarea:focus {
  border-color: #ff992f;
  box-shadow: 0 0 10px #ff992f99;
   outline: none;
   outline: none;
  border-color: #ff992f;
  box-shadow: 0 0 8px #ff992f55;
}
}


/* ===== Botões ===== */
button, .mw-ui-button {
button, .mw-ui-button {
   background-color: #ff992f;
   background-color: #ff992f;
   color: #000;
   color: #111;
  font-weight: bold;
   border: none;
   border: none;
  padding: 10px 20px;
  border-radius: 8px;
   cursor: pointer;
   cursor: pointer;
  font-weight: bold;
   transition: 0.3s;
   transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
}
button:hover, .mw-ui-button:hover {
button:hover, .mw-ui-button:hover {
   background-color: #ffa94d;
   background-color: #ffaa4d;
  box-shadow: 0 0 12px #ff992f99;
}
}


/* ========================
/* ===== Rodapé minimalista ===== */
  Rodapé
======================== */
#footer {
#footer {
   text-align: center;
   text-align: center;
Linha 120: Linha 128:
}
}


/* ========================
/* ===== Tabelas estilosas ===== */
  Tabelas
======================== */
table {
table {
   width: 100%;
   width: 100%;
   border-collapse: collapse;
   border-collapse: collapse;
   background-color: #1c1c1c;
   background-color: #1b1b1b;
  border: 1px solid #333;
}
}
th, td {
th, td {
   border: 1px solid #333;
   border: 1px solid #444;
   padding: 10px;
   padding: 12px;
  color: #eee;
}
}
th {
th {
   background-color: #252525;
   background-color: #262626;
   color: #ff992f;
   color: #ff992f;
  text-shadow: 0 0 5px #ff992f55;
}
}


/* ========================
/* ===== Destaques visuais especiais ===== */
  Outras melhorias visuais
code, pre {
======================== */
  background-color: #111;
#mw-page-base, #mw-navigation, #catlinks, .mw-editsection {
  color: #ffb36b;
   display: none;
  padding: 8px;
  border-radius: 4px;
  font-family: monospace;
   display: block;
  margin: 15px 0;
}
}


.firstHeading {
/* ===== Scrollbar custom ===== */
   text-align: center;
::-webkit-scrollbar {
   font-size: 2.5em;
   width: 10px;
   margin-bottom: 20px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #ff992f;
   border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
   background: #ffaa4d;
}
}

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

/* ===== Fonts Futuristas ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&family=Inter:wght@400;500&display=swap');

/* ===== Reset e base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #f2f2f2;
  padding: 0;
  overflow-x: hidden;
}

a {
  color: #ff992f;
  text-decoration: none;
  transition: 0.2s;
  font-weight: 500;
}
a:hover {
  color: #ffaa4d;
  text-shadow: 0 0 8px #ff992f;
}

/* ===== Remove barras laterais ===== */
#mw-panel,
#p-personal,
#mw-head-base,
#mw-head,
#catlinks,
.mw-editsection {
  display: none !important;
}

/* ===== Container de conteúdo ===== */
#content,
#mw-content-text {
  margin: 60px auto;
  max-width: 1200px;
  padding: 40px;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 153, 47, 0.15);
  border: 1px solid #2a2a2a;
  backdrop-filter: blur(4px);
}

/* ===== Cabeçalho principal ===== */
.firstHeading {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 30px;
  color: #ff992f;
  text-shadow: 0 0 10px #ff992f;
}

/* ===== Logo no topo ===== */
#p-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
#p-logo a {
  background-image: url("/images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 240px;
  height: 100px;
  display: block;
  text-indent: -9999px;
}

/* ===== Títulos (glow) ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Orbitron', sans-serif;
  color: #ff992f;
  margin: 40px 0 15px;
  text-transform: uppercase;
  text-shadow: 0 0 8px #ff992f99;
}

/* ===== Formulários e inputs ===== */
input, select, textarea {
  background-color: #1a1a1a;
  color: #fff;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
}
input:focus, textarea:focus {
  border-color: #ff992f;
  box-shadow: 0 0 10px #ff992f99;
  outline: none;
}

/* ===== Botões ===== */
button, .mw-ui-button {
  background-color: #ff992f;
  color: #111;
  font-weight: bold;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
button:hover, .mw-ui-button:hover {
  background-color: #ffaa4d;
  box-shadow: 0 0 12px #ff992f99;
}

/* ===== Rodapé minimalista ===== */
#footer {
  text-align: center;
  color: #888;
  padding: 40px 0 20px;
  font-size: 14px;
}

/* ===== Tabelas estilosas ===== */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1b1b1b;
  border: 1px solid #333;
}
th, td {
  border: 1px solid #444;
  padding: 12px;
  color: #eee;
}
th {
  background-color: #262626;
  color: #ff992f;
  text-shadow: 0 0 5px #ff992f55;
}

/* ===== Destaques visuais especiais ===== */
code, pre {
  background-color: #111;
  color: #ffb36b;
  padding: 8px;
  border-radius: 4px;
  font-family: monospace;
  display: block;
  margin: 15px 0;
}

/* ===== Scrollbar custom ===== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #ff992f;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffaa4d;
}