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

De Wiki Gla
Ir para navegação Ir para pesquisar
(Criou página com '<style> →‎Dark background and text: body, .mw-body, #content { background-color: #1e1e1e !important; color: #e5e5e5 !important; } /* Sidebar blur and dark backgrou...')
 
Linha 1: Linha 1:
<!-- Widget: Essential Dark Theme -->
<style>
<style>
/* Dark background and text */
:root {
  --content-bg: #121212;
  --content-text: #e0e0e0;
  --link-text: #66aaff;
}
 
/* Main background and text */
body, .mw-body, #content {
body, .mw-body, #content {
    background-color: #1e1e1e !important;
  background-color: var(--content-bg) !important;
    color: #e5e5e5 !important;
  color: var(--content-text) !important;
}
}


/* Sidebar blur and dark background */
/* Sidebar blur */
#mw-panel {
#mw-panel {
    background-color: rgba(30,30,30,0.7) !important;
  background: rgba(18,18,18,0.8) !important;
    backdrop-filter: blur(10px);
  backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(10px);
}
}


/* Header and footer panels */
/* Link color */
#mw-head, #mw-footer {
a, a:visited {
    background-color: rgba(20,20,20,0.8) !important;
  color: var(--link-text) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
}


/* Link colors */
a, a:visited {
    color: #78c0ff !important;
}
a:hover {
a:hover {
    color: #a0dfff !important;
  opacity: 0.8;
}
 
/* Tables, infoboxes and code blocks */
.mw-parser-output table, .wikitable, .infobox {
    background-color: #2a2a2a !important;
    color: #e5e5e5 !important;
    border-color: #444 !important;
}
 
.wikitable th, table th {
    background-color: #353535 !important;
}
 
code, pre {
    background-color: #2a2a2a !important;
    color: #c5c8c6 !important;
}
 
/* Form elements */
input, textarea, select {
    background-color: #2a2a2a !important;
    color: #e5e5e5 !important;
    border: 1px solid #444 !important;
}
 
/* Slightly dim images */
body img {
    filter: brightness(0.9) !important;
}
}
</style>
</style>

Edição das 00h43min de 28 de abril de 2025

<style>

root {
 --content-bg: #121212;
 --content-text: #e0e0e0;
 --link-text: #66aaff;

}

/* Main background and text */ body, .mw-body, #content {

 background-color: var(--content-bg) !important;
 color: var(--content-text) !important;

}

/* Sidebar blur */

  1. mw-panel {
 background: rgba(18,18,18,0.8) !important;
 backdrop-filter: blur(8px) !important;

}

/* Link color */ a, a:visited {

 color: var(--link-text) !important;

}

a:hover {

 opacity: 0.8;

} </style>