MediaWiki:Common.css: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 1: | Linha 1: | ||
/** Estilo Simplificado | /** Estilo Simplificado inspirado no otPokemon **/ | ||
/* Fundo da página */ | /* Fundo da página */ | ||
| Linha 9: | Linha 9: | ||
width: 100%; | width: 100%; | ||
height: 100vh; | height: 100vh; | ||
background: url('https:// | background: url('https://images5.alphacoders.com/135/1351278.png') no-repeat center center; | ||
background-size: cover; | background-size: cover; | ||
opacity: 0. | opacity: 0.85; | ||
z-index: -1; | z-index: -1; | ||
} | } | ||
/* Fundo | /* Fundo do conteúdo principal */ | ||
.mw-body { | .mw-body { | ||
background: rgba(255, 255, 255, 0. | background: rgba(255, 255, 255, 0.95); | ||
border-radius: | border-radius: 10px; | ||
padding: 20px; | padding: 20px; | ||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0. | border: 5px solid transparent; | ||
border-image: url('https://wiki.otpokemon.com/images/2/2a/Border-red.png') 15 stretch; | |||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); | |||
} | |||
/* Cabeçalho */ | |||
#mw-head { | |||
background: linear-gradient(90deg, #d10a13 0%, #eb333b 46%, #ff1d27 100%); | |||
color: white; | |||
padding: 10px; | |||
border-radius: 10px; | |||
font-weight: bold; | |||
text-align: center; | |||
text-shadow: 1px 1px 2px black; | |||
} | } | ||
/* Menu lateral */ | /* Menu lateral */ | ||
#mw-panel { | #mw-panel { | ||
background: rgba(0, 0, 0, 0. | background: rgba(0, 0, 0, 0.8); | ||
color: white; | color: white; | ||
border-radius: | border-radius: 10px; | ||
padding: | padding: 15px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0. | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); | ||
} | } | ||
| Linha 36: | Linha 49: | ||
text-decoration: none; | text-decoration: none; | ||
font-weight: bold; | font-weight: bold; | ||
transition: color 0.3s ease; | |||
} | } | ||
#mw-panel a:hover { | #mw-panel a:hover { | ||
color: #FFD700; /* Dourado ao passar o mouse */ | color: #FFD700; /* Dourado ao passar o mouse */ | ||
} | } | ||
/* Rodapé */ | /* Rodapé */ | ||
.mw-footer { | .mw-footer { | ||
background: rgba(0, 0, 0, 0. | background: rgba(0, 0, 0, 0.8); | ||
color: white; | color: white; | ||
padding: 10px; | padding: 10px; | ||
border-radius: | border-radius: 10px; | ||
text-align: center; | text-align: center; | ||
font-size: 0.9em; | font-size: 0.9em; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); | |||
} | } | ||
/* Links */ | /* Links */ | ||
a { | a { | ||
color: # | color: #FF4500; /* Laranja */ | ||
text-decoration: none; | text-decoration: none; | ||
font-weight: bold; | font-weight: bold; | ||
transition: color 0.3s ease; | |||
} | } | ||
a:hover { | a:hover { | ||
color: # | color: #FFD700; /* Dourado ao passar o mouse */ | ||
} | |||
/* Botões */ | |||
button, .button { | |||
background: #d10a13; | |||
color: white; | |||
padding: 10px 20px; | |||
border: none; | |||
border-radius: 5px; | |||
cursor: pointer; | |||
font-size: 1em; | |||
transition: background 0.3s ease; | |||
} | |||
button:hover, .button:hover { | |||
background: #b50911; | |||
} | } | ||
| Linha 74: | Linha 98: | ||
table.wikitable { | table.wikitable { | ||
background: white; | background: white; | ||
border: | border: 3px solid #d10a13; | ||
border-radius: | border-radius: 10px; | ||
width: 100%; | width: 100%; | ||
text-align: center; | text-align: center; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0. | box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); | ||
} | } | ||
table.wikitable th { | table.wikitable th { | ||
background: # | background: #d10a13; | ||
color: white; | color: white; | ||
padding: 10px; | padding: 10px; | ||
| Linha 92: | Linha 116: | ||
} | } | ||
/* | /* Destaques */ | ||
.highlight { | |||
background: # | background: linear-gradient(90deg, #d10a13 0%, #ff1d27 100%); | ||
color: white; | color: white; | ||
font-weight: bold; | |||
padding: 10px; | |||
border-radius: 5px; | border-radius: 5px; | ||
text-shadow: 1px 1px 2px black; | |||
} | } | ||
| Linha 114: | Linha 133: | ||
#mw-panel { | #mw-panel { | ||
font-size: 0.9em; | |||
} | |||
table.wikitable th, table.wikitable td { | |||
font-size: 0.9em; | font-size: 0.9em; | ||
} | } | ||
} | } | ||
Edição das 20h51min de 1 de janeiro de 2025
/** Estilo Simplificado inspirado no otPokemon **/
/* Fundo da página */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: url('https://images5.alphacoders.com/135/1351278.png') no-repeat center center;
background-size: cover;
opacity: 0.85;
z-index: -1;
}
/* Fundo do conteúdo principal */
.mw-body {
background: rgba(255, 255, 255, 0.95);
border-radius: 10px;
padding: 20px;
border: 5px solid transparent;
border-image: url('https://wiki.otpokemon.com/images/2/2a/Border-red.png') 15 stretch;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
/* Cabeçalho */
#mw-head {
background: linear-gradient(90deg, #d10a13 0%, #eb333b 46%, #ff1d27 100%);
color: white;
padding: 10px;
border-radius: 10px;
font-weight: bold;
text-align: center;
text-shadow: 1px 1px 2px black;
}
/* Menu lateral */
#mw-panel {
background: rgba(0, 0, 0, 0.8);
color: white;
border-radius: 10px;
padding: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
#mw-panel a {
color: white;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
#mw-panel a:hover {
color: #FFD700; /* Dourado ao passar o mouse */
}
/* Rodapé */
.mw-footer {
background: rgba(0, 0, 0, 0.8);
color: white;
padding: 10px;
border-radius: 10px;
text-align: center;
font-size: 0.9em;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
/* Links */
a {
color: #FF4500; /* Laranja */
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}
a:hover {
color: #FFD700; /* Dourado ao passar o mouse */
}
/* Botões */
button, .button {
background: #d10a13;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 1em;
transition: background 0.3s ease;
}
button:hover, .button:hover {
background: #b50911;
}
/* Tabelas */
table.wikitable {
background: white;
border: 3px solid #d10a13;
border-radius: 10px;
width: 100%;
text-align: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
table.wikitable th {
background: #d10a13;
color: white;
padding: 10px;
}
table.wikitable td {
padding: 10px;
border: 1px solid #ddd;
}
/* Destaques */
.highlight {
background: linear-gradient(90deg, #d10a13 0%, #ff1d27 100%);
color: white;
font-weight: bold;
padding: 10px;
border-radius: 5px;
text-shadow: 1px 1px 2px black;
}
/* Responsividade */
@media (max-width: 768px) {
.mw-body {
padding: 10px;
}
#mw-panel {
font-size: 0.9em;
}
table.wikitable th, table.wikitable td {
font-size: 0.9em;
}
}