Widget:Gurren2

De Wiki Gla
Revisão de 00h47min de 28 de abril de 2025 por Gurren1 (discussão | contribs)
Ir para navegação Ir para pesquisar

<style>

root {
   --bg: #121212 !important;
   --fg: #e0e0e0 !important;
   --accent: #66aaff !important;
   --panel-bg: rgba(24,24,24,0.9) !important;
   --panel-border: #333333 !important;
   --border: #444444 !important;
   --code-bg: #1e1e1e !important;
   --scrollbar-bg: #2a2a2a !important;
   --scrollbar-thumb: #555555 !important;

}

/* Global override */ html, body {

   background: var(--bg) !important;
   color: var(--fg) !important;
   transition: background 0.3s !important, color 0.3s !important;

}

/* Content area */

  1. content, .mw-body, .mw-body-content {
   background: var(--bg) !important;
   color: var(--fg) !important;
   border: none !important;
   box-shadow: none !important;

}

/* Sidebar */

  1. mw-panel {
   background: var(--panel-bg) !important;
   border-right: 1px solid var(--panel-border) !important;
   backdrop-filter: blur(12px) !important;
   -webkit-backdrop-filter: blur(12px) !important;

}

/* Header and navigation */

  1. mw-head, #mw-head-base, #p-navigation, #p-cactions, #p-search, #p-personal {
   background: var(--panel-bg) !important;
   border: 1px solid var(--panel-border) !important;
   backdrop-filter: blur(10px) !important;
   -webkit-backdrop-filter: blur(10px) !important;

}

/* Footer */

  1. mw-footer {
   background: var(--panel-bg) !important;
   border-top: 1px solid var(--panel-border) !important;
   backdrop-filter: blur(10px) !important;
   -webkit-backdrop-filter: blur(10px) !important;

}

/* Links */ a, a:visited {

   color: var(--accent) !important;
   text-decoration: none !important;

} a:hover, a:focus {

   color: #99cfff !important;
   text-decoration: underline !important;
   opacity: 0.9 !important;

}

/* Headings */ .firstHeading, .mw-body-content h2 {

   border-bottom: 1px solid var(--border) !important;
   padding-bottom: 0.3em !important;
   margin-bottom: 0.6em !important;

}

/* Tables and infoboxes */ table, .wikitable, .infobox {

   background: #1f1f1f !important;
   color: var(--fg) !important;
   border: 1px solid var(--border) !important;

} table th, .wikitable th {

   background: #2a2a2a !important;

}

/* Code blocks */ pre, code {

   background: var(--code-bg) !important;
   color: #c0c0c0 !important;
   border-radius: 4px !important;
   padding: 2px 4px !important;

}

/* Forms */ input, textarea, select, #searchInput {

   background: #1f1f1f !important;
   color: var(--fg) !important;
   border: 1px solid var(--border) !important;
   border-radius: 4px !important;

}

/* Blockquotes */ blockquote {

   border-left: 3px solid var(--accent) !important;
   background: #181818 !important;
   padding: 0.5em 1em !important;

}

/* Scrollbar */

-webkit-scrollbar {
   width: 8px !important;
   height: 8px !important;
   background: var(--scrollbar-bg) !important;

}

-webkit-scrollbar-thumb {
   background: var(--scrollbar-thumb) !important;
   border-radius: 4px !important;

}

-webkit-scrollbar-thumb:hover {
   background: #777 !important;

} </style>